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

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: 20px;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);

    /* Typography */
    --font-primary: 'Space Grotesk', system-ui, sans-serif;
    --font-secondary: 'Inter', system-ui, sans-serif;
}

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mobile-specific optimizations */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-accent);
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(var(--glass-blur));
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.nav-brand i {
    color: var(--primary);
    font-size: 1.75rem;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

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

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

.nav-cta {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(var(--glass-blur));
}

.nav-cta:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

/* Testimonials */
.testimonials {
    display: flex;
    justify-content: center;
    gap: 8rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.testimonial {
    text-align: center;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.testimonial p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(var(--glass-blur));
    color: var(--text-secondary);
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-badge i {
    color: var(--warning);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.highlight-text {
    color: var(--warning);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.price-highlight {
    color: var(--success);
    font-size: 1.2em;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.value-props {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.value-item i {
    color: var(--success);
    font-size: 1.1rem;
}

.savings-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.4s forwards;
    width: 100%;
    max-width: 400px;
}

.save-amount {
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    margin-bottom: 0.25rem;
}

.comparison {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-actions {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.1);
}

.btn-hero {
    padding: 1.5rem 4rem !important;
    font-size: 1.3rem !important;
    min-width: 400px;
    font-weight: 700 !important;
    justify-content: center !important;
    text-align: center !important;
}

@media (max-width: 768px) {
    .btn-hero {
        min-width: 300px;
        padding: 1.25rem 3rem !important;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .btn-hero {
        min-width: 280px;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.hero-note i {
    color: var(--success);
}



/* Email Analytics Tracker Section */
.email-analytics-tracker {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.analytics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.analytics-content-section {
    padding-left: 2rem;
}

.analytics-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.2));
    border: 1px solid var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    color: var(--secondary);
    animation: pulse 2s ease-in-out infinite;
}

.analytics-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.analytics-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.analytics-features {
    margin-bottom: 2.5rem;
}

.analytics-features .feature-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.analytics-features .feature-check i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.analytics-cta {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--success) 100%);
}

.analytics-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.analytics-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.analytics-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.analytics-benefits .benefit-item i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Analytics Dashboard Interface */
.analytics-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-dashboard-interface {
    width: 100%;
    max-width: 500px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dashboard-header-section {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard-brand i {
    color: var(--secondary);
    font-size: 1rem;
}

.dashboard-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.analytics-content {
    display: flex;
    min-height: 400px;
}

.analytics-sidebar {
    width: 140px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    margin-right: 0.5rem;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.sidebar-item.active {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.2));
    color: var(--secondary);
    border-right: 2px solid var(--secondary);
}

.sidebar-item i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.analytics-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.metric-trend {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.metric-trend.up {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.metric-trend.up::before {
    content: '↗';
    font-size: 0.8rem;
}

.metric-trend.down {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.metric-trend.down::before {
    content: '↘';
    font-size: 0.8rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.metric-chart .mini-chart {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 20px;
}

.metric-chart .chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(6, 182, 212, 0.3) 100%);
    border-radius: 1px;
    min-height: 2px;
    transition: all 0.3s ease;
}

.metric-chart .chart-bar:hover {
    background: linear-gradient(180deg, var(--primary) 0%, rgba(99, 102, 241, 0.3) 100%);
}

.performance-chart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.chart-legend {
    display: flex;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-color.open {
    background: var(--secondary);
}

.legend-color.click {
    background: var(--success);
}

.chart-visualization {
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
}

.performance-graph {
    width: 100%;
    height: 100%;
}

.realtime-indicator {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.realtime-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Responsive Design for Analytics */
@media (max-width: 1200px) {
    .analytics-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .analytics-content-section {
        padding-left: 0;
    }
    
    .analytics-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .email-analytics-tracker {
        padding: 4rem 0;
    }
    
    .analytics-layout {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .analytics-title {
        font-size: 2.5rem;
    }
    
    .analytics-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .analytics-dashboard-interface {
        max-width: 100%;
    }
    
    .analytics-sidebar {
        width: 100px;
    }
    
    .sidebar-item {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .sidebar-item span {
        display: none;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .metric-card {
        padding: 0.75rem;
    }
    
    .performance-chart {
        padding: 1rem;
    }
}

/* Email Designer Showcase Section */
.email-designer-showcase {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.showcase-content {
    padding-right: 2rem;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(34, 197, 94, 0.2));
    border: 1px solid var(--success);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    color: var(--success);
    animation: pulse 2s ease-in-out infinite;
}

.showcase-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.showcase-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.showcase-features {
    margin-bottom: 2.5rem;
}

.showcase-features .feature-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.showcase-features .feature-check i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.showcase-cta {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--success) 0%, var(--secondary) 100%);
}

.showcase-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.showcase-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.benefit-item i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Email Designer Interface */
.showcase-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-designer-interface {
    width: 100%;
    max-width: 450px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.designer-toolbar {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
}

.toolbar-section {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.toolbar-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.toolbar-icon:hover,
.toolbar-icon.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.email-canvas {
    padding: 1.5rem;
    background: white;
    color: #333;
    min-height: 400px;
}

.canvas-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: inline-block;
}

.email-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.email-element {
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.email-element:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.welcome-element {
    background: linear-gradient(135deg, #fef3f2 0%, #fef7f7 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.welcome-icon {
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
}

.welcome-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.welcome-decorations {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.decoration {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.decoration-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.decoration-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.decoration-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.decoration-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.welcome-element h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #666;
}

.welcome-element h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
}

.welcome-element p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.cta-element {
    background: linear-gradient(135deg, #f0f9ff 0%, #f7fafc 100%);
    text-align: center;
}

.cta-element h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .showcase-content {
        padding-right: 0;
    }
    
    .showcase-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .email-designer-showcase {
        padding: 4rem 0;
    }
    
    .showcase-layout {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .email-designer-interface {
        max-width: 100%;
    }
    
    .toolbar-section {
        gap: 0.5rem;
    }
    
    .toolbar-icon {
        width: 35px;
        height: 35px;
    }
}

/* Advanced Automation Showcase Section */
.advanced-automation-showcase {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.98) 0%, rgba(15, 15, 35, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.automation-builder-interface {
    width: 100%;
    max-width: 500px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.builder-toolbar {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
}

.automation-canvas {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    min-height: 500px;
}

.canvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.workflow-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--success);
}

.workflow-status.active .status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.workflow-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workflow-node {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-node:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.trigger-node {
    border-left: 4px solid var(--primary);
}

.wait-node {
    border-left: 4px solid #f59e0b;
}

.email-node {
    border-left: 4px solid var(--success);
}

.node-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wait-node .node-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.email-node .node-icon {
    background: linear-gradient(135deg, var(--success), #10b981);
}

.node-content {
    flex: 1;
}

.node-content h4 {
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

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

.node-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--success);
    display: block;
}

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

.workflow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.5rem 0;
}

.arrow-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.arrow-head {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: -2px;
}

.workflow-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.split-condition {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.split-paths {
    display: flex;
    gap: 2rem;
}

.path-yes,
.path-no {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.path-yes {
    color: var(--success);
}

.path-no {
    color: #f59e0b;
}

.automation-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.automation-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.metric-item .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.metric-item .metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Automation Section */
@media (max-width: 768px) {
    .advanced-automation-showcase {
        padding: 4rem 0;
    }
    
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .automation-canvas {
        padding: 1.5rem;
    }
    
    .workflow-node {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .node-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .automation-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .split-paths {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Easy Workflow Builder Section */
.easy-workflow-builder {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.98) 0%, rgba(15, 15, 35, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.easy-workflow-interface {
    width: 100%;
    max-width: 550px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.workflow-canvas-easy {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    min-height: 600px;
}

.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.workflow-status-easy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--success);
}

.workflow-status-easy.active .status-dot-easy {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.workflow-builder-easy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.workflow-node-easy {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 280px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.workflow-node-easy:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.event-node {
    border-color: #06B6D4;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
}

.condition-node {
    border-color: #F59E0B;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
}

.tag-node {
    border-color: #8B5CF6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
}

.wait-node {
    border-color: #EF4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
}

.email-node {
    border-color: #10B981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.node-header-easy {
    margin-bottom: 1rem;
}

.node-label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.node-content-easy {
    display: flex;
    justify-content: center;
}

.event-badge {
    background: linear-gradient(135deg, #06B6D4, #0EA5E9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.condition-badge {
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-badge {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wait-badge {
    background: linear-gradient(135deg, #EF4444, #F87171);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-badge {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workflow-connector-easy {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), rgba(99, 102, 241, 0.3));
    border-radius: 2px;
    position: relative;
}

.workflow-connector-easy::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary);
}

.workflow-split-easy {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin: 1rem 0;
}

.split-line-left,
.split-line-right {
    width: 45%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(99, 102, 241, 0.3));
    border-radius: 2px;
    position: relative;
}

.split-line-left {
    transform: rotate(-10deg);
}

.split-line-right {
    transform: rotate(10deg);
}

.split-line-left::after,
.split-line-right::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.workflow-branch-easy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 48%;
}

.left-branch,
.right-branch {
    position: relative;
}

.left-branch {
    margin-right: auto;
}

.right-branch {
    margin-left: auto;
    margin-top: -80px;
}

/* Responsive Design for Easy Workflow Builder */
@media (max-width: 1200px) {
    .easy-workflow-builder .showcase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .easy-workflow-builder .showcase-content {
        order: 2;
    }
    
    .easy-workflow-builder .showcase-visual {
        order: 1;
    }
}

@media (max-width: 768px) {
    .easy-workflow-builder {
        padding: 4rem 0;
    }
    
    .workflow-canvas-easy {
        padding: 1.5rem;
        min-height: 500px;
    }
    
    .workflow-node-easy {
        padding: 1rem;
        max-width: 240px;
    }
    
    .workflow-branch-easy {
        width: 100%;
    }
    
    .right-branch {
        margin-top: 0;
        margin-left: 0;
    }
    
    .workflow-split-easy {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .split-line-left,
    .split-line-right {
        width: 3px;
        height: 30px;
        transform: rotate(0deg);
    }
    
    .split-line-left::after,
    .split-line-right::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -6px;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid var(--primary);
        border-bottom: none;
    }
    
    .node-label {
        font-size: 0.8rem;
    }
    
    .event-badge,
    .condition-badge,
    .tag-badge,
    .wait-badge,
    .email-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Pricing Comparison Section */
.pricing-comparison {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.comparison-content {
    position: sticky;
    top: 2rem;
    padding-right: 2rem;
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-glow);
}

.comparison-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.price-highlight {
    color: #06B6D4;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.comparison-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.comparison-cta {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.comparison-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-check i {
    color: var(--success);
    font-size: 1.1rem;
}

.comparison-table {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-lg);
    margin-left: 1rem;
}

.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cell {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.header-cell.our-service {
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.pricing-row.highlighted {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.subscriber-count {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.price-cell {
    text-align: center;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 6px;
}

.price-cell.competitor {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.1);
}

.price-cell.our-price {
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
    font-weight: 600;
}

.price-cell.savings-amount {
    color: #06B6D4;
    background: rgba(6, 182, 212, 0.1);
    font-weight: 700;
}

/* Bottom Features */
.bottom-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 3rem;
}

.bottom-feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s ease;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bottom-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-visual {
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* AI Content Generator Visual */
.ai-content-generator {
    width: 100%;
    max-width: 280px;
}

.ai-interface {
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 45, 0.95));
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.ai-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}

.ai-prompt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #06B6D4;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
}

.ai-prompt::before {
    content: '✨';
    position: absolute;
    left: 0.5rem;
    font-size: 0.7rem;
    animation: pulse 2s ease-in-out infinite;
}

.ai-prompt i {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.ai-output {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.suggestion-header {
    color: #22C55E;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-header::before {
    content: '🤖';
    font-size: 0.8rem;
}

.suggestion-text {
    color: var(--text-primary);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #22C55E;
}

.suggestion-score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.score-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.score-value {
    color: #22C55E;
    font-weight: 700;
    background: linear-gradient(135deg, #22C55E, #06B6D4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.score-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.score-fill {
    width: 92%;
    height: 100%;
    background: linear-gradient(90deg, #22C55E, #06B6D4);
    border-radius: 3px;
    position: relative;
    animation: fillScore 2s ease-out;
}

.score-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes fillScore {
    from { width: 0%; }
    to { width: 92%; }
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Automation Builder Visual */
.automation-builder {
    width: 100%;
    max-width: 240px;
}

.workflow-canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 45, 0.95));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.workflow-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.trigger-step {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

.action-step {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(99, 102, 241, 0.1));
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
}

.trigger-step .step-icon {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.action-step .step-icon {
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.step-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
}

.step-label {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 100px;
}

.workflow-arrow {
    color: #06B6D4;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

.workflow-note {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

/* SMTP Integration Visual */
.smtp-integration {
    width: 100%;
    max-width: 280px;
}

.integration-hub {
    position: relative;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 45, 0.95));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.integration-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}

.central-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
    min-width: 80px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.central-node::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
}

.central-node i {
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, #06B6D4, rgba(6, 182, 212, 0.2));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.line-1 {
    top: 15px;
    left: 15%;
    transform: rotate(-35deg);
    animation-delay: 0s;
}

.line-2 {
    top: 15px;
    right: 15%;
    transform: rotate(35deg);
    animation-delay: 1s;
}

.line-3 {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.smtp-services {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 1rem;
}

.smtp-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    color: var(--text-primary);
    min-width: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.smtp-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.smtp-service i {
    font-size: 1.2rem;
    color: #06B6D4;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.integration-note {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    white-space: nowrap;
}

.feature-info h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-info p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .comparison-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .comparison-content {
        position: static;
        text-align: center;
    }
    
    .pricing-header,
    .pricing-row {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.5rem;
    }
    
    .header-cell,
    .price-cell {
        font-size: 0.8rem;
        padding: 0.25rem;
    }
    
    .bottom-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .comparison-title {
        font-size: 2.5rem;
    }
    
    .comparison-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-header,
    .pricing-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
    }
    
    .header-cell:nth-child(2),
    .header-cell:nth-child(3),
    .price-cell:nth-child(2),
    .price-cell:nth-child(3) {
        display: none;
    }
    
    .feature-visual {
        height: 150px;
    }
}

/* Features Section */
.features {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
}

/* Advanced Features Section */
.advanced-features-section {
    margin: 6rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.advanced-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.advanced-features-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.advanced-features-section .section-header h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advanced-features-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.advanced-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advanced-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.advanced-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(6, 182, 212, 0.1);
}

.feature-visual {
    height: 200px;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI Content Generator Visual */
.ai-content-generator {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-interface {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-prompt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ai-prompt i {
    color: #8B5CF6;
    font-size: 1rem;
}

.ai-output {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.content-suggestion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.suggestion-header {
    font-size: 0.75rem;
    color: #06B6D4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.suggestion-score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
}

.score-label {
    color: var(--text-secondary);
}

.score-value {
    color: #10B981;
    font-weight: 700;
}

.score-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.score-fill {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, #10B981, #06B6D4);
    border-radius: 2px;
}

/* Automation Builder Visual */
.automation-builder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.workflow-canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 200px;
    justify-content: center;
}

.trigger-step {
    border-color: rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.action-step {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.step-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.trigger-step .step-icon {
    color: #06B6D4;
}

.action-step .step-icon {
    color: #8B5CF6;
}

.workout-arrow {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.workflow-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* SMTP Integration Visual */
.smtp-integration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.integration-hub {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.central-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.central-node i {
    font-size: 1.5rem;
    color: #06B6D4;
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.3), rgba(139, 92, 246, 0.3));
    height: 2px;
    border-radius: 1px;
}

.line-1 {
    top: 30%;
    left: 15%;
    width: 25%;
    transform: rotate(-30deg);
}

.line-2 {
    top: 70%;
    left: 15%;
    width: 25%;
    transform: rotate(30deg);
}

.line-3 {
    top: 50%;
    right: 15%;
    width: 25%;
}

.smtp-services {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.smtp-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    color: var(--text-primary);
    min-width: 50px;
    transition: all 0.3s ease;
}

.smtp-service:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
}

.smtp-service:first-child {
    align-self: flex-start;
    margin-top: 20%;
}

.smtp-service:last-child {
    align-self: flex-end;
    margin-bottom: 20%;
}

.smtp-service i {
    font-size: 1rem;
    color: #06B6D4;
}

.integration-note {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
}

.feature-info {
    position: relative;
    z-index: 1;
}

.feature-info h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

/* ================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   ================================ */

/* Mobile First Approach - Base Mobile Styles */
@media (max-width: 480px) {
    /* Core Layout */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Navigation Mobile */
    .futuristic-nav, .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand img, .nav-logo {
        height: 35px;
        width: auto;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(30, 41, 59, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 2rem 1rem;
        z-index: 999;
    }
    
    .nav-menu.mobile-active {
        display: flex;
    }
    
    .nav-link, .nav-cta {
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .testimonials {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonial {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .value-props {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .value-item {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .savings-note {
        text-align: center;
    }
    
    /* Features Grid Mobile */
    .features-grid-comprehensive {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
        margin: 3rem auto 0;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
        min-height: 140px;
        text-align: center;
    }
    
    .feature-icon-box {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Pricing Section Mobile */
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .pricing-sidebar {
        order: 2;
        text-align: center;
    }
    
    .pricing-main {
        order: 1;
        width: 100%;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .plan-features {
        font-size: 0.9rem;
    }
    
    .plan-features li {
        padding: 0.5rem 0;
    }
    
    /* Email Designer Showcase Mobile */
    .email-designer-showcase {
        padding: 3rem 0;
    }
    
    .showcase-layout {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .showcase-content {
        order: 2;
        text-align: center;
    }
    
    .showcase-visual {
        order: 1;
        height: 250px;
    }
    
    .showcase-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .showcase-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .showcase-features {
        text-align: left;
    }
    
    .feature-check {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Advanced Features Mobile */
    .advanced-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .advanced-feature-card {
        padding: 1.5rem;
    }
    
    .feature-visual {
        height: 160px;
        margin-bottom: 1.5rem;
    }
    
    .feature-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-info p {
        font-size: 0.9rem;
    }
    
    /* CRM Management Mobile */
    .crm-layout {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .crm-visual {
        order: 2;
        height: 300px;
    }
    
    .crm-content {
        order: 1;
        text-align: center;
    }
    
    /* Success Stories Mobile */
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .success-story-card {
        padding: 1.5rem;
    }
    
    .story-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .footer-brand {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .footer-column {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-column:last-child {
        border-bottom: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    /* Chat Widget Mobile */
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-panel {
        width: calc(100vw - 30px);
        max-width: 350px;
        height: 70vh;
        max-height: 500px;
        bottom: 75px;
        right: 0;
    }
    
    .chat-toggle {
        width: 55px;
        height: 55px;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .chat-input-area {
        padding: 1rem;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    /* Navigation Tablet */
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    /* Hero Tablet */
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Features Grid Tablet */
    .features-grid-comprehensive {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    /* Pricing Tablet */
    .pricing-container {
        padding: 0 2rem;
        gap: 3rem;
    }
    
    /* Advanced Features Tablet */
    .advanced-features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .advanced-feature-card {
        padding: 2.5rem;
    }
    
    /* Success Stories Tablet */
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 3rem 2rem;
    }
}

/* Desktop Small */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Features Grid Desktop Small */
    .features-grid-comprehensive {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Advanced Features Desktop Small */
    .advanced-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Success Stories Desktop Small */
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Footer Desktop Small */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1025px) {
    .features-grid-comprehensive {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .success-stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Landscape Orientation Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .chat-panel {
        height: 60vh;
    }
    
    .features-grid-comprehensive {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title, .showcase-title {
        font-weight: 500;
    }
    
    .feature-icon-box i {
        transform: translateZ(0);
    }
}

/* Comprehensive Features Grid */
.features-grid-comprehensive {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 6rem auto 0;
    padding: 3rem 2rem;
    min-height: auto;
}

.feature-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(var(--glass-blur));
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, var(--glass-bg), rgba(6, 182, 212, 0.05));
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.feature-item h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
    text-align: center;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .features-grid-comprehensive {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .features-grid-comprehensive {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 900px) {
    .features-grid-comprehensive {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
        min-height: 180px;
    }
    
    .feature-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .features-grid-comprehensive {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        min-height: 160px;
    }
}

/* Features Showcase */
.features-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Feature */
.hero-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 8rem;
    padding: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(var(--glass-blur));
    position: relative;
    overflow: hidden;
    align-items: center;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.hero-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid var(--error);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--error);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    width: fit-content;
    animation: pulse 2s ease-in-out infinite;
}

.hero-feature h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-subtitle {
    font-size: 1.25rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.cost-comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--success);
    border-radius: 16px;
}

.cost-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cost-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cost-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.cost-item.competitor .cost-amount {
    color: var(--error);
    text-decoration: line-through;
}

.cost-item.our-price .cost-amount {
    color: var(--success);
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.cost-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.feature-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.highlight-item i {
    color: var(--primary);
}

/* Hero Feature Visual */
.hero-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cost-savings-chart {
    width: 100%;
    max-width: 400px;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bar-fill {
    width: 100%;
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.competitor-fill {
    background: linear-gradient(180deg, var(--error) 0%, rgba(239, 68, 68, 0.6) 100%);
    height: 180px;
    animation: slideUp 2s ease-out;
}

.our-fill {
    background: linear-gradient(180deg, var(--success) 0%, rgba(16, 185, 129, 0.6) 100%);
    height: 20px;
    animation: slideUp 2s ease-out 0.5s both;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.bar-label {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.savings-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--success);
    padding: 1rem;
    border-radius: 12px;
    color: var(--success);
    font-weight: 700;
    animation: pulse 3s ease-in-out infinite;
}

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

/* Two Column Features Layout */
.features-two-column {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.feature-card-half {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    justify-content: space-between;
}

.feature-card-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card-half:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-visual-compact {
    margin-bottom: 1.5rem;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    padding: 1.5rem;
}

.feature-content-compact {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon-compact {
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: white;
}

.feature-card-half h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card-half p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

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

.feature-benefits-compact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.feature-benefits-compact i {
    color: var(--success);
    font-size: 0.7rem;
}

/* Compact Visual Components */

/* Email Designer Mini */
.email-designer-mini {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.design-canvas-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.canvas-header-small {
    padding: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.canvas-tools-small {
    display: flex;
    gap: 0.25rem;
}

.tool-item-small {
    width: 24px;
    height: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.tool-item-small.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.canvas-body-small {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.email-element-small {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--glass-border);
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    transition: all 0.3s ease;
}

.email-element-small:hover {
    border-color: var(--primary);
    border-style: solid;
}

/* AI Writer Mini */
.ai-writer-mini {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.ai-prompt-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.prompt-input-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.prompt-input-small i {
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.ai-output-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem;
}

.ai-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.output-content-small p {
    font-size: 0.65rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

/* Workflow Builder Mini */
.workflow-builder-mini {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
}

.workflow-canvas-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.workflow-node-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.workflow-node-small.trigger {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
}

.workflow-node-small.action {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.node-icon-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.workflow-node-small.trigger .node-icon-small {
    background: var(--success);
    color: white;
}

.workflow-node-small.action .node-icon-small {
    background: var(--primary);
    color: white;
}

.workflow-node-small span {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.workflow-arrow-small {
    color: var(--text-muted);
    font-size: 1rem;
}

.automation-stats-small {
    display: flex;
    justify-content: center;
}

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

.stat-number-small {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label-small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Analytics Dashboard Mini */
.analytics-dashboard-mini {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.dashboard-header-small {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metric-card-small {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
}

.metric-value-small {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.25rem;
}

.metric-label-small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-visualization-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem;
}

.chart-bars-small {
    display: flex;
    align-items: end;
    gap: 0.25rem;
    height: 60px;
}

.chart-bar-small {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(99, 102, 241, 0.3) 100%);
    border-radius: 3px 3px 0 0;
    animation: slideUp 1.5s ease-out;
    transition: all 0.3s ease;
}

.chart-bar-small:hover {
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(6, 182, 212, 0.3) 100%);
}

/* SMTP Connections Mini */
.smtp-connections-mini {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    height: 120px;
}

.central-hub-small {
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.55rem;
    margin: 0 auto 0.75rem;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.central-hub-small i {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.smtp-providers-small {
    display: flex;
    justify-content: space-around;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.smtp-provider-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    min-width: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.smtp-provider-small:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.smtp-provider-small i {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.smtp-provider-small span {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CRM Interface Mini */
.crm-interface-mini {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.contact-list-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-item-small:last-child {
    border-bottom: none;
}

.contact-avatar-small {
    width: 24px;
    height: 24px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
}

.contact-info-small {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-name-small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.tag-small {
    padding: 0.125rem 0.375rem;
    border-radius: 8px;
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-small.premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
    color: var(--warning);
    border: 1px solid var(--warning);
}

.tag-small.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--success);
    border: 1px solid var(--success);
}

.crm-stats-small {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem;
}

.stat-value-crm {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label-crm {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advanced Features Grid */
.features-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
    gap: 3rem;
    align-items: start;
}

.feature-card-advanced {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.feature-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card-advanced:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-visual {
    margin-bottom: 2rem;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    padding: 1.5rem;
}

/* Email Designer Visual */
.email-designer-preview {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-canvas {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--shadow-md);
}

.canvas-header {
    padding: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.canvas-tools {
    display: flex;
    gap: 0.5rem;
}

.tool-item {
    width: 32px;
    height: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.canvas-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
}

.email-element {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--glass-border);
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-element:hover {
    border-color: var(--primary);
    border-style: solid;
}

.element-content {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.element-handles {
    position: absolute;
    top: -4px;
    right: -4px;
}

.handle {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    cursor: move;
}

/* Analytics Dashboard Visual */
.analytics-dashboard {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.dashboard-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.25rem;
}

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

.metric-trend {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6rem;
}

.metric-trend.up {
    color: var(--success);
}

.chart-visualization {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
    margin-bottom: 1rem;
}

.chart-bars .chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(99, 102, 241, 0.3) 100%);
    border-radius: 4px 4px 0 0;
    animation: slideUp 1.5s ease-out;
    transition: all 0.3s ease;
}

.chart-bars .chart-bar:hover {
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(6, 182, 212, 0.3) 100%);
}

.real-time-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--success);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Workflow Builder Visual */
.workflow-builder {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.workflow-canvas {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.workflow-node {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.workflow-node.trigger {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
}

.workflow-node.action {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.workflow-node.condition {
    border-color: var(--warning);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
}

.node-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.workflow-node.trigger .node-icon {
    background: var(--success);
    color: white;
}

.workflow-node.action .node-icon {
    background: var(--primary);
    color: white;
}

.workflow-node.condition .node-icon {
    background: var(--warning);
    color: white;
}

.workflow-node span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.arrow-line {
    width: 20px;
    height: 1px;
    background: var(--text-muted);
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 4px solid var(--text-muted);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.automation-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

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

/* SMTP Connections Visual */
.smtp-connections {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 200px;
    margin: 0 auto;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    text-align: center;
    z-index: 2;
}

.hub-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.smtp-provider {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 70px;
    text-align: center;
    transition: all 0.3s ease;
}

.smtp-provider:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.provider-icon {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.smtp-provider span {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.smtp-provider.aws {
    top: 10px;
    left: 20px;
}

.smtp-provider.sendgrid {
    top: 10px;
    right: 20px;
}

.smtp-provider.mailgun {
    bottom: 10px;
    left: 20px;
}

.smtp-provider.custom {
    bottom: 10px;
    right: 20px;
}

.connection-line {
    position: absolute;
    width: 1px;
    background: var(--glass-border);
    z-index: 1;
}

.smtp-provider.aws .connection-line {
    width: 60px;
    height: 1px;
    bottom: 20px;
    right: -30px;
    transform: rotate(45deg);
}

.smtp-provider.sendgrid .connection-line {
    width: 60px;
    height: 1px;
    bottom: 20px;
    left: -30px;
    transform: rotate(-45deg);
}

.smtp-provider.mailgun .connection-line {
    width: 60px;
    height: 1px;
    top: 20px;
    right: -30px;
    transform: rotate(-45deg);
}

.smtp-provider.custom .connection-line {
    width: 60px;
    height: 1px;
    top: 20px;
    left: -30px;
    transform: rotate(45deg);
}

/* CRM Interface Visual */
.crm-interface {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.contact-list {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-email {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.contact-tags {
    display: flex;
    gap: 0.25rem;
}

.tag {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag.premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
    color: var(--warning);
    border: 1px solid var(--warning);
}

.tag.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--success);
    border: 1px solid var(--success);
}

.crm-stats {
    display: flex;
    justify-content: center;
}

.stat-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.6rem;
    opacity: 0.9;
}

/* AI Writer Interface Visual */
.ai-writer-interface {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.ai-prompt {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.prompt-input {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.prompt-input i {
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.ai-output {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.output-header {
    margin-bottom: 1rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
}

.output-content p {
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ai-suggestions {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.suggestion-item i {
    color: var(--warning);
}

/* Feature Content */
.feature-content {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-icon-advanced {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: white;
}

.feature-card-advanced h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card-advanced p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-benefits i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Animations */
@keyframes slideUp {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

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

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* Payment Methods Styling */
.payment-methods {
    margin: 2rem 0;
}

.payment-method-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.payment-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-option-btn {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(var(--glass-blur));
    position: relative;
    overflow: hidden;
}

.payment-option-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.payment-option-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.payment-option-btn.active::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.payment-option-btn i {
    font-size: 1.2rem;
}

/* Stripe specific styling */
.payment-option-btn:first-child {
    border-color: #635BFF;
}

.payment-option-btn:first-child:hover,
.payment-option-btn:first-child.active {
    background: linear-gradient(135deg, #635BFF 0%, #4F46E5 100%);
    border-color: #635BFF;
}

/* Razorpay specific styling */
.payment-option-btn:last-child {
    border-color: #0C2B4A;
}

.payment-option-btn:last-child:hover,
.payment-option-btn:last-child.active {
    background: linear-gradient(135deg, #0C2B4A 0%, #1A4A73 100%);
    border-color: #0C2B4A;
}

/* Responsive payment buttons */
@media (max-width: 480px) {
    .payment-options {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-option-btn {
        min-width: 250px;
    }
}

/* Contact CRM Management Section */
.contact-crm-management {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.crm-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.crm-content-section {
    padding-left: 2rem;
}

.crm-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.crm-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.crm-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.crm-features {
    margin-bottom: 2.5rem;
}

.crm-features .feature-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.crm-features .feature-check i {
    color: var(--success);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.crm-cta {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.crm-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.crm-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.crm-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.crm-benefits .benefit-item i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Contact Management Interface */
.crm-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-management-interface {
    width: 100%;
    max-width: 650px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.crm-header-section {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crm-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.crm-brand i {
    color: var(--primary);
    font-size: 1rem;
}

.crm-actions {
    display: flex;
    gap: 0.5rem;
}

.crm-action-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.crm-action-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.crm-content {
    display: flex;
    min-height: 500px;
}

.crm-sidebar {
    width: 180px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-section {
    padding: 0 1rem;
}

.sidebar-section h4 {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-bottom: 0.25rem;
    justify-content: space-between;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.sidebar-item.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.sidebar-item i {
    font-size: 0.8rem;
    width: 12px;
    text-align: center;
}

.sidebar-item .count {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
}

.tag-filter {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tag-item {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-fields-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.field-item {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.crm-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.select-all {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.contact-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    color: var(--text-primary);
    font-size: 0.8rem;
    width: 200px;
}

.search-box i {
    position: absolute;
    left: 0.75rem;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.email-verification-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.verification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.verification-header h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.verify-btn {
    background: linear-gradient(135deg, var(--success) 0%, var(--secondary) 100%);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.verification-events h5 {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.event-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.event-info {
    display: flex;
    flex-direction: column;
}

.event-name {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.event-count {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.contact-list-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 20px 40px 1fr 100px 80px 80px;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.contact-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.contact-email {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.contact-status {
    display: flex;
    justify-content: center;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.verified {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--success);
    border: 1px solid var(--success);
}

.status-badge.pending {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
    color: var(--warning);
    border: 1px solid var(--warning);
}

.contact-tags {
    display: flex;
    justify-content: center;
}

.tag {
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag.premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
    color: var(--warning);
    border: 1px solid var(--warning);
}

.tag.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--success);
    border: 1px solid var(--success);
}

.tag.new {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    color: var(--primary);
    border: 1px solid var(--primary);
}

.contact-actions {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.action-btn {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

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

/* Responsive Design for Contact CRM */
@media (max-width: 1200px) {
    .crm-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .crm-content-section {
        padding-left: 0;
    }
    
    .crm-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-crm-management {
        padding: 4rem 0;
    }
    
    .crm-layout {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .crm-title {
        font-size: 2.5rem;
    }
    
    .crm-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-management-interface {
        max-width: 100%;
    }
    
    .crm-sidebar {
        width: 120px;
    }
    
    .sidebar-item {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .sidebar-item span {
        text-align: center;
    }
    
    .contact-row {
        grid-template-columns: 20px 1fr 80px 60px;
        gap: 0.5rem;
    }
    
    .contact-status,
    .contact-tags {
        display: none;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
}

.pricing-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    padding: 0 3rem;
}

.pricing-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.scarcity-alert {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid var(--error);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.alert-icon {
    font-size: 2rem;
    color: var(--error);
    margin-bottom: 0.75rem;
    animation: bounce 1s ease-in-out infinite;
}

.alert-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.alert-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.alert-content .highlight {
    color: var(--error);
    font-weight: 700;
    font-size: 1.1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.75rem;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--error);
}

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

.pricing-main {
    display: flex;
    justify-content: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.lifetime-deal {
    max-width: 500px;
    margin: 0 auto;
}

.savings-info {
    margin-top: 1rem;
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.discount-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.guarantee {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
    text-align: center;
}

.lifetime-btn {
    background: var(--gradient-accent) !important;
}

.currency-selector {
    margin-bottom: 1rem;
}

.currency-selector select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    backdrop-filter: blur(10px);
}

.currency-selector option {
    background: var(--primary-dark);
    color: white;
}

.exclusive-bonus {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.bonus-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

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

.bonus-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.bonus-features i {
    color: var(--success);
    font-size: 1.1rem;
}

.price-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 0.75rem;
    margin-top: 1rem;
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--glass-bg), rgba(99, 102, 241, 0.05));
}

.price-comparison {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid var(--error);
    border-radius: 16px;
}

.competitor-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.competitor-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.competitor-amount {
    font-size: 1.5rem;
    color: var(--error);
    font-weight: 700;
    text-decoration: line-through;
}

.our-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.savings-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--success);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.savings-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--success);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.savings-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.plan-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--success);
    font-weight: 600;
}

.lifetime-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--success);
    border-radius: 25px;
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.lifetime-badge i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.plan-features i {
    color: var(--success);
    font-size: 0.9rem;
}

.plan-btn {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(var(--glass-blur));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.plan-btn.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.btn-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-guarantee {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.urgency-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid var(--error);
    border-radius: 10px;
    color: var(--error);
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 3s ease-in-out infinite;
}

.urgency-note i {
    color: var(--warning);
}

/* Special Offer Styles */
.special-offer {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border: 1px solid var(--primary);
    border-radius: 15px;
    text-align: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Customer Success Stories Section */
.customer-success-stories {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(34, 197, 94, 0.2));
    border: 1px solid var(--warning);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    color: var(--warning);
    animation: pulse 2s ease-in-out infinite;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.success-story-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-story-card:hover::before {
    opacity: 1;
}

.success-story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.3);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.company-avatar.ecommerce {
    background: linear-gradient(135deg, var(--success) 0%, var(--secondary) 100%);
}

.company-avatar.agency {
    background: linear-gradient(135deg, var(--warning) 0%, var(--error) 100%);
}

.company-details h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.company-details span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.success-badge-small {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--success);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 600;
}

.story-content {
    margin-bottom: 2rem;
}

.story-quote {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

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

.metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.25rem;
}

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

.story-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.customer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.customer-info strong {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.125rem;
}

.customer-info span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.story-rating .stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Social Proof Stats */
.social-proof-stats {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta .cta-content h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.final-cta .cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.final-cta-btn {
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--warning) 0%, var(--success) 100%);
}

.final-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-guarantee i {
    color: var(--success);
}

/* Responsive Design */
@media (max-width: 768px) {
    .customer-success-stories {
        padding: 4rem 0;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .success-story-card {
        padding: 1.5rem;
    }
    
    .story-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .final-cta .cta-content h3 {
        font-size: 2rem;
    }
    
    .final-cta-btn {
        font-size: 1.1rem;
        padding: 1.25rem 2.5rem;
    }
    
    .story-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-badge-small {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        gap: 0.75rem;
    }
    
    .company-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .story-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .story-quote::before {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: rgba(15, 25, 45, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Brand Section */
.footer-brand-section {
    max-width: 300px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand .footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-community {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Columns */
.footer-column h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

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

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

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-column ul li a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-address i {
    color: var(--primary);
    font-size: 1rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

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

.footer-legal-links a:hover {
    color: var(--text-primary);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand-section {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-links {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-address {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

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

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}



/* Responsive Design for Two Column Features */
@media (max-width: 1200px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid-advanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 1400px) {
    .features-grid-advanced {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .value-props {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        display: none;
    }

    .testimonials {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .hero-container {
        padding: 0 1rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-testimonials {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .scarcity-alert {
        grid-column: 1 / -1;
    }

    .pricing-main {
        order: 1;
    }

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

    .pricing-card.featured {
        transform: none;
    }
    
    .hero-feature {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .hero-feature h3 {
        font-size: 2rem;
    }
    
    .cost-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cost-arrow {
        transform: rotate(90deg);
    }
    
    .feature-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid-advanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-advanced {
        padding: 1.5rem;
    }
    
    .feature-visual {
        height: 150px;
    }
    
    .chart-container {
        height: 150px;
    }
    
    .smtp-connections {
        height: 150px;
    }
    
    .workflow-canvas {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }

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

    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}