/* Force purple text for zen time metric - highest specificity */
.zen-side .process-header.zen-header .time-metric .metric-value,
.zen-side .process-header.zen-header .time-metric .metric-label {
    color: var(--primary-purple) !important;
}.zen-side .calendar-container {
    border: 2px solid var(--primary-purple);
}/* Contentflow Landing Page Styles */

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

:root {
    --primary-purple: #6B46C1;
    --deep-purple: #553C9A;
    --light-purple: #8B5CF6;
    --coral: #FF6B6B;
    --light-coral: #FF8E8E;
    --dark-coral: #E53E3E;
    --white: #ffffff;
    --off-white: #fafbfc;
    --light-gray: #f7fafc;
    --medium-gray: #a0aec0;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --border: rgba(45, 55, 72, 0.1);
    --shadow: rgba(107, 70, 193, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-purple), var(--coral));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--text-dark);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-purple), var(--coral));
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-cta {
    background: linear-gradient(135deg, var(--primary-purple), var(--coral)) !important;
    color: white !important;
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 1rem !important;
    border: none !important;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(45, 55, 72, 0.1);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
    display: block;
    color: var(--text-medium);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary-purple);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
    display: flex;
    align-items: center;
    padding: 8rem 2.5rem 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0rem;
    align-items: center;
    position: relative;
    z-index: 2;
}


.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 24px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--light-coral);
}

.hero h1 {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.375rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn-primary {
    padding: 1.125rem 2.25rem;
    background: linear-gradient(135deg, var(--coral), var(--light-coral));
    border: none;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    padding: 1.125rem 2.25rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Dashboard Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dashboard-container {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header {
    background: var(--off-white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.dashboard-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
}

.dashboard-status {
    color: var(--coral);
    font-size: 0.875rem;
    font-weight: 500;
}

.dashboard-content {
    padding: 2rem;
    background: white;
    min-height: 320px;
}

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

.metric-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.1);
}

.metric-title {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metric-value {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-change {
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 600;
}

.activity-feed {
    background: var(--off-white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.activity-title {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.activity-platform {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-purple), var(--coral));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    font-weight: bold;
}

.activity-text {
    flex: 1;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.activity-time {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* Social Proof Section */
/* .social-proof {
    padding: 4rem 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.social-proof-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.social-proof h3 {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logo {
    color: var(--medium-gray);
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
    color: var(--primary-purple);
} */

/* Problem Section - Streamlined */
.problem {
    padding: 4rem 0;
    background: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(107, 70, 193, 0.1);
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Calendar Comparison Styles - Streamlined Version */
.process-comparison {
    margin-top: 2rem;
    max-height: 70vh;
    overflow: hidden;
}

.flow-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
    max-height: 65vh;
}

.process-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 65vh;
    overflow: hidden;
}

/* Faded/outdated effect for chaos side */
.chaos-side {
    opacity: 0.75;
    filter: grayscale(20%) brightness(0.9);
    position: relative;
}

.chaos-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    border-radius: 12px;
    z-index: 1;
}

.chaos-side > * {
    position: relative;
    z-index: 2;
}

/* Highlighted/modern effect for zen side */
.zen-side {
    position: relative;
}

.zen-side > * {
    position: relative;
    z-index: 3;
}

/* Streamlined Process Headers */
.process-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.chaos-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
}

.zen-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--coral));
    border: 2px solid transparent;
    background-clip: padding-box;
    color: white;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-emoji {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.header-text {
    text-align: left;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.chaos-header .process-title {
    color: #dc2626;
}

.zen-header .process-title {
    color: white;
}

.zen-header .process-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.zen-header .time-metric {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.zen-header .metric-value {
    color: var(--primary-purple) !important;
}

.zen-header .metric-label {
    color: var(--primary-purple) !important;
}

.process-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

/* Time Metrics in Headers */
.time-metric {
    text-align: right;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.time-metric .metric-value {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
}

.chaos-metric .metric-value {
    color: #dc2626;
}

.zen-metric .metric-value {
    color: white;
}

.zen-metric .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

.time-metric .metric-label {
    font-size: 0.65rem;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Calendar Styles */
.calendar-container {
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border);
    overflow: hidden;
    height: 100%;
    max-height: 45vh;
    display: flex;
    flex-direction: column;
}

.calendar-header {
    padding: 1rem;
    border-bottom: 2px solid var(--border);
    background: var(--off-white);
    flex-shrink: 0;
}

.calendar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.calendar-date {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.calendar-grid {
    padding: 0.75rem;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0.5rem;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.time-column {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.time-slot {
    font-size: 0.7rem;
    color: var(--text-light);
    height: 2.5rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.events-column {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
}

.calendar-event {
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.calendar-event:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Chaos Calendar Events */
.chaos-side .calendar-event {
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

.chaos-event-1 { 
    background: #fee2e2; 
    border-left: 4px solid #dc2626; 
    color: #dc2626;
    animation-delay: 0.1s;
}
.chaos-event-2 { 
    background: #fef3c7; 
    border-left: 4px solid #d97706; 
    color: #d97706;
    animation-delay: 0.2s;
}
.chaos-event-3 { 
    background: #e0e7ff; 
    border-left: 4px solid #2563eb; 
    color: #2563eb;
    animation-delay: 0.3s;
}
.chaos-event-4 { 
    background: #f3e8ff; 
    border-left: 4px solid #9333ea; 
    color: #9333ea;
    animation-delay: 0.4s;
}
.chaos-event-5 { 
    background: #fce7f3; 
    border-left: 4px solid #ec4899; 
    color: #ec4899;
    animation-delay: 0.5s;
}
.chaos-event-6 { 
    background: #ecfdf5; 
    border-left: 4px solid #10b981; 
    color: #10b981;
    animation-delay: 0.6s;
}
.chaos-event-7 { 
    background: #fef2f2; 
    border-left: 4px solid #ef4444; 
    color: #ef4444;
    animation-delay: 0.7s;
}
.chaos-event-8 { 
    background: #fffbeb; 
    border-left: 4px solid #f59e0b; 
    color: #f59e0b;
    animation-delay: 0.8s;
}

/* Zen Calendar Events */
.zen-side .calendar-event {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.zen-event-1 {
    background: rgba(107, 70, 193, 0.1);
    border-left: 4px solid var(--primary-purple);
    color: var(--primary-purple);
}

.zen-event-2 {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--coral);
    color: var(--coral);
}

.zen-event-1 { animation-delay: 0.2s; }
.zen-event-2 { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.event-title {
    flex: 1;
    font-weight: 600;
}

.event-tool {
    font-size: 0.6rem;
    opacity: 0.8;
    font-weight: 400;
}

.event-duration {
    font-size: 0.6rem;
    opacity: 0.7;
    margin-left: 0.5rem;
}

/* Stress indicators for chaos side */
.chaos-side .calendar-event::after {
    content: '';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.6;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.transformation-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    min-height: 400px;
    max-height: 65vh;
}

@media (max-width: 768px) {
    .process-comparison {
        max-height: none;
        overflow: visible;
    }
    
    .flow-container {
        max-height: none;
    }
    
    .process-side {
        max-height: none;
    }
    
    .calendar-container {
        max-height: 50vh;
    }
    
    .process-header {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-content {
        align-items: center;
    }
    
    .time-metric {
        text-align: center;
    }
}

.transform-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 6px 16px var(--shadow);
    animation: pulse 2s ease-in-out infinite;
    margin: 1rem 0;
    cursor: pointer;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.flow-arrow {
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--coral));
    flex: 1;
    margin: 0.5rem 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.flow-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    animation: flow 2s ease-in-out infinite;
}

@keyframes flow {
    0% { transform: translateY(-50px); }
    100% { transform: translateY(200px); }
}

/* Animation delays for staggered effect */
.flow-step:nth-child(1) { animation-delay: 0.1s; }
.flow-step:nth-child(2) { animation-delay: 0.2s; }
.flow-step:nth-child(3) { animation-delay: 0.3s; }
.flow-step:nth-child(4) { animation-delay: 0.4s; }
.flow-step:nth-child(5) { animation-delay: 0.5s; }

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--off-white);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.05), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--coral));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px var(--shadow);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-benefits li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-benefits li::before {
    content: '•';
    color: var(--coral);
    font-weight: bold;
    margin-top: 0.125rem;
}

/* Pricing Preview */
.pricing-preview {
    padding: 8rem 0;
    background: white;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: left;
}

.pricing-card.popular {
    background: white;
    border-color: var(--primary-purple);
    transform: scale(1.02);
    box-shadow: 0 12px 40px var(--shadow);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--coral));
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px var(--shadow);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--primary-purple), var(--coral));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 4px 12px var(--shadow);
}

.pricing-card:not(.popular) .pricing-badge {
    background: var(--medium-gray);
    box-shadow: none;
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.pricing-features li::before {
    content: '✓';
    color: var(--coral);
    font-weight: bold;
    margin-top: 0.1rem;
}

.pricing-features .highlight {
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    margin-top: 2rem;
}

.pricing-card:not(.popular) .pricing-cta {
    background: var(--primary-purple);
    color: white;
    border: 2px solid var(--primary-purple);
}

.pricing-card:not(.popular) .pricing-cta:hover {
    background: var(--deep-purple);
    transform: translateY(-2px);
}

.pricing-card.popular .pricing-cta {
    background: linear-gradient(135deg, var(--coral), var(--light-coral));
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.pricing-card.popular .pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 2rem;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background: transparent;
    color: white;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--coral), var(--light-coral));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: #e5e5e5;
    padding: 4rem 0 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    color: #718096;
}

.footer-bottom a {
    color: var(--coral);
    text-decoration: none;
}

/* Responsive updates */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .flow-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .transformation-divider {
        min-height: auto;
        flex-direction: row;
        padding: 2rem 0;
    }

    .flow-arrow {
        width: 100px;
        height: 4px;
        margin: 0 1rem;
    }

    .flow-arrow::before {
        width: 20px;
        height: 100%;
        animation: flowHorizontal 2s ease-in-out infinite;
    }

    @keyframes flowHorizontal {
        0% { transform: translateX(-100px); }
        100% { transform: translateX(200px); }
    }

    .transform-icon {
        margin: 0 2rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Mobile-friendly process headers */
    .process-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 1rem;
        min-height: auto;
        height: auto;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .process-emoji {
        font-size: 1.25rem;
    }

    .transform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
        max-width: 400px;
    }

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

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .section-header,
    .problem-container,
    .features-container,
    .pricing-container,
    .cta-container {
        padding: 0 1.5rem;
    }

    .company-logos {
        gap: 2rem;
    }

    /* Smaller headers on mobile */
    .process-header {
        padding: 0.75rem 1rem;
    }

    .process-title {
        font-size: 1rem;
    }

    .process-subtitle {
        font-size: 0.7rem;
    }

    .time-metric .metric-value {
        font-size: 0.9rem;
    }

    .time-metric .metric-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .feature-card,
    .pricing-card {
        padding: 2rem;
    }

    .process-header {
        padding: 0.5rem 0.75rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .header-content {
        gap: 0.25rem;
    }

    .process-title {
        font-size: 0.9rem;
    }

    .process-subtitle {
        font-size: 0.65rem;
    }

    .time-metric {
        padding: 0.4rem 0.6rem;
    }

    .time-metric .metric-value {
        font-size: 0.8rem;
    }

    .time-metric .metric-label {
        font-size: 0.55rem;
    }
}