/*
Theme Name: RankingBuddy Theme
Description: A modern, professional WordPress theme for RankingBuddy with AI-powered SEO features and clean design.
Version: 1.3.0
Author: RankingBuddy
License: GPL v2 or later
Tags: business, marketing, seo, ai, professional, clean, responsive
Text Domain: rankingbuddy
*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary-color: #ff6234;
    --primary-dark: #e55029;
    --primary-foreground: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --background: #ffffff;
    --border: #e2e8f0;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Force override any blue colors back to orange */
.logo-text {
    color: var(--primary-color) !important;
}

.cta-button, .btn-primary {
    background: var(--primary-color) !important;
    color: var(--primary-foreground) !important;
}

.cta-button:hover, .btn-primary:hover {
    background: var(--primary-dark) !important;
}

.highlight {
    color: var(--primary-color) !important;
}

.hero-badge {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.font-display {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Original Design Button Styles */
.btn-primary {
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Original Design Hero Section */
.hero-section {
    position: relative;
    padding-bottom: 48px;
    padding-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to bottom, rgba(241, 245, 249, 0.5), transparent);
    pointer-events: none;
    z-index: -10;
}

.hero-content {
    position: relative;
    max-width: 672px;
    margin: 0 auto;
    padding-top: 48px;
    text-align: center;
}

.hero-content p:first-child {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 12px;
    letter-spacing: 0.025em;
    margin-bottom: 16px;
    white-space: nowrap;
}

.hero-title {
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--foreground);
}

.hero-title .highlight {
    display: block;
    color: var(--primary-color);
}

.hero-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-content > p:last-of-type {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 14px;
    margin-top: 16px;
}

/* Original Design Value Section */
.value-section {
    padding-top: 64px;
    padding-bottom: 96px;
    padding-left: 16px;
    padding-right: 16px;
    background: rgba(241, 245, 249, 0.3);
}

.value-content {
    max-width: 768px;
    margin: 0 auto;
}

.value-content p {
    text-align: center;
    font-size: 20px;
    color: var(--foreground);
    font-weight: 500;
    line-height: 1.6;
}

.value-content .highlight {
    background: var(--primary-color);
    color: var(--primary-foreground);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-block;
}

.hero-title .highlight {
    color: var(--primary-color);
    display: block;
}

/* Responsive Design for Original Layout */
@media (min-width: 640px) {
    .hero-section {
        padding-bottom: 64px;
    }
    
    .hero-content p:first-child {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-title {
        font-size: 48px;
        margin-bottom: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .value-section {
        padding-top: 96px;
    }
    
    .value-content p {
        font-size: 24px;
        line-height: 1.7;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
    
    .value-content p {
        font-size: 28px;
    }
}

/* Two Paths Section */
.two-paths-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.paths-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.path {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid var(--border);
}

.path-expensive {
    border: 2px solid #ef4444;
}

.path-smart {
    border: 2px solid var(--primary-color);
    position: relative;
}

.path-smart::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.path-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.path-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
}

.path-result {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 16px;
}

.vs-divider {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-medium);
    padding: 20px;
    background: var(--bg-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .paths-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vs-divider {
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Logo Styles */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
}

.custom-logo {
    max-height: 40px;
    width: auto;
    transition: transform 0.2s;
}

.logo-link:hover .custom-logo {
    transform: scale(1.05);
}

.logo-link:hover .logo-text {
    color: var(--primary-color);
}

/* Header & Navigation */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-list a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    padding: 100px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: #ff6234;
}

.section-title .highlight {
    color: #ff6234;
}

.highlight {
    background-color: #ff6234;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.faq-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-tab.active {
    background: var(--primary-color);
    color: white;
}

.faq-tab:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

/* Footer Brand Section */
.footer-brand-section {
    background: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

.brand-examples {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.brand-item h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-info p {
    margin: 0;
    font-weight: 600;
    color: #4a5568;
}

/* Results section image styling */
.result-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Human + AI Service section button styling */
.human-ai-service .button-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .brand-examples {
        flex-direction: column;
        gap: 20px;
    }
    
    .brand-item h1 {
        font-size: 1.2rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Mobile Navigation */
    .nav-list {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        margin: 10px 0;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero section mobile */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    /* Features grid mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Pricing grid mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Results grid mobile */
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Two paths mobile */
    .paths-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Container padding mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Section padding mobile */
    section {
        padding: 40px 0;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Desktop Navigation (hide toggle) */
@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-list {
        display: flex !important;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Value Proposition */
.value-section {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
}

.value-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.value-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.value-text {
    color: var(--text-light);
    font-style: italic;
}

/* Two Paths Section */
.two-paths-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
    line-height: 1.2;
}

.paths-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.path {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
}

.path:hover {
    transform: translateY(-4px);
}

.path-expensive {
    border: 2px solid var(--border);
}

.path-smart {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.path-smart .path-price {
    color: var(--white);
}

.path-smart .path-content p {
    color: var(--white);
}

.path-smart .cta-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.path-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.path-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 32px;
}

.path-pay-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vs-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-medium);
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-image {
    margin-bottom: 32px;
}

.demo-interface {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.demo-header {
    background: var(--bg-light);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-medium);
}

.demo-content {
    padding: 20px;
}

.keyword-interface {
    display: grid;
    gap: 12px;
}

.keyword-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 14px;
}

.keyword-difficulty {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.keyword-difficulty:contains("Easy") {
    background: #22c55e;
}

.keyword-difficulty:contains("Med") {
    background: #eab308;
}

.keyword-difficulty:contains("Hard") {
    background: #ef4444;
}

.content-preview {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.content-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.content-snippet {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.analytics-metric {
    background: var(--bg-light);
    padding: 20px 16px;
    border-radius: 8px;
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.metric-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.metric-change {
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
    margin-top: 4px;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.result-card {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.chart-header {
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.chart-visual {
    height: 200px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 30px 25px;
}

.chart-visual svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.chart-area {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
}

.chart-dots {
    fill: var(--primary-color);
    stroke: var(--white);
    stroke-width: 2;
}

.result-stats {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-medium);
    font-size: 14px;
    margin-top: 4px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.pay-as-you-go {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 400px;
    margin: 40px auto 0;
}

.pricing-plan {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.pricing-plan.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-plan h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 14px;
}

.features-list li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

.money-back {
    text-align: center;
    margin-top: 60px;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.enterprise-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.enterprise-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Final CTA */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.final-cta-section .cta-button {
    background: var(--white);
    color: var(--primary-color);
}

.final-cta-section .cta-button:hover {
    background: #f7fafc;
    transform: translateY(-1px);
}

/* Footer */
.site-footer {
    background: #1a202c;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .paths-comparison {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan.featured {
        transform: none;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        justify-content: center;
    }
    
    .value-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Mobile Menu Toggle Animation */
.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        justify-content: center;
    }
}

/* New Homepage Structure CSS */

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    background: #fafbfc;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-color);
}

/* Value Section */
.value-section {
    padding: 60px 0;
    background: var(--white);
}

.value-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.value-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Two Paths Section */
.two-paths-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.paths-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.path {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.path-recommended {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

.path-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.path-period {
    color: var(--text-light);
    margin-bottom: 24px;
}

.vs-divider {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

/* Features Section - Modern Clean Design */
.features-section {
    padding: 100px 0;
    background: #fafbfc;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-item.feature-wide {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
}

.feature-visual {
    padding: 20px;
}

.demo-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Demo Components */
.demo-list {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.demo-item {
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.demo-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
}

.demo-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.demo-actions button {
    background: #f1f5f9;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-medium);
}

.seo-dashboard {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.seo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.seo-item .label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.seo-item .status {
    font-size: 16px;
}

.status.success {
    color: #10b981;
}

.status.pending {
    color: #f59e0b;
}

.publish-flow {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.flow-item {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}

.flow-item.active {
    background: #dcfce7;
    color: #166534;
}

.flow-item.pending {
    background: #fef3c7;
    color: #92400e;
}

.blog-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.blog-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.blog-text {
    flex: 1;
}

.blog-title {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.blog-post {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.search-result {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
}

.search-query {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 12px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
}

.result-item {
    position: relative;
    padding: 12px;
    background: white;
    border-radius: 6px;
}

.rank-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #10b981;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.result-title {
    color: #1a73e8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.result-url {
    color: #10b981;
    font-size: 12px;
}

.domain-metrics {
    display: grid;
    gap: 8px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 6px;
}

.metric-item.highlight {
    background: #fef3c7;
    font-weight: 600;
}

.domain {
    font-size: 13px;
    color: var(--text-dark);
}

.da-score {
    font-size: 12px;
    color: var(--text-medium);
    font-weight: 600;
}

.client-dashboard {
    display: grid;
    gap: 12px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.client-icon {
    font-size: 18px;
}

.automation-workflow {
    display: grid;
    gap: 8px;
}

.workflow-step {
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-dark);
}

.reviews-interface {
    padding: 4px;
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.rating-score {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-stars {
    font-size: 16px;
}

.review-count {
    font-size: 12px;
    color: var(--text-medium);
}

.review-item {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.reviewer-initial {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.reviewer-name {
    font-weight: 600;
    font-size: 13px;
    flex: 1;
}

.review-date {
    font-size: 11px;
    color: var(--text-medium);
}

.review-stars {
    margin-bottom: 6px;
    font-size: 12px;
}

.review-text {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-medium);
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.result-chart img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-initial {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.company-details {
    flex: 1;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.company-type {
    font-size: 14px;
    color: var(--text-medium);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #fafbfc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    position: relative;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-medium);
}

.price-savings {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.credits {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-medium);
    border-bottom: 1px solid #f1f5f9;
}

.all-features {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    margin: 24px 0 16px 0;
    text-align: left;
}

.pay-as-go {
    border: 2px solid #f59e0b;
}

.limited-offer {
    background: #fef3c7;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.limited-offer p {
    margin: 0;
    font-size: 12px;
    color: #92400e;
    font-weight: 600;
}

.premium-service {
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-card::before {
    content: "PREMIUM";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 32px 0;
    flex-wrap: wrap;
    gap: 24px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-amount span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-medium);
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.service-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.service-features li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-medium);
    border-bottom: 1px solid #f1f5f9;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-tabs {
    display: flex;
    gap: 8px;
    margin: 40px 0;
    justify-content: center;
}

.faq-tab {
    padding: 12px 24px;
    border: none;
    background: #f8fafc;
    color: var(--text-medium);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-tab.active {
    background: var(--primary-color);
    color: white;
}

.faq-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-panel.active {
    display: block;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f1f5f9;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta-section .section-title {
    color: white;
    margin-bottom: 16px;
}

.final-cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-examples {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.example-heading {
    background: white;
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-pricing {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-actions {
        justify-content: center;
    }
    
    .cta-examples {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Feature Demo Interfaces */
.feature-demo {
    max-width: 300px;
    margin: 0 auto;
}

.demo-interface {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}

.demo-header {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: center;
}

.demo-suggestions {
    margin-bottom: 16px;
}

.suggestion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
}

.difficulty {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.difficulty.easy { background: #dcfce7; color: #166534; }
.difficulty.medium { background: #fef3c7; color: #92400e; }
.difficulty.hard { background: #fecaca; color: #991b1b; }

.demo-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.demo-content h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.demo-content p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.demo-actions {
    display: flex;
    gap: 8px;
}

.demo-actions button {
    background: #e5e7eb;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.demo-url {
    font-family: monospace;
    background: #f3f4f6;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 14px;
}

.demo-stats .stat-item {
    margin-bottom: 4px;
    font-size: 14px;
}

.stat-card {
    background: white;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    text-align: center;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 12px;
    color: var(--text-medium);
}

.stat-change {
    font-size: 12px;
    font-weight: 600;
}

.stat-change.positive {
    color: #10b981;
}

.red { color: #ef4444; }
.green { color: #10b981; }
.yellow { color: #f59e0b; }
.blue { color: #3b82f6; }

.platform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
}

.status {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
}

.platform.connected .status {
    background: #dcfce7;
    color: #166534;
}

.platform.setup .status {
    background: #fef3c7;
    color: #92400e;
}

.rating-score {
    font-weight: 700;
    font-size: 18px;
    margin-right: 8px;
}

.analysis-item {
    font-weight: 600;
    margin-bottom: 4px;
}

.analysis-detail, .analysis-competition {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.result-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.result-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.result-chart {
    margin-bottom: 20px;
}

.result-stats {
    display: grid;
    gap: 16px;
}

.result-stats .stat-item {
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
}

.result-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.result-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    display: block;
}

.result-stats .stat-change {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
    display: block;
    margin-top: 4px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.price-savings {
    color: #10b981;
    font-size: 14px;
    margin-bottom: 20px;
}

.credits {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.features-list {
    list-style: none;
    text-align: left;
    margin-top: 30px;
}

.features-list li {
    padding: 8px 0;
    color: var(--text-medium);
    border-bottom: 1px solid #f1f5f9;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55529 100%);
    color: white;
    text-align: center;
}

.final-cta-section .section-title {
    color: white;
    margin-bottom: 24px;
}

.final-cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 20px 40px;
}

/* Buttons */
.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .paths-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vs-divider {
        justify-self: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .results-grid, .pricing-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* Additional Complete CSS for sofloelitemarketing.com structure */

/* Enhanced Demo Interfaces */
.seo-section {
    margin-top: 16px;
}

.seo-header {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.seo-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.seo-tabs .tab {
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.seo-tabs .tab.active {
    background: var(--primary-color);
    color: white;
}

.seo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 12px;
}

.seo-item .label {
    color: var(--text-medium);
}

.seo-item .status {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.status.deployed {
    background: #dcfce7;
    color: #166534;
}

.status.deploy {
    background: #fef3c7;
    color: #92400e;
}

/* Publishing Status */
.publishing-status {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.status-item {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.status-item.publishing {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-item.posting {
    background: #fef3c7;
    color: #92400e;
}

.status-item.indexing {
    background: #dcfce7;
    color: #166534;
}

.blog-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.blog-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.blog-content {
    flex: 1;
}

.blog-title {
    font-size: 12px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.blog-post {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Search Interface */
.search-bar {
    margin-bottom: 16px;
}

.search-bar input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.search-results {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.results-count {
    padding: 8px 12px;
    background: #f9fafb;
    font-size: 12px;
    color: var(--text-medium);
}

.search-result {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.ranking-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #10b981;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.search-result h4 {
    color: #1a73e8;
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.result-url {
    color: #10b981;
    font-size: 12px;
    margin-bottom: 4px;
}

.search-result p {
    color: var(--text-medium);
    font-size: 12px;
    line-height: 1.4;
}

/* Domain List */
.domain-list {
    display: grid;
    gap: 8px;
}

.domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
}

.domain-item.highlight {
    background: #fef3c7;
    font-weight: 600;
}

.domain-item .domain {
    color: var(--text-dark);
}

.domain-item .da {
    color: var(--text-medium);
    font-weight: 600;
}

/* Client Dashboard */
.client-header {
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.project-section {
    display: grid;
    gap: 8px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
}

.project-icon {
    font-size: 16px;
}

.project-controls {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.project-controls button {
    flex: 1;
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
}

.project-controls .new-project {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Automation Workflow */
.automation-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.workflow-steps {
    display: grid;
    gap: 8px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
}

.step-icon {
    font-size: 16px;
}

/* Business Profile */
.business-profile {
    width: 100%;
}

.profile-header {
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.profile-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}

.profile-tabs .tab {
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.profile-tabs .tab.active {
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.rating-display {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.rating-number {
    font-size: 18px;
    font-weight: 700;
    margin-right: 8px;
}

.rating-stars {
    margin-right: 8px;
}

.review-count {
    font-size: 12px;
    color: var(--text-medium);
}

.review-item {
    margin-bottom: 12px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 6px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.reviewer-initials {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.reviewer-name {
    font-weight: 600;
    font-size: 12px;
    flex: 1;
}

.review-date {
    font-size: 10px;
    color: var(--text-medium);
}

.review-stars {
    margin-bottom: 4px;
    font-size: 12px;
}

.review-text {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-medium);
}

/* Suggestion Result */
.suggestion-result {
    margin-top: 12px;
    padding: 8px;
    background: #f0f9ff;
    border-radius: 6px;
}

.suggestion-label {
    font-size: 11px;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.suggestion-result p {
    font-size: 12px;
    margin-bottom: 8px;
}

.suggestion-actions {
    display: flex;
    gap: 8px;
}

.discard-btn {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
}

.accept-btn {
    background: #dcfce7;
    color: #166534;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
}

/* Company Info */
.company-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.company-initial {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.company-details {
    flex: 1;
}

.company-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.company-type {
    color: var(--text-medium);
    font-size: 14px;
}

/* Pay as you go pricing */
.pricing-card.pay-as-go {
    border: 2px solid #f59e0b;
    position: relative;
}

.limited-offer {
    margin-top: 20px;
    padding: 16px;
    background: #fef3c7;
    border-radius: 8px;
    text-align: center;
}

.limited-offer p {
    color: #92400e;
    font-size: 14px;
    margin: 0;
}

/* Premium Service */
.premium-service {
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55529 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-subtitle {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.service-pricing {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
}

.service-price {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-actions .cta-button {
    background: white;
    color: var(--primary-color);
}

.service-actions .btn-outline {
    border-color: white;
    color: white;
}

.service-actions .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 60px;
}

.faq-tab {
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.faq-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.faq-content {
    position: relative;
}

.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
}

.all-features {
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: var(--text-dark);
}

/* CTA Examples */
.cta-examples {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.example-heading {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.example-text {
    font-size: 14px;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .service-pricing {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .service-price {
        text-align: center;
    }
    
    .cta-examples {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tabs {
        gap: 16px;
    }
    
    .demo-interface {
        padding: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}