/**
 * LINKADEO VITRINE - Site Vitrine Stylesheet
 * Charte graphique complète pour le site vitrine
 * Couleurs: Blue #499ef1 / Purple #7c6af5 / Accent #f7b518
 */

/* ============================================
   LOADER - Animation de chargement SPECTACULAIRE
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.page-hero {
    padding-top: 160px !important;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Particules de fond animées */
.page-loader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(247, 181, 24, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 181, 24, 0.15) 0%, transparent 70%);
    animation: pulseBackground 3s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.loader-content {
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
}

/* Conteneur du cadeau avec effet de lueur */
.loader-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: giftFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(247, 181, 24, 0.5));
}

.loader-icon img {
    width: 120px;
    height: 120px;
    animation: giftSpin 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* Animation de flottement du cadeau */
@keyframes giftFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 10px 40px rgba(247, 181, 24, 0.5));
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        filter: drop-shadow(0 20px 60px rgba(247, 181, 24, 0.8));
    }
}

/* Animation de rotation douce */
@keyframes giftSpin {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Cercle de lueur pulsante autour du cadeau */
.loader-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(247, 181, 24, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

/* Particules magiques qui s'échappent */
.loader-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #f7b518;
    border-radius: 50%;
    box-shadow:
        -20px 30px 0 #f7b518,
        20px 25px 0 #fff,
        -30px 50px 0 #fff,
        30px 45px 0 #f7b518,
        0px 60px 0 #fff,
        -40px 70px 0 #f7b518,
        40px 65px 0 #fff;
    animation: sparkles 2s ease-in-out infinite;
}

@keyframes sparkles {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-40px);
    }
}

.loader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: textGlow 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes textGlow {
    0%, 100% {
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(247, 181, 24, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

/* Plus de second cadeau - supprimé */
.loader-spinner {
    display: none;
}

/* ============================================
   PAGE HERO - En-tête de page
   ============================================ */
.page-hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg,
        rgba(73, 158, 241, 0.05) 0%,
        rgba(245, 158, 11, 0.05) 100%
    );
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(73, 158, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-hero .gradient-text {
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #499ef1;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(73, 158, 241, 0.15);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
    border: 1px solid rgba(73, 158, 241, 0.2);
}

.hero-badge span:first-child {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.9375rem;
        padding: 0.5rem 1rem;
    }

    .hero-badge span:first-child {
        font-size: 1.25rem;
    }
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.hero-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #64748b;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(73, 158, 241, 0.2);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 0;
    position: relative;
}

.section--gray {
    background: #fafafa;
}

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

.section__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section__subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   FEATURE CARDS - Cartes de fonctionnalités
   ============================================ */
.features-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

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

.feature-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(73, 158, 241, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(73, 158, 241, 0.25);
}

.feature-card--large {
    padding: 2.5rem;
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    box-shadow: 0 8px 24px rgba(73, 158, 241, 0.25);
}

.feature-card__icon--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.feature-card__icon--purple {
    background: #f8f9fa;
    color: #8b5cf6;
}

.feature-card__icon--green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-card__icon--gold {
    background: linear-gradient(135deg, #f7b518 0%, #e5a316 100%);
}

.feature-card__icon--pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-card__icon--red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.feature-card__icon--yellow {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

.feature-card__icon--indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.feature-card__icon--teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.feature-list li {
    /*padding: 0.5rem 0;*/
    color: #64748b;
    font-size: 0.9375rem;
}

.feature-list li::before {
    content: '✓';
    margin-right: 0.5rem;
    color: #10b981;
    font-weight: 700;
}

/* ============================================
   CASE CARDS - Cartes de cas d'usage
   ============================================ */
.cases-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.case-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(73, 158, 241, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(73, 158, 241, 0.2);
}

.case-card--featured {
    grid-column: span 1;
}

.case-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1f5f9;
}

.case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-card__image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .case-card__image {
        aspect-ratio: 4 / 3;
    }
}

.case-card__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.case-card__tag--services { color: #3b82f6; }
.case-card__tag--rh { color: #499ef1; }
.case-card__tag--marketing { color: #f7b518; }
.case-card__tag--sales { color: #10b981; }
.case-card__tag--retail { color: #ec4899; }

.case-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-card__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.case-card__challenge,
.case-card__results,
.case-card__excerpt {
    margin-bottom: 1rem;
}

.case-card__challenge h4,
.case-card__results h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #499ef1;
    margin-bottom: 0.5rem;
}

.case-card__challenge p,
.case-card__results p,
.case-card__excerpt p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

.case-card__quote {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.case-card__quote p {
    font-style: italic;
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.case-card__quote cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1e293b;
}

/* ============================================
   PRICING CARDS - Cartes de tarification
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(73, 158, 241, 0.12);
}

.pricing-card--highlighted {
    border-color: #499ef1;
    box-shadow: 0 8px 30px rgba(73, 158, 241, 0.2);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(73, 158, 241, 0.3);
    max-width: 90%;
    text-align: center;
}

.pricing-badge--gray {
    background: #64748b;
}

@media (max-width: 768px) {
    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
        top: -12px;
        max-width: 85%;
    }
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.pricing-description {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-limit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-included {
    color: #1e293b;
}

.feature-excluded {
    color: #94a3b8;
}

.pricing-limitations {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.limitations-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
}

.pricing-note p {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.pricing-note a {
    color: #499ef1;
    font-weight: 600;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.comparison-table thead {
    background: #fafafa;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th.highlighted {
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: #499ef1;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1e293b;
}

.comparison-table td.highlighted {
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    padding: 3rem 0;
}

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

.stat-card {
    text-align: center;
    color: white;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

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

.cta-features {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(73, 158, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(73, 158, 241, 0.4);
}

.btn-secondary {
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #499ef1;
    color: #499ef1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(73, 158, 241, 0.15);
}

.btn-ghost {
    background: transparent;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.btn-ghost:hover {
    background: rgba(73, 158, 241, 0.05);
    border-color: #499ef1;
    color: #499ef1;
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-ghost-white:hover {
    background: white;
    color: #499ef1;
    border-color: white;
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-back {
    margin: 2rem 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 1.5rem 0;
    background: #fafafa;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #499ef1;
}

.breadcrumb__separator {
    margin: 0 0.5rem;
    color: #cbd5e1;
}

/* ============================================
   CASE DETAIL PAGES
   ============================================ */
.case-detail-hero {
    padding: 3rem 0;
}

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

.case-section {
    padding: 3rem 0;
}

.case-section--highlight {
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 20px;
}

.case-section--results {
    background: #fafafa;
    padding: 3rem 0;
    margin: 3rem 0;
}

.case-section--quote {
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    padding: 4rem 0;
    color: white;
}

.case-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.case-section--quote h2 {
    color: white;
}

.challenge-list,
.solution-steps {
    list-style: none;
    padding: 0;
}

.challenge-list li,
.solution-steps li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: #475569;
}

.solution-steps {
    counter-reset: step-counter;
}

.solution-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.solution-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.solution-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-left: 4px solid #499ef1;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.results-narrative {
    margin-top: 2rem;
}

.results-narrative p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
}

.results-narrative strong {
    color: #1e293b;
    font-weight: 700;
}

.quote-large {
    max-width: 800px;
    margin: 0 auto;
}

.quote-large p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.quote-large cite {
    font-style: normal;
    font-weight: 700;
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ============================================
   TAG SYSTEM
   ============================================ */
.tag {
    display: inline-flex;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag--services {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.tag--rh {
    background: rgba(73, 158, 241, 0.1);
    color: #499ef1;
}

.tag--marketing {
    background: rgba(247, 181, 24, 0.1);
    color: #f7b518;
}

.tag--sales {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.tag--retail {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 4rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(180deg, #499ef1 0%, #7c6af5 100%);
    opacity: 0.3;
}

.process-step__number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(73, 158, 241, 0.3);
}

.process-step__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.process-step__content p {
    color: #64748b;
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* ============================================
   FORMS
   ============================================ */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.form-header p {
    color: #64748b;
    font-size: 1.125rem;
}

.partner-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #D1D5DB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
    color: #111827;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #9CA3AF;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #499ef1;
    box-shadow: 0 0 0 3px rgba(73, 158, 241, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6B7280;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
    line-height: 1.6;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

/* ============================================
   FAQ
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(73, 158, 241, 0.1);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   USE CASE ROW
   ============================================ */
.use-case-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.use-case-row--reverse {
    direction: rtl;
}

.use-case-row--reverse > * {
    direction: ltr;
}

.use-case-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.use-case-content .lead {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 1.0625rem;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.use-case-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.section--testimonials {
    background: #fafafa;
}

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

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

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #64748b;
}

/* ============================================
   COMING SOON PAGE
   ============================================ */
.coming-soon {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 50%, rgba(73, 158, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.coming-soon__content {
    text-align: center;
    max-width: 600px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.coming-soon__content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.coming-soon__content p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.coming-soon__icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.coming-soon__countdown {
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #64748b;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .case-hero__grid,
    .use-case-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .features-grid-2,
    .features-grid-3,
    .features-grid-4,
    .cases-grid-2,
    .cases-grid-3,
    .pricing-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
