/* Extension-Inspired Design System */
:root {
    /* Extension's warm cream foundation */
    --color-background: #f7f3e9;
    --color-surface: #fefbf3;
    --color-surface-secondary: #f5f0e8;
    --color-surface-hover: #f9f5ed;
    --color-border: #e8dcc6;
    --color-border-light: #f0e6d8;
    
    /* Enhanced green palette (inspired by extension) */
    --color-primary: #22c55e;
    --color-primary-hover: #16a34a;
    --color-primary-light: #dcfce7;
    
    /* Professional text hierarchy */
    --color-text-primary: #2d2520;
    --color-text-secondary: #6b5d52;
    --color-text-muted: #8a7c6f;
    
    /* Sophisticated shadow system */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    
    /* Refined transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Refined Typography (keeping elegant Crimson Text) */
h1, h2, h3, h4 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

/* Extension-Inspired Button System */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 
        0 4px 14px rgba(76, 175, 80, 0.15),
        0 1px 3px rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Chrome Extension CTA Special Effects */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 25px rgba(34, 197, 94, 0.2),
        0 3px 6px rgba(34, 197, 94, 0.25);
    animation: pulse-green 2s infinite;
}

.btn-primary:active {
    transform: translateY(0);
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optimized hover effects to prevent forced reflows */
.btn-hover {
    transform: translateY(-2px);
    transition: transform var(--transition-fast);
}

/* Scroll-to-top button optimized styles */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-normal), transform var(--transition-fast);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    will-change: opacity, transform;
}

.scroll-to-top.visible {
    opacity: 1;
}

.scroll-to-top:hover {
    transform: scale(1.1);
}

/* Chrome-specific styling for extension CTA */
[data-chrome-store].btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    box-shadow: 
        0 4px 14px rgba(76, 175, 80, 0.15),
        0 1px 3px rgba(76, 175, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-chrome-store].btn-primary:hover {
    background: linear-gradient(135deg, #45a049, #388e3c);
    animation: pulse-chrome-hover 2s infinite;
}

/* Keyframe Animations */
@keyframes pulse-green {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(34, 197, 94, 0.2),
            0 3px 6px rgba(34, 197, 94, 0.25);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(34, 197, 94, 0.3),
            0 3px 6px rgba(34, 197, 94, 0.35),
            0 0 20px rgba(34, 197, 94, 0.15);
    }
}

@keyframes pulse-chrome-subtle {
    0%, 100% {
        box-shadow: 
            0 4px 14px rgba(76, 175, 80, 0.15),
            0 1px 3px rgba(76, 175, 80, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 6px 18px rgba(76, 175, 80, 0.25),
            0 2px 5px rgba(76, 175, 80, 0.3),
            0 0 15px rgba(76, 175, 80, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}

@keyframes pulse-chrome-hover {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(76, 175, 80, 0.2),
            0 3px 6px rgba(76, 175, 80, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(76, 175, 80, 0.35),
            0 3px 6px rgba(76, 175, 80, 0.4),
            0 0 30px rgba(76, 175, 80, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 
        0 4px 14px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #6b7280;
    border: 1px solid rgba(209, 213, 219, 0.6);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
    background: rgba(34, 197, 94, 0.02);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-visual {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
    opacity: 1 !important;
    transition: var(--transition-slow) !important;
}

.hero-image:hover {
    transform: scale(1.01);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Trust Signals Section */
.trust-signals {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

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

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f8fffe;
    border-radius: 12px;
    border: 1px solid #e8f5e8;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    cursor: default;
}

.badge-item:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(34, 197, 94, 0.2);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-item span {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: #fafafa;
}

.problem-solution .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem, .solution {
    text-align: center;
    padding: 40px;
    border-radius: 12px;
}

.problem {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.solution {
    background: #e8f5e8;
    border-left: 4px solid #4CAF50;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Features Section */
.features {
    padding: 100px 0;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: #fafafa;
}

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

.demo-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.demo-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.demo-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-large);
    border-color: rgba(255, 255, 255, 0.4);
}

.demo-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.step h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Why Choose RollCall Section */
.why-choose {
    padding: 100px 0;
    background: #fafafa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.benefit-card.highlight {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    border: 2px solid #4CAF50;
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-card li {
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card li:last-child {
    border-bottom: none;
}

.conversion-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
}

.conversion-cta h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

/* Advanced Analytics Section */
.analytics {
    padding: 100px 0;
    background: #fafafa;
}

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

.analytics-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    position: relative;
}

.analytics-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    border-color: rgba(255, 255, 255, 0.3);
}

.analytics-card.highlight {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-primary-light) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 
        var(--shadow-large),
        0 0 0 1px rgba(34, 197, 94, 0.1);
}

.analytics-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
    display: inline-block;
}

.analytics-card:hover .analytics-icon {
    transform: scale(1.05);
}

.analytics-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.analytics-card p {
    color: #666;
    line-height: 1.6;
}

/* Participant Intelligence Section */
.participant-intelligence {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-surface-secondary) 0%, var(--color-background) 100%);
}

.intelligence-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.intelligence-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
    position: relative;
}

.intelligence-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    border-color: rgba(255, 255, 255, 0.3);
}

.intelligence-card.highlight {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-primary-light) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 
        var(--shadow-large),
        0 0 0 1px rgba(34, 197, 94, 0.1);
}

.intelligence-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
    display: inline-block;
}

.intelligence-card:hover .intelligence-icon {
    transform: scale(1.05);
}

.intelligence-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.intelligence-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.feature-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Professional Reporting Section */
.reporting {
    padding: 100px 0;
}

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

.reporting-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reporting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.reporting-card.highlight {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    border: 2px solid #4CAF50;
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.reporting-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.reporting-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.reporting-card p {
    color: #666;
    line-height: 1.6;
}

.reporting-comparison {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.reporting-comparison h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-basic, .comparison-professional {
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.comparison-basic {
    background: #fff3e0;
    border: 2px solid #ff9800;
}

.comparison-professional {
    background: #e8f5e8;
    border: 2px solid #4CAF50;
}

.comparison-basic h4, .comparison-professional h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.comparison-basic ul, .comparison-professional ul {
    list-style: none;
    padding: 0;
}

.comparison-basic li, .comparison-professional li {
    padding: 8px 0;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-basic li:last-child, .comparison-professional li:last-child {
    border-bottom: none;
}

/* Privacy Section */
.privacy {
    padding: 100px 0;
    background: #fafafa;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.privacy-item {
    padding: 40px 30px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.privacy-item.highlight {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    border: 2px solid #4CAF50;
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.privacy-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.privacy-item p {
    color: #666;
    line-height: 1.6;
}

.privacy-highlight {
    background: white;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #4CAF50;
}

.privacy-highlight h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.privacy-highlight p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Audience Section */
.audience {
    padding: 100px 0;
    background: #fafafa;
}

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

.audience-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.audience-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-surface-secondary) 0%, var(--color-background) 100%);
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Footer Blog Section */
.footer-blog-section {
    margin: 60px 0 40px 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-blog-section h3 {
    color: white;
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.footer-blog-column h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.footer-blog-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-blog-column li {
    margin-bottom: 8px;
}

.footer-blog-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: all var(--transition-fast);
    display: block;
    padding: 4px 0;
}

.footer-blog-column a:hover {
    color: white;
    padding-left: 8px;
}

.footer-blog-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-blog-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-blog-link:hover {
    color: white;
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Footer Resources */
.footer-resources {
    margin: 2rem 0;
    text-align: center;
}

.footer-resources h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.resources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-list li {
    margin-bottom: 0.5rem;
}

.resources-list a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.resources-list a:hover {
    color: #45a049;
    text-decoration: underline;
}

.resources-list a:visited {
    color: #4CAF50;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .problem-solution .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .demo-gallery,
    .steps,
    .privacy-features,
    .audience-grid,
    .benefits-grid,
    .analytics-grid,
    .reporting-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card.highlight,
    .analytics-card.highlight,
    .reporting-card.highlight,
    .privacy-item.highlight {
        transform: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .badge-item {
        flex-direction: column;
        gap: 8px;
        padding: 20px 15px;
        text-align: center;
    }
    
    .badge-item span {
        font-size: 0.8rem;
    }
    
    .footer-blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-blog-section {
        margin: 40px 0 30px 0;
    }
    
    .footer-blog-section h3 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .footer-blog-column h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
    
    .comparison-header {
        background: #2c3e50;
    }
    
    .comparison-row {
        padding: 15px;
    }
    
    .feature-col {
        font-weight: 600;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-blog-section h3 {
        font-size: 1.3rem;
    }
}

/* Blog Footer Simple Styles */
.blog-footer-simple {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 30px 0;
}

.footer-content-simple {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Blog Footer Responsive */
@media (max-width: 768px) {
    .footer-content-simple {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}