:root {
    /* Color Palette - Clean Light Theme */
    --bg-primary: #FFFFFF;
    --text-primary: #212529;
    --accent-purple: #6C5CE7;
    --accent-blue: #74B9FF;
    --action-blue: #0984E3;
    --light-purple: #A29BFE;
    --success: #28A745;
    --error: #DC3545;
    
    /* Mapped Variables for consistency */
    --brand-primary: var(--accent-purple);
    --brand-secondary: var(--light-purple);
    --brand-dark: var(--text-primary);
    --brand-light: #f8f9fa;
    --text-main: var(--text-primary);
    --text-muted: #6c757d;
    --white: #ffffff;
    --bg-gray: #f4f7f6;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Shadows & Effects */
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}

/* Ensure Logo and specific branding remains lowercase */
.logo, .footer-logo, .logo span, .footer-logo span {
    text-transform: none !important;
}

/* Specific branding class for damnPDF text */
.brand-name {
    text-transform: none !important;
}

/* Global two-tone brand color: purple "damn", black "PDF" everywhere */
.brand-name > span {
    color: var(--accent-purple);
}

/* Allow lowercase for specific elements if needed */
.no-capitalize {
    text-transform: none !important;
}

/* Premium Button Styling */
.btn-premium {
    background: var(--action-blue);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-2px);
    background: var(--accent-purple);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: lowercase; /* Ensure logo is lowercase */
}

.logo span {
    color: var(--accent-purple);
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700; /* Increased thickness */
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-purple);
}

/* Hero Refinements */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -2px;
}



.hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.4;
    font-weight: 400;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0 6rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--accent-purple);
}

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

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Tool Page Specialized Styles */
.tool-page-main {
    padding: 4rem 0;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
}

.tool-interface-card {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.tool-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tool-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-drop-zone {
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    padding: 4rem 2rem;
    background: var(--bg-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
}

.lowercase-com {
    text-transform: lowercase !important;
}
.step-number {
    background: var(--accent-purple);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.seo-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.premium-drop-zone:hover {
    border-color: var(--accent-purple);
    background: #fdfdfd;
}

.premium-drop-zone .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.premium-drop-zone .title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    display: block;
}

.premium-drop-zone .subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.status-box {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    display: none;
}

.status-loading { background: #e3f2fd; color: #1976d2; }
.status-success { background: #e8f5e9; color: #2e7d32; }
.status-error { background: #ffebee; color: #c62828; }

@keyframes cyberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Ad Banners */
.ad-banner {
    background: var(--ad-bg);
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
    border: 1px dashed #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-top { width: 728px; height: 90px; }
.ad-sidebar { width: 300px; height: 600px; }
.ad-footer { width: 728px; height: 90px; }

/* Main Hero */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: var(--bg-gray);
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -2px;
}



.hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Tool Grid - 2x5 Grid */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 1.5rem;
    padding: 4rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.tool-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: 1px solid var(--glass-border);
    text-align: left; /* Align left for a cleaner grid feel */
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    background: var(--white);
}

.tool-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    background: var(--bg-gray);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.3s;
}

.tool-card:hover .tool-icon {
    background: var(--accent-blue);
}

.tool-card-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.tool-card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    text-transform: capitalize;
}

/* Content Sections (SEO) */
.seo-section {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid var(--glass-border);
}

.seo-content {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.seo-content p {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    opacity: 0.9;
    text-align: justify;
}

.seo-card-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.seo-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-purple);
}

.highlight-accent {
    color: var(--accent-purple);
    font-weight: 700;
}

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

    .seo-liquid-layout {
        padding: 1.5rem;
    }

    .seo-liquid-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Liquid Layout for SEO Section */
.seo-liquid-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.seo-liquid-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.seo-liquid-content {
    flex: 1;
}

.seo-liquid-content p {
    margin: 0;
    text-align: left;
    line-height: 1.8;
    text-transform: capitalize;
}

.seo-liquid-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step-number {
    background: var(--accent-purple);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Footer */
footer {
    background: var(--bg-gray);
    color: var(--text-primary);
    padding: 6rem 0 3rem;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 900;
}

.footer-logo span { color: var(--accent-purple); }

.footer-links h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 992px) {
    .tool-grid { grid-template-columns: 1fr; max-width: 600px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    background: var(--bg-gray);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.faq-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    text-align: center;
}

.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Comparison Table Section */
.comparison-section {
    padding: 6rem 0;
    background: radial-gradient(circle at bottom left, rgba(138, 43, 226, 0.05) 0%, transparent 60%);
}

.comparison-container {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
    overflow-x: auto;
}

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

.comparison-table th, 
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

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

/* Feature column */
.comparison-table td:first-child {
    color: var(--text-primary);
    width: 250px;
}

/* User column styling */
.comparison-table .our-brand {
    background: rgba(138, 43, 226, 0.08) !important;
    color: var(--accent-purple);
    font-weight: 800;
    border-left: 3px solid rgba(138, 43, 226, 0.3);
    border-right: 3px solid rgba(138, 43, 226, 0.3);
    position: relative;
    box-shadow: inset 0 0 20px rgba(138, 43, 226, 0.02);
}

.comparison-table tr:first-child th.our-brand {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-top: 3px solid rgba(138, 43, 226, 0.3);
}

.comparison-table tr:last-child td.our-brand {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom: 3px solid rgba(138, 43, 226, 0.3);
}

.comparison-table td {
    height: 80px; /* Taller rows for readability */
    vertical-align: middle;
}

/* Indicators */
.check-green { color: #10b981 !important; font-weight: bold; font-size: 1.4rem; }
.cross-red { color: #ef4444 !important; font-weight: bold; font-size: 1.4rem; }
.limit-text { font-size: 0.85rem; color: #777; display: block; margin-top: 0.3rem; text-transform: capitalize; }
.unlimited-badge { 
    background: rgba(108, 92, 231, 0.12); 
    color: var(--accent-purple); 
    padding: 0.4rem 1rem; 
    border-radius: 20px; 
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-container {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .comparison-table th, 
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}
/* Social Proof Placeholder */
.social-proof-placeholder {
    padding: 6rem 0;
    background: var(--bg-gray);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.proof-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    border: 1px dashed var(--accent-purple);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.proof-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.proof-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Good Karma Donation Section */
.karma-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.03) 0%, transparent 70%);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.karma-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.karma-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.karma-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-karma {
    background: var(--bg-gray);
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 100px;
}

.btn-karma:hover {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
}

.btn-karma.featured {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
}

.btn-karma.featured:hover {
    background: var(--action-blue);
    border-color: var(--action-blue);
}

/* --- NEW UPSELL & EXIT-INTENT STYLES --- */

/* Result Container */
.result-container {
    margin-top: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--accent-purple);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.1);
    text-align: center;
    animation: fadeInSlideUp 0.6s ease-out;
}

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

.result-header h2 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Upsell Block */
.upsell-block {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(116, 185, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px dashed var(--accent-purple);
    text-align: center;
}

.upsell-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.upsell-block p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-upsell {
    display: inline-block;
    background: var(--accent-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(108, 92, 231, 0.2);
}

.btn-upsell:hover {
    background: var(--action-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(9, 132, 227, 0.3);
}

.upsell-inline-link {
    display: block;
    margin-top: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.upsell-inline-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* Exit Intent Popup */
.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none; /* Controlled by JS */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exit-intent-overlay.active {
    display: flex;
    opacity: 1;
}

.exit-intent-content {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exit-intent-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.exit-intent-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.exit-intent-close:hover {
    color: var(--error);
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Post-Tool Upsell Block ─────────────────────────────────────── */
.upsell-section { padding: 3rem 0; }
.upsell-card { background: linear-gradient(135deg, #f8f6ff, #f0edff); border: 1px solid rgba(108,92,231,0.2); border-radius: 24px; padding: 2.5rem; max-width: 900px; margin: 0 auto; text-align: center; }
.upsell-card h2 { font-family: var(--font-heading); font-size: 1.75rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.upsell-card > p { color: var(--text-muted); margin-bottom: 1.75rem; font-size: 1rem; line-height: 1.7; }
.upsell-btns { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-upsell-primary { background: linear-gradient(135deg, #6C5CE7, #a29bfe); color: #fff; padding: 0.8rem 1.75rem; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(108,92,231,0.3); display: inline-block; }
.btn-upsell-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,0.4); }
.btn-upsell-secondary { background: rgba(108,92,231,0.08); border: 1px solid rgba(108,92,231,0.25); color: #6C5CE7; padding: 0.8rem 1.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; display: inline-block; }
.btn-upsell-secondary:hover { background: rgba(108,92,231,0.15); }
.upsell-divider { border: none; border-top: 1px solid rgba(108,92,231,0.12); margin: 1.5rem 0; }
.upsell-partners-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #6c757d; margin-bottom: 1rem; }
.upsell-partner-links { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }
.upsell-partner-link { background: #fff; border: 1px solid rgba(108,92,231,0.15); border-radius: 12px; padding: 0.75rem 1.25rem; text-decoration: none; color: #212529; font-size: 0.875rem; font-weight: 600; transition: border-color 0.2s, color 0.2s; }
.upsell-partner-link:hover { border-color: #6C5CE7; color: #6C5CE7; }
.nav-nice-mode { background: linear-gradient(135deg, #6C5CE7, #a29bfe); color: #fff !important; padding: 0.4rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.85rem; transition: opacity 0.2s; }
.nav-nice-mode:hover { opacity: 0.88; color: #fff !important; }
