/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #be58da;
    --background-color: #121212;
    --card-background: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --border-color: rgba(190, 88, 218, 0.3);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

/* Add these new styles after the Typography section */
.highlighted {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline;
}

.highlighted::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30%;
    background: rgba(190, 88, 218, 0.15);
    z-index: -1;
    transition: height 0.3s ease;
}

.highlighted:hover::before {
    height: 100%;
}

.underlined {
    position: relative;
    display: inline;
}

.underlined::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

/* Header Section */
.header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.login-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(190, 88, 218, 0.15) 0%, rgba(18, 18, 18, 0) 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.hero-description {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.4s;
    font-size: 1.3rem;
    line-height: 1.7;
}

.hero-description .highlighted {
    font-size: 1.4rem;
}

.hero-description2 {
    margin-bottom: 2rem;
}

/* Hero Characters */
.hero-characters {
    position: relative;
    margin-top: 4rem;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.8s;
}

.hero-characters img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(190, 88, 218, 0.2));
    transform: scale(1.1);
    position: relative;
    z-index: 1;
}

/* Price Tag Styles Update */
.price-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(190, 88, 218, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    border: 1px solid rgba(190, 88, 218, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.price-original {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1.25rem;
    margin-right: 1rem;
    opacity: 0.7;
}

.price-current {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-right: 1rem;
    letter-spacing: -0.5px;
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: var(--primary-color);
    opacity: 0.3;
}

/* Button Styles Update */
.btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(190, 88, 218, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
}

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

.btn .btn-price {
    margin-left: 1rem;
    padding-left: 1rem;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.btn .btn-price::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: currentColor;
    opacity: 0.3;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 8rem 0 4rem;
    }
}

/* AI Specialists Section */
.specialists {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.specialists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.specialist-card {
    background: var(--card-background);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.specialist-card:hover::before {
    opacity: 1;
}

.specialist-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.specialist-image-wrapper {
    width: 120px;
    flex-shrink: 0;
}

.specialist-image {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.specialist-card:hover .specialist-image {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.specialist-info {
    flex: 1;
    min-width: 0;
}

.specialist-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.specialist-role {
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
}

.specialist-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 1rem 0;
    line-height: 1.6;
}

.specialist-tasks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.task-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.task-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.task-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.task-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 400px;
}

.show-more-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.show-more-btn i {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

.show-more-btn .count {
    opacity: 0.7;
    font-weight: 500;
}

/* Pro Plan Label */
.pro-plan-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #be58da 0%, #a347bf 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(190, 88, 218, 0.3);
}

/* What is Speare.ai Section */
.what-is-speare {
    padding: 4rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.05) 50%,
        var(--background-color) 100%
    );
    position: relative;
    overflow: hidden;
}

.what-is-speare::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gradient-text {
    color: var(--text-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Only apply gradient to pricing section heading */
.plans-cta .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    width: 100%;
}

.lead-text {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.7;
}

.lead-text .highlighted {
    font-size: 1.7rem;
}

.highlight-box {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(190, 88, 218, 0.1) 0%, 
        rgba(190, 88, 218, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-box:hover::before {
    opacity: 1;
}

.highlight-box h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.highlight-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .what-is-speare {
        padding: 2rem 0;
    }

    .gradient-text {
        font-size: 2.5rem;
    }

    .lead-text {
        font-size: 1.25rem;
    }

    .highlight-box {
        padding: 2rem;
    }

    .highlight-box h3 {
        font-size: 1.75rem;
    }
}

/* How It Works Section Styles */
.how-it-works {
    padding: 8rem 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.how-it-works .content-wrapper {
    max-width: 1400px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Only show lines between cards on desktop */
    .step-card:nth-child(1)::after,
    .step-card:nth-child(2)::after {
        content: '';
        position: absolute;
        top: 2.25rem;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), transparent);
        z-index: 2;
    }
}

/* Remove any existing step-card::after rules outside of media query */
.step-card::after {
    display: none;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(190, 88, 218, 0.1) 0%, 
        rgba(190, 88, 218, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(190, 88, 218, 0.2);
}

.step-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    max-width: 100%;
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 6rem 0;
    }

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

    .step-card {
        padding: 1.5rem;
    }
}

/* Testimonials Section Styles */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.03) 50%,
        var(--background-color) 100%
    );
    position: relative;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(190, 88, 218, 0.1) 0%, 
        rgba(190, 88, 218, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-avatar .avatar-image,
.testimonial-image .testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta {
    flex: 1;
}

.testimonial-meta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.meta-detail {
    font-size: 1rem;
    color: var(--text-secondary);
    display: block;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.result-highlight {
    background: rgba(190, 88, 218, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-footer {
    text-align: center;
    margin-top: 4rem;
}

.success-note {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .highlight-number {
        font-size: 2rem;
    }
}

/* Journey Section Styles */
.journey {
    padding: 4rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.03) 50%,
        var(--background-color) 100%
    );
    position: relative;
}

.letter-content {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.letter-header {
    margin-bottom: 2rem;
}

.letter-intro {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.letter-from {
    color: var(--primary-color);
    font-weight: 500;
}

.highlight-question {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.skeptical {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.proof-box {
    background: rgba(190, 88, 218, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.proof-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.proof-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .journey {
        padding: 2rem 0;
    }

    .letter-content {
        padding: 2rem;
    }

    .highlight-question {
        font-size: 1.2rem;
    }

    .skeptical {
        font-size: 1.5rem;
    }

    .proof-text {
        font-size: 1.1rem;
    }
}

/* Revolutionary Features Section Styles */
.revolutionary {
    padding: 4rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.03) 50%,
        var(--background-color) 100%
    );
    position: relative;
}

.features-grid, .anti-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card, .anti-feature-card {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover, .anti-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon, .anti-feature-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-card p, .anti-feature-card p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.anti-features {
    margin-top: 6rem;
}

.anti-features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-statement {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(190, 88, 218, 0.08);
    border-radius: 24px;
}

.highlight-statement p {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-statement h3 {
    font-size: 2rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .revolutionary {
        padding: 2rem 0;
    }

    .feature-card, .anti-feature-card {
        padding: 1.5rem;
    }

    .anti-features h3 {
        font-size: 1.5rem;
    }

    .highlight-statement {
        padding: 2rem;
    }

    .highlight-statement h3 {
        font-size: 1.5rem;
    }
}

/* Team Management Section Styles */
.team-management {
    padding: 4rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.03) 50%,
        var(--background-color) 100%
    );
    position: relative;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

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

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.problem-card {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.problem-icon {
    font-size: 2rem;
    line-height: 1;
}

.problem-card p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
    color: var(--text-primary);
}

.cycle-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

@media (min-width: 769px) {
    .cycle-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cycle-steps-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 66%;
        margin: 0 auto;
    }
}

.cycle-step {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cycle-step:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cycle-step .step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
}

.cycle-step p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .cycle-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cycle-steps-left,
    .cycle-steps-right {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.discovery-statement {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(190, 88, 218, 0.08);
    border-radius: 24px;
}

.discovery-statement p {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.discovery-statement h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 768px) {
    .team-management {
        padding: 2rem 0;
    }

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

    .cycle-steps {
        flex-direction: column;
        align-items: center;
    }

    .cycle-step {
        width: 100%;
        max-width: none;
    }

    .discovery-statement {
        padding: 2rem;
    }

    .discovery-statement h3 {
        font-size: 1.5rem;
    }
}

/* AI Workforce Section Styles */
.ai-workforce {
    padding: 8rem 0;
    position: relative;
}

.ai-workforce::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.specialists-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.specialist-item {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialist-item:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.specialist-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.specialist-info {
    flex: 1;
}

.specialist-info h4 {
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
    color: var(--text-primary);
}

.specialist-info p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-secondary);
}

.pro-only {
    position: relative;
    border-color: var(--primary-color);
}

.pro-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(190, 88, 218, 0.3);
}

/* Solution Intro Section */
.solution-intro {
    padding: 8rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 0;
}

.solution-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.solution-intro h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.solution-intro .subtitle {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.solution-intro .description {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.solution-intro .highlight {
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

/* Plans CTA Section */
.plans-cta {
    padding: 8rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.plans-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.plans-cta .gradient-text {
    color: var(--text-primary);
    font-size: 2.5rem;
    width: 100%;
    margin-bottom: 1rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 2rem;
    padding: 0.5rem;
    background: rgba(190, 88, 218, 0.05);
    border-radius: 100px;
    border: 1px solid rgba(190, 88, 218, 0.1);
    width: fit-content;
    min-width: 500px; /* Increased from 300px */
}

.toggle-btn {
    padding: 0.75rem 2.5rem; /* Increased horizontal padding */
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    position: relative;
    min-width: 150px; /* Added minimum width */
}

.toggle-btn:hover {
    color: var(--text-primary);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    color: white;
}

.toggle-btn[data-period="yearly"]::after,
.toggle-btn[data-period="lifetime"]::after {
    content: attr(data-savings);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    background: rgba(190, 88, 218, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(190, 88, 218, 0.2);
}

.toggle-btn[data-period="yearly"]::after {
    content: "Save 17%";
}

.toggle-btn[data-period="lifetime"]::after {
    content: "Save 90%";
}

.plan-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .plan-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Plan Card Styles Update */
.plan-card {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative; /* Added for absolute positioning of the tag */
}

/* Most Popular Tag */
.most-popular-tag {
    position: absolute;
    top: -15px;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(190, 88, 218, 0.3);
    z-index: 2;
}

.most-popular-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(190, 88, 218, 0.4);
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.plan-card .btn {
    margin-top: auto;
    align-self: center;
    white-space: nowrap;
}

.plan-card .btn .plan-period {
    margin: 0 0.25rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 1.25rem;
    opacity: 0.7;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
}

.feature-item span:last-child {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.feature-item.disabled {
    opacity: 0.7;
}

.guarantee-box {
    background: rgba(190, 88, 218, 0.04);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 4rem;
}

.guarantee-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.guarantee-content {
    flex: 1;
}

.guarantee-content h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guarantee-item {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.guarantee-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.guarantee-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.guarantee-footer {
    margin-top: 2rem !important;
    font-size: 1.2rem !important;
    color: var(--text-primary) !important;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .guarantee-content h3 {
        font-size: 1.5rem;
    }

    .guarantee-list {
        gap: 1rem;
    }

    .guarantee-item {
        text-align: left;
    }
}

/* Make sure highlighted text in headings is visible */
h2 .highlighted, h3 .highlighted {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

/* Limited Time Offer Section */
.limited-time {
    padding: 8rem 0;
    position: relative;
}

.limited-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.countdown-box {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timer-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timer-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Reiteration Section */
.cta-reiteration {
    padding: 4rem 0;
    text-align: center;
}

/* Visual Testimonials Section */
.visual-testimonials {
    padding: 4rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.03) 50%,
        var(--background-color) 100%
    );
}

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

.testimonial-slide {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }

    .timer-value {
        font-size: 2.5rem;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
}

/* Comparison Table Section */
.comparison {
    padding: 6rem 0;
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 2rem;
}

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

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(190, 88, 218, 0.1);
}

.comparison-table th {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(190, 88, 218, 0.05);
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: 16px;
}

.comparison-table th:last-child {
    border-top-right-radius: 16px;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

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

.comparison-table .check {
    color: #22c55e;
    font-size: 1.2rem;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 1.2rem;
}

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

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(190, 88, 218, 0.05) 0%, rgba(190, 88, 218, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(190, 88, 218, 0.1);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-trigger:hover {
    color: var(--primary-color);
}

.faq-trigger i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.faq-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.faq-content li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.faq-content li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.faq-content li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-accordion {
        padding: 0 1rem;
    }
    
    .faq-trigger {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-content-inner {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 4rem 0;
}

.media-logos {
    margin-top: 3rem;
    text-align: center;
}

.featured-logos {
    max-width: 100%;
    height: auto;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.3s ease;
}

.featured-logos:hover {
    filter: grayscale(0) opacity(1);
}

.media-quote:hover .media-logo {
    filter: grayscale(0) opacity(1);
}

.media-quote .quote {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
}

.media-quote .source {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

/* About Creator Section */
.about-creator {
    padding: 4rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.03) 50%,
        var(--background-color) 100%
    );
}

.creator-box {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.creator-image {
    text-align: center;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.founder-details {
    margin-top: 1rem;
    text-align: center;
}

.founder-details h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.founder-details p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0.5rem 0 0;
}

.creator-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    text-align: center;
}

.rating-box {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stars {
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .creator-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .creator-content h3 {
        font-size: 2rem;
    }

    .stars {
        font-size: 2rem;
    }
}

.footer {
    background: rgba(190, 88, 218, 0.03);
    border-top: 1px solid rgba(190, 88, 218, 0.1);
    padding: 6rem 0 2rem;
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 160px;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-column a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(190, 88, 218, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-links {
        justify-content: center;
        gap: 2rem;
    }

    .footer-column {
        align-items: center;
        min-width: 140px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header-right {
        display: flex;
        align-items: center;
    }

    .main-nav {
        display: none !important;
    }

    .auth-links {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .login-link {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .login-link:hover {
        color: var(--text-primary);
    }

    .auth-links .btn {
        margin: 0;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .burger-menu {
        display: none;
    }
}

/* Update hero top margin for mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: calc(73px + 2rem); /* Header height + some spacing */
    }
}

/* Fix button text wrapping on mobile */
@media (max-width: 768px) {
    .plan-card .btn {
        white-space: normal;
        height: auto;
        min-height: 3.5rem;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
        flex-wrap: wrap;
        font-size: 1rem;
        gap: 0; /* Remove gap */
    }
    
    .plan-card .btn .plan-period {
        margin: 0 0.25rem;
    }

    /* Target the specific pricing buttons */
    .plan-card a[href="https://speare.ai/offer"] {
        font-size: 1rem;
    }
}

/* Add mobile styles for specialist cards */
@media (max-width: 768px) {
    .specialist-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .specialist-image-wrapper {
        width: 150px;
        margin: 0 auto;
    }
    
    .specialist-image {
        width: 150px;
        height: 150px;
    }
    
    .specialist-info {
        width: 100%;
    }
    
    .specialist-name {
        margin-top: 0.5rem;
    }
    
    .specialist-role {
        margin: 0.5rem auto;
        display: inline-block;
    }
    
    .specialist-description {
        text-align: center;
    }
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.auth-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Video Section */
.video-section {
    position: relative;
    padding: 4rem 0 6rem;
    background: var(--background-color);
    overflow: hidden;
}

.video-section::before,
.video-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.video-section::before {
    top: 0;
}

.video-section::after {
    bottom: 0;
}

.video-container {
    margin-top: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.video-wrapper > div:last-child {
    border: 1px solid rgba(190, 88, 218, 0.3);
    border-radius: 1rem;
    overflow: hidden;
}

.video-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    border: 1px solid rgba(190, 88, 218, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.2);
    object-fit: contain;
    filter: blur(10px) brightness(0.7);
    transition: transform 0.3s ease;
}

.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.play-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-overlay-container:hover .play-text {
    opacity: 1;
}

.overlay-play-button {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(190, 88, 218, 0.4);
}

.overlay-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.video-overlay-container:hover .overlay-play-button {
    transform: scale(1.1);
    background: #d169f5;
}

.video-overlay-container.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .overlay-play-button {
        width: 60px;
        height: 60px;
    }

    .overlay-play-button i {
        font-size: 1.5rem;
    }
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

/* Pain Points Section */
.pain-points {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.03) 50%,
        var(--background-color) 100%
    );
    position: relative;
}

.pain-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.pain-points .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.pain-points-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pain-point i {
    color: #ef4444;
    font-size: 1.6rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pain-point p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
}

.harsh-truth {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(190, 88, 218, 0.08);
    border-radius: 16px;
}

.harsh-truth .lead-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.harsh-truth .highlight {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

/* Solution Intro Section */
.solution-intro {
    padding: 8rem 0;
    position: relative;
    text-align: center;
    margin-bottom: 0;
}

.solution-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.benefits-section {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-section h4 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.benefit i {
    color: #22c55e;
    font-size: 1.6rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
}

.no-hassle {
    text-align: center;
    margin-bottom: 3rem;
}

.no-hassle .subtitle {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.no-hassle ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.no-hassle li {
    padding: 0.75rem 1.5rem;
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 100px;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.no-hassle li:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 88, 218, 0.3);
    background: rgba(190, 88, 218, 0.1);
}

.metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.metric {
    text-align: center;
}

.metric .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric .label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
    }

    .pain-points {
        padding: 6rem 0;
    }

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

    .solution-intro h3 {
        font-size: 2.5rem;
    }

    .solution-intro .subtitle {
        font-size: 1.5rem;
    }

    .metrics {
        flex-direction: column;
        gap: 2rem;
    }

    .no-hassle ul {
        flex-direction: column;
    }

    .no-hassle li {
        width: 100%;
        text-align: center;
    }

    .pain-point p,
    .benefit p {
        font-size: 1.2rem;
    }
    
    .pain-point i,
    .benefit i {
        font-size: 1.4rem;
    }
}

/* Numbers Section */
.numbers-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        var(--background-color) 0%,
        rgba(190, 88, 218, 0.03) 50%,
        var(--background-color) 100%
    );
    position: relative;
    text-align: center;
}

.numbers-section .gradient-text {
    margin-bottom: 2rem;
}

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

.stat-card {
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-number .unit {
    font-size: 1.5rem;
    margin-left: 0.25rem;
    opacity: 0.8;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

.roi-highlight {
    background: rgba(190, 88, 218, 0.08);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 0;
}

.roi-highlight .highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.roi-highlight p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .numbers-section {
        padding: 4rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    .roi-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
}

.journey-story {
    margin-top: 4rem;
    text-align: left;
}

.journey-story h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.journey-story p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Updated Comparison Table Styles */
.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 24px;
    padding: 2rem;
}

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

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(190, 88, 218, 0.1);
}

.comparison-table th {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(190, 88, 218, 0.05);
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: 16px;
}

.comparison-table th:last-child {
    border-top-right-radius: 16px;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

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

.comparison-table .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-note {
    margin-top: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-note p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .journey-story h3 {
        font-size: 2rem;
    }

    .journey-story p {
        font-size: 1.1rem;
    }

    .comparison-table-wrapper {
        margin: 2rem -1rem;
        border-radius: 0;
        padding: 1rem;
    }

    .comparison-note p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Add responsive adjustments for mobile */
@media (max-width: 768px) {
    .pricing-toggle {
        min-width: 300px;
        width: 90%;
    }
    
    .toggle-btn {
        padding: 0.75rem 1rem;
        min-width: auto;
    }
}

/* Pro Plan Card Enhanced Styles */
.plan-card.pro {
    background: linear-gradient(135deg, 
        rgba(190, 88, 218, 0.15) 0%, 
        rgba(190, 88, 218, 0.05) 100%
    );
    border: 2px solid rgba(190, 88, 218, 0.3);
    transform: scale(1.02);
}

.plan-card.pro:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(190, 88, 218, 0.5);
    box-shadow: 0 20px 40px rgba(190, 88, 218, 0.3);
}

/* Languages Section */
.languages-section {
    padding: 6rem 0;
    background: var(--background-color);
    position: relative;
    margin-bottom: 0;
}

.languages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(190, 88, 218, 0) 0%,
        rgba(190, 88, 218, 0.3) 50%,
        rgba(190, 88, 218, 0) 100%
    );
}

.languages-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #a347bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(190, 88, 218, 0.05);
    border: 1px solid rgba(190, 88, 218, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.language-item:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 88, 218, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.language-item .flag {
    font-size: 1.5rem;
    line-height: 1;
}

.language-item .language {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .languages-section {
        padding: 3rem 0;
    }

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

    .languages-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .language-item {
        padding: 0.75rem;
    }

    .language-item .flag {
        font-size: 1.25rem;
    }

    .language-item .language {
        font-size: 1rem;
    }
}

/* Mobile Menu Hiding */
@media screen and (max-width: 768px) {
    .main-nav {
        display: none !important;
    }
    
    .header-right {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
    .hero-subtitle {
        margin-top: 1rem;
    }
}