/* OneDesk Landing Page Styles - Moderne avec couleurs vives */

/* Reset et variables - COULEURS VIVES */
:root {
    --primary-blue: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    --success-green: #10B981;
    --success-dark: #059669;
    --warning-orange: #F59E0B;
    --danger-red: #EF4444;
    --purple-vivid: #8B5CF6;
    --pink-vivid: #EC4899;
    --text-dark: #1a1a1a;
    --text-gray: #4B5563;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-lighter: #ffffff;
    --border-light: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-color: 0 10px 40px rgba(59, 130, 246, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Hero Section - VIVE */
.hero-modern {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-vivid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    color: white;
}

.btn-secondary-modern {
    background: white;
    color: var(--primary-blue);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-modern:hover {
    background: var(--primary-blue);
    color: white;
}

/* Screenshot mockup - COULEURS VIVES */
.hero-screenshot {
    flex: 1;
    position: relative;
}

.screenshot-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    overflow: hidden;
    border: 1px solid var(--primary-light);
}

.screenshot-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-vivid));
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.screenshot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
}

.screenshot-body {
    padding: 28px;
    background: linear-gradient(180deg, #F9FAFB 0%, #F3F4F6 100%);
}

.kpi-grid-mock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.kpi-card-mock {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.kpi-card-mock:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.kpi-card-mock.green {
    border-left-color: var(--success-green);
    background: linear-gradient(135deg, #FFFFFF 0%, #ECFDF5 100%);
}
.kpi-card-mock.orange {
    border-left-color: var(--warning-orange);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBEB 100%);
}
.kpi-card-mock.purple {
    border-left-color: var(--purple-vivid);
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F3FF 100%);
}

.kpi-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.chart-mock {
    background: white;
    border-radius: 12px;
    padding: 24px;
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.bar-mock {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-dark));
    border-radius: 8px 8px 0 0;
    transition: all 0.3s;
}

.bar-mock:hover {
    background: linear-gradient(180deg, var(--success-green), var(--success-dark));
    transform: scaleY(1.05);
}

/* Section Social Proof - VIVE */
.social-proof {
    background: white;
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.social-proof h3 {
    text-align: center;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-weight: 700;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.logo-item {
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-gray);
    transition: all 0.3s;
}

.logo-item:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}

/* Features avec screenshots alternés - VIVES */
.feature-section {
    padding: 100px 0;
}

.feature-section:nth-child(even) {
    background: var(--bg-light);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-vivid));
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.feature-tag.green {
    background: linear-gradient(135deg, var(--success-green), var(--success-dark));
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.feature-tag.orange {
    background: linear-gradient(135deg, var(--warning-orange), #D97706);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.feature-tag.purple {
    background: linear-gradient(135deg, var(--purple-vivid), #7C3AED);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.feature-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.feature-list li {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.feature-list li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: 900;
    font-size: 1.4rem;
    width: 28px;
    height: 28px;
    background: #ECFDF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual {
    flex: 1;
}

/* Screenshot variants - VIVES */
.screenshot-calendar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    padding: 28px;
    border: 2px solid var(--primary-light);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-blue);
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.calendar-day:hover {
    border-color: var(--primary-blue);
    background: #EFF6FF;
    transform: scale(1.05);
}

.calendar-day.booked {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.calendar-day.available {
    background: linear-gradient(135deg, var(--success-green), var(--success-dark));
    color: white;
    border-color: var(--success-green);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Task board mockup - VIVE */
.task-board {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    padding: 28px;
    border: 2px solid var(--primary-light);
}

.task-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.task-column {
    background: linear-gradient(180deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid var(--border-light);
}

.task-column-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.task-card {
    background: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.task-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.task-card.high {
    border-left-color: var(--danger-red);
    background: linear-gradient(135deg, #FFFFFF 0%, #FEF2F2 100%);
}
.task-card.medium {
    border-left-color: var(--warning-orange);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBEB 100%);
}

/* Document signature mockup */
.signature-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    padding: 28px;
    border: 2px solid #C4B5FD;
}

.signature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--purple-vivid);
}

.signature-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--purple-vivid);
}

.signature-badge {
    background: linear-gradient(135deg, var(--success-green), var(--success-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.signature-doc {
    background: #FAFAFA;
    border: 2px dashed #D1D5DB;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    min-height: 180px;
}

.signature-line {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--purple-vivid) 50%, transparent 100%);
    margin: 12px 0;
    opacity: 0.3;
}

.signature-field {
    background: white;
    border: 2px solid var(--purple-vivid);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--purple-vivid);
}

/* iCal sync mockup */
.ical-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
    padding: 28px;
    border: 2px solid #6EE7B7;
}

.ical-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--success-green);
}

.ical-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-green), var(--success-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.ical-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--success-green);
}

.sync-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--success-green);
    margin: 20px 0;
}

.calendar-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.calendar-badge {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 2px solid var(--success-green);
    color: var(--success-dark);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* Properties list mockup */
.properties-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
    padding: 28px;
    border: 2px solid #FCD34D;
}

.property-item {
    background: linear-gradient(135deg, #FFFFFF, #FFFBEB);
    border: 2px solid var(--warning-orange);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.property-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.property-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--warning-orange), #D97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.property-info {
    flex: 1;
}

.property-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.property-stats {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Testimonials - VIVES */
.testimonials {
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-vivid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-vivid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.author-info h4 {
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Pricing moderne - TRÈS VIVE */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 3px solid var(--border-light);
    border-radius: 20px;
    padding: 44px 36px;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    border-width: 4px;
    background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--success-green), var(--success-dark));
    color: white;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-vivid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 28px 0;
}

.pricing-price span {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 36px 0;
}

.pricing-features li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
}

.pricing-features li::before {
    content: '✓';
    color: white;
    background: var(--success-green);
    font-weight: 900;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* CTA final - TRÈS VIVE */
.cta-final {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple-vivid));
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,80C96,64,192,32,288,32C384,32,480,64,576,74.7C672,85,768,75,864,58.7C960,43,1056,21,1152,16C1248,11,1344,21,1392,26.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.cta-final h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    position: relative;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-final p {
    font-size: 1.4rem;
    margin-bottom: 44px;
    opacity: 0.95;
    position: relative;
}

.btn-cta-white {
    background: white;
    color: var(--primary-blue);
    padding: 20px 48px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    position: relative;
}

.btn-cta-white:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .feature-text h2 {
        font-size: 2.2rem;
    }

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

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 6px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        text-align: center;
    }

    .kpi-grid-mock {
        grid-template-columns: 1fr;
    }

    .cta-final h2 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}
