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

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

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    background: transparent;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: contrast(200%) brightness(0.8);
}

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

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4f46e5;
}

.cta-button-nav {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4f46e5;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: #4f46e5;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
}

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

/* Workflow Simulation */
.workflow-simulation {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    color: #1f2937;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

/* Workflow Header */
.workflow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.workflow-header h3 {
    font-weight: 600;
    color: #4f46e5;
    font-size: 1.25rem;
}

.workflow-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.status-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Workflow Container */
.workflow-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 300px;
    position: relative;
}

.workflow-column {
    position: relative;
}

.workflow-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.inbound-column h4 {
    color: #10b981;
}

.outbound-column h4 {
    color: #4f46e5;
}

.center-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Source and Destination Nodes */
.source-nodes, .destination-nodes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.source-nodes {
    align-items: flex-end;
}

.destination-nodes {
    align-items: flex-start;
}

.source-node, .destination-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    min-width: 80px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.source-node:hover, .destination-node:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.node-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

/* Platform-specific node styling */
.facebook-source {
    border-color: #1877f2;
}

.google-source {
    border-color: #4285f4;
}

.yelp-source {
    border-color: #af0606;
}

.angie-source {
    border-color: #00a652;
}

.website-source {
    border-color: #4f46e5;
}

.servicetitan-dest {
    border-color: #0066cc;
}

.jobber-dest {
    border-color: #00a651;
}

.workiz-dest {
    border-color: #ff6b35;
}

.housecall-dest {
    border-color: #4285f4;
}

.quickbooks-dest {
    border-color: #0077c5;
}

/* Icon styling for text-based logos */
.yelp-icon, .angie-icon, .servicetitan-icon, .jobber-icon, .workiz-icon, .housecall-icon, .quickbooks-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: white;
}

.yelp-icon { background: #af0606; }
.angie-icon { background: #00a652; }
.servicetitan-icon { background: #0066cc; }
.jobber-icon { background: #00a651; }
.workiz-icon { background: #ff6b35; }
.housecall-icon { background: #4285f4; }
.quickbooks-icon { background: #0077c5; }

/* Central Workaholix Hub */
.workaholix-hub {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 50%;
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.hub-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(79, 70, 229, 0.3);
    border-radius: 50%;
    animation: pulse-ring 3s infinite;
}

.hub-logo img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.hub-label {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.hub-subtitle {
    font-size: 0.625rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.processing-indicator {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.processing-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: processing 1.5s infinite;
}

.processing-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.processing-dot:nth-child(3) {
    animation-delay: 1s;
}

.data-flow-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.flow-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    animation: orbit 4s linear infinite;
}

.flow-particle:nth-child(2) {
    animation-delay: 1.3s;
    background: #f59e0b;
}

.flow-particle:nth-child(3) {
    animation-delay: 2.6s;
    background: #ef4444;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    max-width: 280px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.95);
}

.process-step.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.process-step.processing {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-color: #f59e0b;
    opacity: 1;
    transform: scale(1);
    animation: process-pulse 1.5s infinite;
}

.process-step.completed {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-color: #4f46e5;
    opacity: 0.8;
    transform: scale(0.98);
}

.step-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Current Process Indicator */
.current-process {
    margin-top: 1.5rem;
    padding: 0.75rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 8px;
    text-align: center;
}

.process-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #4f46e5;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.indicator-text {
    font-size: 0.7rem;
    color: #4f46e5;
    font-weight: 500;
}

/* Lead Pulse Animation */
.lead-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.sync-indicator {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f46e5;
    animation: pulse 2s infinite;
}

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    z-index: 5;
    animation: data-flow 3s linear infinite;
}

.inbound-line {
    right: -40px;
    top: 50%;
    width: 80px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.outbound-line {
    left: -40px;
    top: 50%;
    width: 80px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, #4f46e5, transparent);
}

.connection-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20px;
    background: white;
    border-radius: 50%;
    animation: pulse-flow 2s linear infinite;
}

.inbound-line::before {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.outbound-line::before {
    background: #4f46e5;
    box-shadow: 0 0 8px rgba(79, 70, 229, 0.6);
}

/* Activity Feed */
.activity-feed {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.75rem;
}

.activity-item:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-dot.facebook { background: #1877f2; }
.activity-dot.google { background: #4285f4; }
.activity-dot.yelp { background: #af0606; }

.activity-text {
    flex: 1;
    color: #374151;
    font-weight: 500;
}

.activity-time {
    color: #6b7280;
    font-size: 0.7rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes processing {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

@keyframes data-flow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes pulse-flow {
    0% { transform: translateX(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100px); opacity: 0; }
}

@keyframes process-pulse {
    0%, 100% { 
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
        transform: scale(1.02);
    }
}

/* Why Workaholix Section */
.why-workaholix {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
}

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

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

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

.features-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.15);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.5;
}

/* Workflow Section */
.workflow {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.step-visual {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.phone-mockup {
    max-width: 200px;
    margin: 0 auto;
}

.ad-preview {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.ad-preview strong {
    color: #1f2937;
}

.ad-preview p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.mini-cta {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
}

.booking-preview h4 {
    color: #1f2937;
    margin-bottom: 0.75rem;
}

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

.time-option {
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    cursor: pointer;
}

.time-option.selected {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.integration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.flow-item {
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.flow-arrow {
    color: #4f46e5;
    font-size: 1.5rem;
    font-weight: bold;
}

.notification {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    padding: 1rem;
    border-radius: 8px;
}

.notification strong {
    color: #166534;
    display: block;
    margin-bottom: 0.5rem;
}

.notification p {
    color: #166534;
    font-size: 0.875rem;
    margin: 0.25rem 0;
}

.workflow-result {
    text-align: center;
}

.result-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.result-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

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

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

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
}

.result-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: white;
}

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

.integration-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.integration-logo {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-logo:hover {
    border-color: #4f46e5;
    transform: translateY(-4px);
}

.integration-logo img {
    max-width: 100%;
    height: auto;
}

.integration-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    padding: 1rem;
}

.integration-brand svg {
    width: 100%;
    max-width: 120px;
    height: auto;
    transition: all 0.3s ease;
}

.integration-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.integration-logo:hover .integration-brand svg,
.integration-logo:hover .integration-brand img {
    transform: scale(1.05);
}

/* Specific styling for platform logos */
.integration-brand.facebook img {
    filter: none;
}

.integration-brand.google img {
    filter: none;
}

.integration-brand.quickbooks img {
    filter: invert(21%) sepia(100%) saturate(2395%) hue-rotate(202deg) brightness(97%) contrast(97%);
}

.integration-brand.zapier img {
    filter: invert(33%) sepia(91%) saturate(7471%) hue-rotate(14deg) brightness(101%) contrast(103%);
}

.integration-brand.calendar img {
    filter: invert(57%) sepia(43%) saturate(2334%) hue-rotate(88deg) brightness(97%) contrast(89%);
}

.integration-brand.yelp img {
    filter: invert(9%) sepia(93%) saturate(7154%) hue-rotate(357deg) brightness(87%) contrast(118%);
}

/* Platform logo styling for text-based logos */
.platform-logo {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #0066CC;
    transition: all 0.3s ease;
}

.platform-logo.jobber-bg {
    background: #00A651;
}

.platform-logo.workiz-bg {
    background: #FF6B35;
}

.platform-logo.housecall-bg {
    background: #4285F4;
}

.platform-logo.angie-bg {
    background: #00A652;
}

.platform-logo.podium-bg {
    background: #5865F2;
}

.logo-text {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}

.logo-text-small {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
}

.integration-logo:hover .platform-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.custom-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.integration-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonial-featured {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.quote-mark {
    font-size: 4rem;
    color: #4f46e5;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6b7280;
    margin-bottom: 1rem;
}

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

.company-stats .stat {
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.author-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.results-metrics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #6b7280;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-mini strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author-mini span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-button.primary.large {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.cta-button.secondary.large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.check {
    color: #10b981;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand .footer-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    margin-bottom: 1rem;
    background: transparent;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: contrast(200%) brightness(0.8);
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-cta {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-featured {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .workflow-simulation {
        padding: 1rem;
    }
    
    .workflow-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .source-nodes, .destination-nodes {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .connection-line {
        display: none;
    }
    
    .workaholix-hub {
        width: 120px;
        height: 120px;
        padding: 1.5rem;
    }
    
    .process-steps {
        margin-top: 1.5rem;
        max-width: 100%;
    }
    
    .process-step {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .step-text {
        font-size: 0.65rem;
    }
    
    .current-process {
        margin-top: 1rem;
        padding: 0.5rem;
    }
    
    .indicator-text {
        font-size: 0.65rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-logos {
        grid-template-columns: 1fr;
    }
}