/* ===================================
   PREMIUM UI UTILITIES - Homepage V2
   =================================== */

/* Professional shadows - softer with purple tint */
.shadow-premium {
    box-shadow: 0 10px 30px -10px rgba(147, 51, 234, 0.1);
}

/* ===================================
   FEATURE CARDS - Interactive Hover
   =================================== */

/* Base feature card */
.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top gradient bar (hidden by default) */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover state */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: #c4b5fd !important;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Icon wrapper */
.feature-card .icon-wrapper {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Title hover */
.feature-card .card-title {
    transition: color 0.3s ease;
}

.feature-card:hover .card-title {
    color: #7c3aed;
}

/* Learn more link */
.feature-card .learn-more {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 1rem;
    color: #8b5cf6;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.feature-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.feature-card .learn-more svg {
    transition: transform 0.2s ease;
}

.feature-card:hover .learn-more:hover svg {
    transform: translateX(4px);
}

/* Featured card styles */
.feature-card.featured {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    border-color: #c4b5fd;
}

.feature-card.featured::after {
    content: 'Populaire';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Preview box in featured card */
.feature-card .preview-box {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover .preview-box {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Entrance animation states */
.feature-card.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    animation: featureCardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes featureCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered delays */
.feature-card.will-animate:nth-child(1) { animation-delay: 0.05s; }
.feature-card.will-animate:nth-child(2) { animation-delay: 0.1s; }
.feature-card.will-animate:nth-child(3) { animation-delay: 0.15s; }
.feature-card.will-animate:nth-child(4) { animation-delay: 0.2s; }
.feature-card.will-animate:nth-child(5) { animation-delay: 0.25s; }
.feature-card.will-animate:nth-child(6) { animation-delay: 0.3s; }

/* Focus state for accessibility */
.feature-card:focus-within {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-card::before,
    .feature-card .icon-wrapper,
    .feature-card .learn-more,
    .feature-card.will-animate {
        transition: none;
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Legacy bento-card support (kept for compatibility) */
.bento-card {
    @apply transition-all duration-300 ease-out;
}

/* Bento Grid Layout Classes */
.bento-large {
    @apply lg:col-span-2 lg:row-span-2;
}

.bento-medium {
    @apply lg:col-span-2;
}

.bento-small {
    @apply col-span-1;
}

/* ===================================
   INVOICE ANIMATION - Homepage Hero
   =================================== */

/* Initial state for animated rows */
.invoice-row {
    opacity: 0;
    transform: translateX(-20px);
}

/* Animation: slide-in for invoice rows */
@keyframes invoiceSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in {
    animation: invoiceSlideIn 0.4s ease-out forwards;
}

/* Initial state for badge */
.invoice-badge {
    opacity: 0;
    transform: scale(0);
}

/* Animation: pop for badge */
@keyframes invoicePop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-pop {
    animation: invoicePop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Notification Wave style */
.notification-wave {
    position: absolute;
    top: -60px;
    right: -20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    opacity: 0;
    transform: translateX(100%);
    z-index: 10;
    white-space: nowrap;
}

/* Animation: notification slide */
@keyframes notificationSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-notification {
    animation: notificationSlide 0.5s ease-out forwards;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .invoice-row,
    .invoice-badge,
    .notification-wave {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ===================================
   HERO SECTION - Video Background
   =================================== */

/* Hero with video background */
.hero-video-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Hero overlay - solid dark layer for text readability */
.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.80) 50%,
        rgba(0, 0, 0, 0.90) 100%
    );
}

/* Hero text styling for better contrast */
.hero-video-section h1 {
    color: #FFFFFF;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-video-section h1 .text-primary-400 {
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-video-section p {
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.7),
        0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hero badges with shadow for readability */
.hero-video-section .flex.items-center span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-video-section .flex.items-center svg {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

/* CTA buttons in hero */
.hero-video-section a {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Video background positioning */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Alternative centering for videos that don't cover well */
@supports (object-fit: cover) {
    .video-background {
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
    }
}

/* Fallback for mobile - hide video, use gradient */
@media (max-width: 768px) {
    .hero-video-section .video-background {
        display: none;
    }

    .hero-video-section {
        background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    }
}

/* Accessibility - prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .hero-video-section .video-background {
        display: none;
    }

    .hero-video-section {
        background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    }
}

/* ===================================
   BENEFITS SECTION - Static Image Background
   =================================== */

/* Benefits section fallback background (when image not loaded) */
.benefits-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
}

/* ===================================
   GLASSMORPHISM CARDS - Benefits
   =================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.glass-card .glass-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px -4px rgba(139, 92, 246, 0.4);
}

.glass-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card entrance animation - visible by default for accessibility */
.glass-card {
    opacity: 1;
    transform: translateY(0);
}

/* Animation state - applied via JS */
.glass-card.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

.glass-card.animate-in {
    animation: glassCardIn 0.6s ease-out forwards;
}

@keyframes glassCardIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.glass-card.will-animate:nth-child(1) { animation-delay: 0.1s; }
.glass-card.will-animate:nth-child(2) { animation-delay: 0.2s; }
.glass-card.will-animate:nth-child(3) { animation-delay: 0.3s; }
.glass-card.will-animate:nth-child(4) { animation-delay: 0.4s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .glass-card,
    .glass-card.will-animate {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ===================================
   PRICING SECTION - Toggle & Cards
   =================================== */

/* Toggle Switch */
.pricing-toggle .toggle-switch {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-toggle .toggle-switch:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.pricing-toggle .toggle-knob {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Badge -20% pulse animation */
.pricing-toggle .savings-badge {
    animation: savingsPulse 2s ease-in-out infinite;
}

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

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Featured pricing card (Business) */
.pricing-card.featured {
    position: relative;
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-4px);
}

/* Price animation on toggle */
.pricing-card .price {
    transition: transform 0.3s ease, color 0.3s ease;
}

.pricing-card.price-changed .price {
    animation: priceChange 0.4s ease;
}

@keyframes priceChange {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        color: #8b5cf6;
    }
    100% {
        transform: scale(1);
    }
}

/* Period text fade */
.pricing-card .period {
    transition: opacity 0.3s ease;
}

/* Responsive: remove scale on mobile */
@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .pricing-toggle .toggle-knob,
    .pricing-toggle .toggle-switch,
    .pricing-card,
    .pricing-card .price {
        transition: none;
        animation: none;
    }

    .pricing-toggle .savings-badge {
        animation: none;
    }
}

/* ===================================
   PRICING V2 - FreshBooks Style
   =================================== */

/* Toggle Buttons (replacing switch) */
.pricing-toggle-buttons {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 9999px;
    padding: 4px;
    position: relative;
}

.pricing-toggle-btn {
    position: relative;
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    color: #6b7280;
    z-index: 1;
}

.pricing-toggle-btn.active {
    color: white;
}

/* Sliding background pill */
.pricing-toggle-buttons .toggle-pill {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 9999px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.pricing-toggle-buttons.annual .toggle-pill {
    transform: translateX(100%);
}

/* Savings badge above toggle */
.pricing-savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    animation: savingsBounce 2s ease-in-out infinite;
}

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

/* Pricing cards V2 - equal heights */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card-v2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 1.5rem;
    border: 2px solid #e5e7eb;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #c4b5fd;
}

/* Card header */
.pricing-card-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.pricing-card-v2.featured .pricing-card-header {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-top-left-radius: calc(1.5rem - 2px);
    border-top-right-radius: calc(1.5rem - 2px);
}

.pricing-card-v2.featured .pricing-card-header h3 {
    color: white;
}

.pricing-card-v2.featured .pricing-card-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card-v2.featured .pricing-card-header .price {
    color: white;
}

.pricing-card-v2.featured .pricing-card-header .period {
    color: rgba(255, 255, 255, 0.8);
}

/* Card body - flex-grow for equal heights */
.pricing-card-body {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-card-body ul {
    flex: 1;
}

/* Card footer */
.pricing-card-footer {
    padding: 0 2rem 2rem;
    margin-top: auto;
}

/* Featured card special styling */
.pricing-card-v2.featured {
    border-color: #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 10;
}

.pricing-card-v2.featured:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

/* Popular badge */
.pricing-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    z-index: 20;
}

/* ===================================
   FAQ ACCORDION - Animated
   =================================== */

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #c4b5fd;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08);
}

.faq-item.faq-item-active {
    border-color: #8b5cf6;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
}

/* FAQ Question (trigger) */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #faf5ff;
}

.faq-item.faq-item-active .faq-question {
    color: #7c3aed;
}

/* FAQ Icon */
.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #9ca3af;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    flex-shrink: 0;
}

.faq-item.faq-item-active .faq-icon {
    color: #8b5cf6;
}

.faq-icon.rotate-45 {
    transform: rotate(45deg);
}

/* FAQ Content (answer) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Reduced motion for FAQ */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-question,
    .faq-icon,
    .faq-content,
    .pricing-toggle-buttons .toggle-pill,
    .pricing-card-v2,
    .pricing-savings-badge {
        transition: none;
        animation: none;
    }
}

/* ===================================
   MOBILE RESPONSIVE - Homepage
   =================================== */

/* Mobile pricing cards - stacked vertically */
.pricing-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
}

.pricing-scroll-container > * {
    width: 100%;
}

/* Tablet - 2 columns */
@media (min-width: 768px) {
    .pricing-scroll-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 0;
    }

    .pricing-scroll-container > * {
        width: calc(50% - 0.75rem);
        max-width: 400px;
    }
}

/* Desktop - 3 columns grid */
@media (min-width: 1024px) {
    .pricing-scroll-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .pricing-scroll-container > * {
        width: 100%;
        max-width: none;
    }
}

/* Mobile-first typography scaling */
.text-responsive-hero {
    font-size: clamp(1.875rem, 5vw, 3.75rem);
    line-height: 1.1;
}

.text-responsive-section {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

/* Mobile CTA sticky bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
}

@media (min-width: 768px) {
    .mobile-cta-bar {
        display: none;
    }
}

/* Responsive grid adjustments */
@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

/* Mobile feature cards */
@media (max-width: 640px) {
    .feature-card {
        padding: 1.25rem;
    }

    .feature-card .icon-wrapper {
        width: 2.5rem;
        height: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }
}

/* Mobile glass cards */
@media (max-width: 640px) {
    .glass-card {
        padding: 1.25rem;
    }

    .glass-card .glass-icon {
        width: 48px;
        height: 48px;
    }

    .glass-card h3 {
        font-size: 1.125rem;
    }

    .glass-card p {
        font-size: 0.875rem;
    }
}

/* Mobile pricing cards */
@media (max-width: 640px) {
    .pricing-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .pricing-card-body {
        padding: 1rem 1.5rem;
    }

    .pricing-card-footer {
        padding: 0 1.5rem 1.5rem;
    }

    .pricing-card-v2 .price {
        font-size: 2.5rem;
    }
}

/* Mobile FAQ */
@media (max-width: 640px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .faq-content-inner {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }
}

/* ===================================
   SOCIAL PROOF - Awards Badges
   =================================== */

.award-badge {
    padding: 0.25rem;
}

.award-badge-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-badge:hover .award-badge-inner {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #c4b5fd;
}

.award-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.award-badge:hover .award-icon {
    transform: scale(1.1);
}

.award-text {
    display: flex;
    flex-direction: column;
}

.award-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
}

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

/* ===================================
   SOCIAL PROOF - Logo Slider
   =================================== */

.logo-slider-container {
    position: relative;
    overflow: hidden;
}

.logo-slider-mask-left,
.logo-slider-mask-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.logo-slider-mask-left {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-slider-mask-right {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.logo-slider-track {
    display: flex;
    gap: 2.5rem;
    animation: logoSlide 40s linear infinite;
}

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

.logo-slider-container:hover .logo-slider-track {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
}

/* Premium Logo Placeholder */
.logo-placeholder-premium {
    width: 140px;
    height: 70px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.logo-placeholder-premium:hover {
    filter: grayscale(0%);
    opacity: 1;
    background: #f3e8ff;
    border-color: #c4b5fd;
    transform: scale(1.05);
}

.logo-initials {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6b7280;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.logo-placeholder-premium:hover .logo-initials {
    color: #7c3aed;
}

.logo-sector {
    font-size: 0.625rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.logo-placeholder-premium:hover .logo-sector {
    color: #8b5cf6;
}

/* Legacy support */
.logo-placeholder {
    width: 120px;
    height: 50px;
    background: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.logo-placeholder:hover {
    filter: grayscale(0%);
    opacity: 1;
    background: #ede9fe;
}

.logo-placeholder span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6b7280;
    transition: color 0.3s ease;
}

.logo-placeholder:hover span {
    color: #7c3aed;
}

/* ===================================
   SOCIAL PROOF - Rating Badges
   =================================== */

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.rating-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   SOCIAL PROOF - Testimonials Carousel
   =================================== */

.testimonials-carousel {
    position: relative;
    margin: 0 -0.75rem;
}

.testimonials-slides {
    display: flex;
}

.testimonial-slide {
    padding: 0 0.75rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    border-color: #c4b5fd;
}

/* Premium Testimonial Card */
.testimonial-card-premium {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.testimonial-card-premium:hover {
    transform: translateY(-4px);
    border-color: #c4b5fd;
}

/* Featured Testimonial */
.featured-testimonial {
    position: relative;
}

.featured-testimonial::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #8b5cf6);
    border-radius: 1.625rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-testimonial:hover::before {
    opacity: 1;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    width: 3rem;
    height: 3rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.carousel-nav-btn:hover:not(:disabled) {
    background: #f3f4f6;
    border-color: #c4b5fd;
    color: #7c3aed;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.carousel-nav-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.carousel-nav-btn:disabled {
    cursor: not-allowed;
}

/* Hide nav buttons on mobile */
@media (max-width: 640px) {
    .carousel-nav-btn {
        display: none;
    }
}

/* Carousel Dots */
.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #d1d5db;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: #9ca3af;
}

.carousel-dot.active {
    background: #8b5cf6;
    width: 1.5rem;
    border-radius: 0.25rem;
}

.carousel-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}

/* ===================================
   SOCIAL PROOF - Stats Section
   =================================== */

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-variant-numeric: tabular-nums;
}

/* Premium Stats Card */
.stat-card-premium {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card-premium:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card-premium:hover::before {
    transform: translateX(100%);
}

.stat-icon-premium {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.stat-card-premium:hover .stat-icon-premium {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
}

.stat-value-premium {
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.025em;
}

/* Stat card entrance animation */
.stat-card.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.animate-in {
    animation: statCardIn 0.6s ease-out forwards;
}

@keyframes statCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered delays for stat cards */
.stat-card.will-animate:nth-child(1) { animation-delay: 0.1s; }
.stat-card.will-animate:nth-child(2) { animation-delay: 0.2s; }
.stat-card.will-animate:nth-child(3) { animation-delay: 0.3s; }
.stat-card.will-animate:nth-child(4) { animation-delay: 0.4s; }

/* Premium stat cards animation */
.stat-card-premium.will-animate:nth-child(1) { animation-delay: 0.1s; }
.stat-card-premium.will-animate:nth-child(2) { animation-delay: 0.25s; }
.stat-card-premium.will-animate:nth-child(3) { animation-delay: 0.4s; }
.stat-card-premium.will-animate:nth-child(4) { animation-delay: 0.55s; }

/* Reduced motion for social proof */
@media (prefers-reduced-motion: reduce) {
    .logo-slider-track {
        animation: none;
    }

    .rating-badge,
    .carousel-nav-btn,
    .carousel-dot,
    .stat-card,
    .stat-card-premium,
    .testimonial-card,
    .testimonial-card-premium,
    .award-badge-inner,
    .award-icon,
    .logo-placeholder-premium {
        transition: none;
    }

    .stat-card.will-animate,
    .stat-card-premium.will-animate {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .rating-badge:hover,
    .stat-card:hover {
        transform: none;
    }
}
