:root {
    --primary-color: #7C4DFF;
    --primary-dark: #5E35B1;
    --primary-light: #B388FF;
    --secondary-color: #FF7043;
    --bg-color: #F8F9FE;
    --text-color: #2D1B69;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Fluid Typography */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(124, 77, 255, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 77, 255, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Glassmorphism Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

/* Mobile Menu Button - Fixed display */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.4) !important;
        /* High transparency for clear glass effect */
        backdrop-filter: blur(30px) saturate(200%) !important;
        /* Stronger blur and saturation */
        -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 999;
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    /* Staggered Menu Item Animations */
    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(-20px);
        transition: 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        display: block;
        padding: 20px;
        font-size: 1.25rem;
        font-weight: 600;
        width: 100%;
    }

    /* Burger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .header-actions {
        display: none;
        /* Hide trial button on mobile to simplify header */
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: radial-gradient(circle at top right, #E0E7FF 0%, transparent 40%),
        radial-gradient(circle at bottom left, #F5F3FF 0%, transparent 40%);
}

.badge {
    background: #EDE9FE;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    max-width: 900px;
    margin: 0 auto 24px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-btns {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-mockup {
    margin-top: 60px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s both;
}

.hero-mockup img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Features Grid */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #F5F3FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Detailed Split Sections */
.split-section {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.checklist {
    margin-top: 32px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.checklist-icon {
    color: #10B981;
}

/* Comparison Section Improvements */
.comparison {
    padding: 120px 0;
    background: #FFFFFF;
}

.comparison-card {
    background: var(--white);
    border-radius: 32px;
    border: 1px solid #F3F4F6;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 50px 40px;
    background: #FAFBFF;
    border-bottom: 2px solid #F3F4F6;
}

.comparison-header-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.comparison-header-col i {
    opacity: 0.5;
}

.comparison-header-col h4 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid #F9FAFB;
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: #FAFAFA;
}

.comparison-cell {
    padding: 32px 40px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5;
}

.comparison-cell.feature-name {
    font-weight: 700;
    color: var(--text-color);
    gap: 16px;
}

.comparison-cell.feature-name i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.comparison-cell.competitor {
    color: #9CA3AF;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #F3F4F6;
}

.comparison-cell.bi-voo-col {
    background: rgba(79, 70, 229, 0.02);
    color: var(--primary-dark);
    font-weight: 600;
    justify-content: center;
    text-align: center;
}

.comparison-cell i.icon-x {
    font-size: 1.2rem;
    margin-right: 8px;
}

.comparison-cell i.icon-check {
    font-size: 1.4rem;
    margin-right: 8px;
}

.comparison-footer {
    padding: 40px;
    display: flex;
    justify-content: center;
    background: #FFFFFF;
    border-top: 2px solid #F3F4F6;
}

@media (max-width: 1024px) {

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .comparison-cell {
        padding: 24px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparison-card {
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header-col {
        padding: 30px;
        border-bottom: 1px solid #F3F4F6;
    }

    .comparison-cell {
        padding: 20px 30px;
        justify-content: flex-start !important;
    }

    .comparison-cell.competitor,
    .comparison-cell.bi-voo-col {
        border-right: none;
        padding-left: 50px;
    }

    .comparison-cell.bi-voo-col {
        background: #F8FAFF;
        border-bottom: 2px solid #F3F4F6;
    }
}

/* Core Features Grid Section */
.core-features {
    padding: 100px 0;
    background: #FFFFFF;
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
}

.core-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #4F46E5;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.core-feature-item:hover .feature-icon-wrapper {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.core-feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.core-feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .core-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .core-features-grid {
        grid-template-columns: 1fr;
    }
}

/* New Dark CTA Redesign */
.cta-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.cta-card {
    background: #111111;
    border-radius: 32px;
    padding: 80px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-header {
    flex: 1;
}

.cta-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 32px;
}

.cta-benefits {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .cta-card {
        flex-direction: column;
        padding: 60px 40px;
        gap: 60px;
        text-align: center;
    }

    .cta-benefits {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-item {
        justify-content: center;
    }
}

/* Academic Features Carousel */
.carousel-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
}

.carousel-section::before,
.carousel-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-section::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-section::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.carousel-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: scroll 50s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-section .feature-card {
    width: 380px;
    flex-shrink: 0;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #F3F4F6;
    transition: var(--transition);
}

.carousel-section .feature-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 16px));
        /* Half of the cards + half of the gap */
    }
}

@media (max-width: 768px) {
    .carousel-section .feature-card {
        width: 320px;
        padding: 30px;
    }

    .carousel-section::before,
    .carousel-section::after {
        width: 100px;
    }
}

/* Footer Improvements */
footer {
    padding: 80px 0 40px;
    background: var(--bg-color);
    border-top: 1px solid #E5E7EB;
}

/* Sales Generation Section */
.sales-value {
    padding: 120px 0;
    text-align: center;
    background: #FFFFFF;
}

.sales-badge {
    background: #EEF2FF;
    color: #4F46E5;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.sales-value h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 24px;
}

.sales-value h2 span {
    color: var(--text-muted);
}

.sales-value p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Pain Points Section */
.pain-points {
    padding: 100px 0;
    background: #FAFAFA;
}

.pain-points h2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 16px;
}

.pain-points h2 span {
    color: var(--text-muted);
    font-weight: 400;
}

.pain-points .section-header p {
    margin-bottom: 48px;
}

.bubbles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.bubble-tag {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4B5563;
    transition: var(--transition);
    cursor: default;
}

.bubble-tag i {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.bubble-tag:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

/* Academic Process Section */
.process-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    position: relative;
    padding: 40px;
    background: #F9FAFB;
    border-radius: 32px;
    border: 1px solid #F3F4F6;
    transition: var(--transition);
}

.process-step:hover {
    background: #FFFFFF;
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.2);
}

.process-step h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .process-grid::before {
        content: "";
        position: absolute;
        top: 65px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: repeating-linear-gradient(to right, #E5E7EB, #E5E7EB 10px, transparent 10px, transparent 20px);
        z-index: 0;
    }
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    text-align: center;
    background: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
}

.trusted-by p {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

.logos-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 60px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition);
}

.logos-flex:hover {
    opacity: 1;
    filter: grayscale(0);
}

.logos-flex img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #FFFFFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid #E5E7EB;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    padding-top: 0;
    /* Remove top padding to let badge touch the edge */
}

.card-badge {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: -48px;
    /* Offset parent padding */
    margin-right: -48px;
    margin-bottom: 24px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 24px 0;
}

.price.price-text {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    margin: 32px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-highlight-feature {
    background: rgba(124, 77, 255, 0.08);
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 8px 0;
    justify-content: center;
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #F9FAFB;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    background: #F3F4F6;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer — Minimalist */
footer {
    padding: 56px 0 32px;
    background: var(--white);
    border-top: 1px solid #F3F4F6;
}

.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav-links a:hover {
    color: var(--text-color);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: color 0.2s;
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    color: var(--text-color);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9CA3AF;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: var(--text-color);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .split-section {
        flex-direction: column !important;
        text-align: center;
    }

    .checklist-item {
        justify-content: center;
    }
}

/* Payment Software Section Styles */
.payment-software {
    padding: 100px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.payment-software .text-blue {
    color: #2563EB;
}

/* Tabs Styling */
.tabs-container {
    margin-top: 50px;
}

.tabs-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    background: #F9FAFB;
    padding: 8px;
    border-radius: 100px;
    width: fit-content;
    margin-inline: auto;
    border: 1px solid #F3F4F6;
}

.tab-btn {
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: #6B7280;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tab-btn i {
    width: 18px;
    height: 18px;
}

.tab-btn.active {
    background: var(--white);
    color: #2563EB;
    box-shadow: var(--shadow-sm);
    border: 1px solid #F3F4F6;
}

.tab-btn:hover:not(.active) {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.02);
}

/* Tab Content & Grid */
.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-grid {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 24px;
    align-items: center;
    perspective: 1000px;
}

/* Payment Cards */
.payment-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.payment-card.main-card {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: var(--white);
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    z-index: 2;
    transform: scale(1.05);
}

.payment-card.main-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.payment-card.side-card {
    opacity: 0.6;
    filter: blur(1px);
    transform: scale(0.9);
}

.payment-card.side-card.left {
    transform: translateX(40px) scale(0.9);
}

.payment-card.side-card.right {
    transform: translateX(-40px) scale(0.9);
}

.payment-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 12px;
}

.payment-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 30px;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
}

.main-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.card-icon i {
    width: 32px;
    height: 32px;
}

/* Card Footers */
.card-footer,
.card-footer-flex {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.main-card .card-footer,
.main-card .card-footer-flex {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.card-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.user-count i {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.user-count span strong {
    font-weight: 800;
}

.card-actions {
    display: flex;
    gap: 12px;
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.main-card .icon-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.icon-btn:hover {
    background: #F9FAFB;
}

.main-card .icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-blue {
    background: var(--white);
    color: #2563EB;
}

.main-card .btn-blue {
    background: var(--white);
    color: #2563EB;
}

/* Responsiveness for Payment Section */
@media (max-width: 1024px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .payment-card.main-card {
        transform: scale(1);
    }

    .payment-card.side-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .tabs-list {
        flex-direction: column;
        border-radius: 20px;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }
}