:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
	background: white;
	padding-bottom: 60px;
}

/* ===== HEADER FIXES ===== */
.brand-clarification {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brand-clarification strong {
    font-weight: 700;
    background: rgba(255,255,255,0.3);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 4px;
}

.domain-notice {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0 30px 0;
    text-align: center;
    font-size: 14px;
    color: white;
    backdrop-filter: blur(10px);
}

.domain-notice strong {
    font-weight: 600;
    color: #ffeb3b;
}

.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 20px 60px 20px;
    text-align: center;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 L1000,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

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

.header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Main Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Enhanced Navigation Styles */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
	color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}
.nav-links a.active {
    background: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}
.nav-links a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.nav-links a:active {
    transform: translateY(0);
}

/* Current page indicator */
.nav-links a[href="/"] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Underline animation for links */
.nav-links a:not(.cta-button-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}
.nav-links a:not(.cta-button-nav):hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(10px);
}

/* CTA button specific styles */
.cta-button-nav {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
}

.cta-button-nav:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .cta-button-nav {
        padding: 8px 16px;
    }
}
.ad-unit {
    background: var(--light-bg);
    padding: 15px;
    text-align: center;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 728px;
}

.ad-label {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 5px;
}

.social-proof {

}

.social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.social-proof-logo {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-proof-logo:hover {
    opacity: 1;
}

/* Add visual feedback for active sections */
section:target {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0% { background: rgba(102, 126, 234, 0.1); }
    100% { background: transparent; }
}

/* Or add border highlight */
section:target {
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    margin-left: -15px;
}
/* ===== SOCIAL PROOF ENHANCEMENTS ===== */
.social-proof-logo {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* ===== HEADER FIXES ===== */
.brand-clarification {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brand-clarification strong {
    font-weight: 700;
    background: rgba(255,255,255,0.3);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 4px;
}

.domain-notice {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0 30px 0;
    text-align: center;
    font-size: 14px;
    color: white;
    backdrop-filter: blur(10px);
}

.domain-notice strong {
    font-weight: 600;
    color: #ffeb3b;
}

.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 20px 60px 20px;
    text-align: center;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 L1000,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

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

.header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Main Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-links a:hover {
    opacity: 0.8;
}

.cta-button-nav {
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-button-nav:hover {
    background: rgba(255,255,255,0.3);
}

.ad-unit {
    background: var(--light-bg);
    padding: 15px;
    text-align: center;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 728px;
}

.ad-label {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 5px;
}

.social-proof {

}

.social-proof-logo {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-proof-logo:hover {
    opacity: 1;
}

.social-proof {
    background: white;
    padding: 40px 20px;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: white;
    font-size: 1em;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.features {
    background: var(--light-bg);
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.pricing {
    padding: 80px 20px;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-name {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.plan-price {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.plan-period {
    color: #333;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.testimonials {
    background: var(--light-bg);
    padding: 80px 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-bg);
}

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.email-capture {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
	clear: both;
    margin-top: 40px !important;
}

.email-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.email-input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    min-width: 0;
}

.email-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.demo-container {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.demo-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.demo-output {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px dashed #ddd;
    min-height: 200px;
    text-align: left;
    font-size: 1em;
    overflow-y: auto;
}

.demo-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-select {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.1em;
    width: 100%;
}

.demo-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
}

.confidence-score {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-left: 10px;
}

.high-confidence { background: var(--success-color); color: white; }
.medium-confidence { background: var(--warning-color); color: white; }
.low-confidence { background: var(--danger-color); color: white; }

/* Loading animation for demo */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Sticky Sidebar Ad */
.sidebar-ad {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 160px;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.sidebar-ad .ad-label {
    font-size: 0.7em;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* ===== DEMO SECTION ENHANCEMENTS ===== */
.demo-output:empty::before {
    content: "Select content type and topic to see AI-generated content...";
    color: #333;
    font-style: italic;
}

.demo-output.success {
    border-color: var(--success-color);
    background: linear-gradient(135deg, #f8fff8 0%, #f0fff0 100%);
}

.demo-output.error {
    border-color: var(--danger-color);
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
}

.demo-output.loading {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loading animation */
.demo-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

/* ===== ENHANCED CTA BUTTONS ===== */
.cta-button-primary {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-button-premium {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
}



    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}



.social-proof-logo:hover {
    opacity: 1;
}
    opacity: 1;
}

.testimonial-with-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.testimonial-avatar-container {
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-content {
    flex: 1;
}

/* ===== DEMO ENHANCEMENTS ===== */
.copy-button {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.copy-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.copy-button.copied {
    background: var(--primary-color);
}

/* ===== PRICING A/B TEST STYLES ===== */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 50px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-button {
    padding: 10px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    flex: 1;
}

.toggle-button.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* ===== ENHANCED USE CASES ===== */
}

/* ===== ENTERPRISE SOLUTIONS ===== */
.enterprise-solutions {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.enterprise-solutions .section-title {
    color: #333 !important;
}

.enterprise-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.enterprise-feature {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.enterprise-feature:hover {
    transform: translateY(-5px);
}

.enterprise-feature h3 {
color: #667eea ;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.enterprise-feature p {
    margin: 0;
}

.enterprise-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-button-enterprise {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button-enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
}

.enterprise-download {
background: transparent ;
    color: #333 !important;
border: 2px solid white ;
}

.enterprise-download:hover {
background: var(--light-bg) ;
    color: #333 !important;
}

.enterprise-trust {
    margin-top: 30px;
    font-size: 1em;
    opacity: 0.8;
    color: white;
}

/* ===== PREMIUM ADD-ONS ===== */
/* ===== AFFILIATE PRODUCTS ===== */
.affiliate-products {
    padding: 80px 20px;
    background: white;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.affiliate-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.affiliate-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.affiliate-logo {
    font-size: 3em;
    margin-bottom: 15px;
}

.affiliate-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    text-align: left;
}

.affiliate-benefits span {
    font-size: 1em;
    color: #333;
}

/* ===== DIGITAL PRODUCTS ===== */
.digital-products {
    padding: 80px 20px;
    background: var(--light-bg);
}

.digital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.digital-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.digital-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.digital-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.digital-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.digital-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.digital-price {
    margin: 25px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.sale-price {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
}

    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    100% { transform: scale(1); }
}

/* Strategic ad positions */
.ad-unit-optimized {
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

/* Demo section fixes */
.demo-cta {
    margin-top: 30px;
    text-align: center;
}

.demo-note {
    font-size: 1em;
    color: #333;
    margin-top: 10px;
    font-style: italic;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
section.affiliate-products .affiliate-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
/* Mobile responsiveness */
@media (max-width: 1024px) {
    .sidebar-ad {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 40px 20px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-box {
        padding: 20px;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
.social-proof-logo {
    margin: 0 15px;
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-proof-logo:hover {
    opacity: 1;
}
    opacity: 1;
}

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}
    

    
    .testimonial-with-image {
        flex-direction: column;
        text-align: center;
    }
    
     
    .pricing-toggle {
        max-width: 250px;
    }
    
    .toggle-button {
        padding: 8px 15px;
        font-size: 1em;
    }
    
    
  
    .enterprise-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
    }
    
    .addon-grid,
    .affiliate-grid,
    .digital-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .brand-clarification {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .domain-notice {
        margin: 15px 0 25px 0;
        padding: 12px;
    }
    
.social-proof-logo {
    margin: 0 15px;
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-proof-logo:hover {
    opacity: 1;
}
    opacity: 1;
}

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}
    

/* Improved Trust Badges Styling */
.trust-badges-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important; /* Reduced gap */
    overflow-x: auto !important;
    max-width: 100% !important;
	position: relative !important;
    margin: 50px auto 30px auto !important;
    padding: 20px 0 !important;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
	
}

.trust-badge-item {
    background: #f8f9fa !important;
    color: #333 !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    font-size: 0.8em !important; /* Smaller font */
    white-space: nowrap !important;
    border: 1px solid #e9ecef !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: auto !important;
    line-height: 1.2 !important;
}

/* Better mobile responsiveness */
@media (max-width: 768px) {
    .trust-badges-container {
        justify-content: flex-start !important;
        padding: 12px 10px !important;
        gap: 6px !important;
    }
    
    .trust-badge-item {
        font-size: 0.75em !important;
        padding: 6px 10px !important;
    }
}

/* Hide scrollbar but keep functionality */
.trust-badges-container::-webkit-scrollbar {
    display: none;
}

.trust-badges-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
    
    

/* ===== REVENUE OPTIMIZATION STYLES ===== */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    margin: 20px 0;
    border-radius: 8px;
    animation: pulse 2s infinite;
}

.ad-unit-optimized {
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
    max-width: 728px;
}

.micro-cta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.value-comparison {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.comparison-item.highlight {
    background: var(--light-bg);
    margin: 0 -20px;
    padding: 15px 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.results-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 equal columns */
    gap: 20px;
}

.result-item {
    background: var(--light-bg);
    border: 1px solid #e9ecef;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2 !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.result-item strong {
    display: block;
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 5px;
	font-weight: 800;
}

.urgency-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    display: inline-block;
}


.ad-unit-optimized {
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
    max-width: 728px;
}

.micro-cta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.value-comparison {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.comparison-item.highlight {
    background: var(--light-bg);
    margin: 0 -20px;
    padding: 15px 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.results-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.result-item strong {
    display: block;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.urgency-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    display: inline-block;
}
.value-proposition {
    text-align: center;
    margin: 40px 0;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}
.value-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 15px;
    margin-top: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.value-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.value-proposition h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 700;
}
.result-icon {
    font-size: 2.5em !important;
    margin-bottom: 15px !important;
    display: block !important;
	transition: transform 0.3s ease;
}
.result-item:hover .result-icon {
    transform: scale(1.1);
}
.result-item span {
    font-weight: 600; /* From current 400/500 */
    color: #444; /* Slightly darker */
}
.hero-content .stats {
    display: flex !important;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.urgency-banner { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; padding: 15px; text-align: center; font-weight: 600; margin: 20px 0; border-radius: 8px; animation: pulse 2s infinite; }

/* Responsive Media Queries - Added by optimization script */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-hidden {
        display: none !important;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}
@media (max-width: 768px) {
    .value-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-point {
        padding: 15px 10px;
        font-size: 1em;
    }
}
@media (max-width: 768px) {
    .results-proof {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .affiliate-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 20px;
    }
}


.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: white;
    font-size: 1em;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.features {
    background: var(--light-bg);
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
    color: var(--dark-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.pricing {
    padding: 80px 20px;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-name {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.plan-price {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.plan-period {
    color: #333;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.testimonials {
    background: var(--light-bg);
    padding: 80px 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-bg);
}

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.email-capture {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.email-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.email-input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    min-width: 0;
}

.email-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.demo-container {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.demo-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.demo-output {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px dashed #ddd;
    min-height: 200px;
    text-align: left;
    font-size: 1em;
    overflow-y: auto;
}

.demo-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-select {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.1em;
    width: 100%;
}

.demo-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
}

.confidence-score {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-left: 10px;
}

.high-confidence { background: var(--success-color); color: white; }
.medium-confidence { background: var(--warning-color); color: white; }
.low-confidence { background: var(--danger-color); color: white; }

/* Loading animation for demo */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Sticky Sidebar Ad */
.sidebar-ad {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 160px;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.sidebar-ad .ad-label {
    font-size: 0.7em;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* ===== DEMO SECTION ENHANCEMENTS ===== */
.demo-output:empty::before {
    content: "Select content type and topic to see AI-generated content...";
    color: #333;
    font-style: italic;
}

.demo-output.success {
    border-color: var(--success-color);
    background: linear-gradient(135deg, #f8fff8 0%, #f0fff0 100%);
}

.demo-output.error {
    border-color: var(--danger-color);
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
}

.demo-output.loading {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loading animation */
.demo-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

/* ===== ENHANCED CTA BUTTONS ===== */
.cta-button-primary {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-button-premium {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
}



    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}



.social-proof-logo:hover {
    opacity: 1;
}
    opacity: 1;
}

.testimonial-with-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.testimonial-avatar-container {
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-content {
    flex: 1;
}

/* ===== DEMO ENHANCEMENTS ===== */
.copy-button {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.copy-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.copy-button.copied {
    background: var(--primary-color);
}

/* ===== PRICING A/B TEST STYLES ===== */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 50px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-button {
    padding: 10px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    flex: 1;
}

.toggle-button.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* ===== ENHANCED USE CASES ===== */
/* ===== ENTERPRISE SOLUTIONS ===== */
/* ===== ENTERPRISE SOLUTIONS ===== */
.enterprise-solutions {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.enterprise-solutions .section-title {
    color: #333 !important;
}

.enterprise-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.enterprise-feature {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.enterprise-feature:hover {
    transform: translateY(-5px);
}

.enterprise-feature h3 {
color: #667eea ;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.enterprise-feature p {
    margin: 0;
}

.enterprise-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-button-enterprise {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button-enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
}

.enterprise-download {
background: transparent ;
    color: #333 !important;
border: 2px solid white ;
}

.enterprise-download:hover {
background: var(--light-bg) ;
    color: #333 !important;
}

.enterprise-trust {
    margin-top: 30px;
    font-size: 1em;
    opacity: 0.8;
    color: white;
}

/* ===== PREMIUM ADD-ONS ===== */
/* ===== AFFILIATE PRODUCTS ===== */
.affiliate-products {
    padding: 80px 20px;
    background: white;
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.affiliate-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.affiliate-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.affiliate-logo {
    font-size: 3em;
    margin-bottom: 15px;
}

.affiliate-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    text-align: left;
}

.affiliate-benefits span {
    font-size: 1em;
    color: #333;
}

/* ===== DIGITAL PRODUCTS ===== */
.digital-products {
    padding: 80px 20px;
    background: var(--light-bg);
}

.digital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.digital-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.digital-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.digital-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.digital-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.digital-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.digital-price {
    margin: 25px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.sale-price {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
}

    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    100% { transform: scale(1); }
}

/* Strategic ad positions */
.ad-unit-optimized {
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

/* Demo section fixes */
.demo-cta {
    margin-top: 30px;
    text-align: center;
}

.demo-note {
    font-size: 1em;
    color: #333;
    margin-top: 10px;
    font-style: italic;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
section.affiliate-products .affiliate-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
/* Mobile responsiveness */
@media (max-width: 1024px) {
    .sidebar-ad {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 40px 20px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-box {
        padding: 20px;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
.social-proof-logo {
    margin: 0 15px;
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-proof-logo:hover {
    opacity: 1;
}
    opacity: 1;
}

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}
    

    
    .testimonial-with-image {
        flex-direction: column;
        text-align: center;
    }
    
     
    .pricing-toggle {
        max-width: 250px;
    }
    
    .toggle-button {
        padding: 8px 15px;
        font-size: 1em;
    }
    
    
  
    .enterprise-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
    }
    
    .addon-grid,
    .affiliate-grid,
    .digital-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 20px 15px;
    }
    
  
    .brand-clarification {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .domain-notice {
        margin: 15px 0 25px 0;
        padding: 12px;
    }
    
.social-proof-logo {
    margin: 0 15px;
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-proof-logo:hover {
    opacity: 1;
}
    opacity: 1;
}

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}
    

.trust-badges-container {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    margin: 20px 0 !important;
    flex-wrap: wrap !important;
	margin: 40px auto 60px auto !important; /* Top and bottom spacing */
    padding: 20px 0 !important;
}

.trust-badge-item {
    background: #f8f9fa !important;
    color: #333 !important;
    padding: 10px 15px !important;
    border-radius: 25px !important;
    font-size: 0.9em !important;
    white-space: nowrap !important;
    border: 1px solid #e9ecef !important;
    font-weight: 600 !important;
}
    


/* ===== REVENUE OPTIMIZATION STYLES ===== */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    margin: 20px 0;
    border-radius: 8px;
    animation: pulse 2s infinite;
}

.ad-unit-optimized {
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
    max-width: 728px;
}

.micro-cta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.value-comparison {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.comparison-item.highlight {
    background: var(--light-bg);
    margin: 0 -20px;
    padding: 15px 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.results-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 equal columns */
    gap: 20px;
}

.result-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 2px solid var(--primary-color);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(-12px) scale(1.03);
    cursor: pointer;
}
.result-item:hover {
    z-index: 100 !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
	background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}
.result-item strong {
    display: block;
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 5px;
	font-weight: 800;
}

.urgency-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    display: inline-block;
}


.ad-unit-optimized {
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
    max-width: 728px;
}

.micro-cta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.value-comparison {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.comparison-item.highlight {
    background: var(--light-bg);
    margin: 0 -20px;
    padding: 15px 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.results-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.result-item strong {
    display: block;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.urgency-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    display: inline-block;
}
.value-proposition {
    text-align: center;
    margin: 40px 0;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}
.value-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 15px;
    margin-top: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.value-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.value-proposition h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 700;
}

.result-item span {
    font-weight: 600; /* From current 400/500 */
    color: #444; /* Slightly darker */
}
.hero-content .stats {
    display: flex !important;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.urgency-banner { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; padding: 15px; text-align: center; font-weight: 600; margin: 20px 0; border-radius: 8px; animation: pulse 2s infinite; }

/* Responsive Media Queries - Added by optimization script */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-hidden {
        display: none !important;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}
@media (max-width: 768px) {
    .value-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-point {
        padding: 15px 10px;
        font-size: 1em;
    }
}
@media (max-width: 768px) {
    .results-proof {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .affiliate-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 20px;
    }
}
/* Prompt Marketplace Styles */
.prompt-marketplace {
    background: var(--light-bg);
    padding: 80px 20px;
}

.marketplace-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.prompt-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prompt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
	transition: all 0.3s ease;
}

.prompt-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.prompt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.prompt-card.bundle {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #fff, #f8fbff);
}

.prompt-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.prompt-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.prompt-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.prompt-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.prompt-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.prompt-features li:last-child {
    border-bottom: none;
}

.prompt-price {
    margin: 25px 0;
}

.prompt-price .price {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
}

.prompt-price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
    font-size: 1.2em;
}

.marketplace-cta {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button-premium {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.4);
}
.prompt-badge[data-type="bestseller"] {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.prompt-badge[data-type="trending"] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.prompt-badge[data-type="new"] {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.prompt-badge[data-type="savings"] {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}
.prompt-badge[data-type="popular"] {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.prompt-badge[data-type="featured"] {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}
.prompt-card .prompt-badge:first-child {
    top: -10px;
}
.prompt-card .prompt-badge:nth-child(2) {
    top: 25px; /* Position second badge lower */
}
/* Academy Styles */
.academy {
    background: white;
    padding: 80px 20px;
}

.academy-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.course-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    color: white;
}

.course-image {
    font-size: 4em;
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.course-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.course-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
}

.course-features li:last-child {
    border-bottom: none;
}

.course-price {
    margin: 30px 0;
}

.course-price .price {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
}

.course-price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 15px;
    font-size: 1.3em;
}

.academy-bundle {
    margin: 60px 0;
}

.bundle-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.bundle-card h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.bundle-card .course-features li {
    border-bottom-color: rgba(255,255,255,0.3);
}

.bundle-card .course-price .price {
    color: #FFD700;
}

.academy-cta {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 15px;
}

.academy-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.academy-stat {
    text-align: center;
}

.academy-stat strong {
    display: block;
    font-size: 2em;
    color: var(--primary-color);
}
.bundle-card .course-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
}

.bundle-card .course-features li {
    border: none;
    padding: 5px 0;
}
.bundle-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    padding: 10px 25px !important;
    font-size: 1em !important;
    font-weight: 700 !important;
}
.course-badge[data-type="savings"] {
	background: linear-gradient(135deg, #FFD700, #FFA500);
	color: #000;
}
/* Specific targeting for bundle badge */
.academy-bundle .course-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000 !important;
    font-weight: 700;
}
/* Fix for products page navigation */
.products-hero .main-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.products-hero .nav-links a {
    color: white !important;
}

.products-hero .logo {
    color: white !important;
}
/* Ensure trust badges stay in their section */
.container .trust-badges-container {
    position: static !important;
    margin: 40px auto !important;
    transform: none !important;
}
/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
}

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

.sticky-text {
    font-weight: 600;
    font-size: 0.95em;
}

.sticky-cta {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* Adjust body padding to prevent content hiding */
body {
    padding-bottom: 60px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sticky-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .sticky-text {
        font-size: 0.85em;
    }
    
    body {
        padding-bottom: 80px;
    }
}
.main-nav .nav-links a {
    color: white !important;
}

.main-nav .logo {
    color: white !important;
}
/* Products Page Hero */
.products-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 20px 60px;
    text-align: center;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

/* Tools Section Styling */
.tools-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.tool-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.tool-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.tool-badge[data-type="featured"] {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.tool-badge[data-type="new"] {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.tool-card p {
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tool-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.tool-features li {
    padding: 8px 0;
    color: #4a5568;
}

.tool-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tool-industries {
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 14px;
}

/* Coming Soon Card */
.tool-card.coming-soon {
    opacity: 0.8;
    background: linear-gradient(135deg, #f8fafc, #edf2f7);
}

.tool-card.coming-soon .tool-features li {
    color: #a0aec0;
}

/* Responsive */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-actions {
        flex-direction: column;
    }
    
    .tool-card {
        padding: 30px 20px;
    }
}