        /* ============================================
           CARTE DE VISITE - Page Styles
           ============================================ */

        .vcard-page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 100px 24px 60px;
            position: relative;
            overflow-x: hidden;
        }

        /* Background mesh - matches hero */
        .vcard-page::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-mesh);
            z-index: -2;
        }

        [data-theme="light"] .vcard-page::before {
            background: var(--gradient-subtle);
        }

        .vcard-page::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 70%, rgba(0, 180, 216, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(6, 214, 160, 0.04) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* ============================================
           CARD CONTAINER
           ============================================ */

        .vcard {
            width: 100%;
            max-width: 480px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.6s var(--ease-out);
        }

        .vcard__card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-2xl);
            padding: 40px 32px 32px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-xl);
        }

        [data-theme="dark"] .vcard__card {
            background: rgba(13, 30, 54, 0.85);
            border-color: rgba(30, 58, 95, 0.6);
        }

        [data-theme="light"] .vcard__card {
            background: rgba(255, 255, 255, 0.9);
        }

        /* Gradient top border */
        .vcard__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        /* ============================================
           PROFILE SECTION
           ============================================ */

        .vcard__profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 28px;
        }

        .vcard__photo-wrapper {
            position: relative;
            width: 128px;
            height: 128px;
            margin-bottom: 20px;
        }

        .vcard__photo-wrapper::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: var(--radius-full);
            background: var(--gradient-accent);
            z-index: 0;
        }

        .vcard__photo {
            position: relative;
            z-index: 1;
            width: 128px;
            height: 128px;
            border-radius: var(--radius-full);
            object-fit: cover;
            border: 3px solid var(--bg-secondary);
        }

        [data-theme="dark"] .vcard__photo {
            border-color: rgba(13, 30, 54, 0.85);
        }

        .vcard__name {
            font-family: 'Space Grotesk', system-ui, sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .vcard__title {
            font-size: 1.0625rem;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .vcard__company {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .vcard__company-logo {
            height: 24px;
            width: auto;
        }

        /* ============================================
           DIVIDER
           ============================================ */

        .vcard__divider {
            height: 1px;
            background: var(--border-color);
            margin: 0 0 24px;
            border: none;
        }

        /* ============================================
           CONTACT DETAILS
           ============================================ */

        .vcard__contacts {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 24px;
        }

        .vcard__contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 14px;
            border-radius: var(--radius-lg);
            transition: all var(--duration-base) var(--ease-out);
            text-decoration: none;
            color: var(--text-primary);
        }

        a.vcard__contact-item:hover {
            background: rgba(0, 180, 216, 0.08);
            color: var(--accent-primary);
        }

        a.vcard__contact-item:hover .vcard__contact-icon {
            color: var(--accent-primary);
            transform: scale(1.1);
        }

        .vcard__contact-icon {
            width: 20px;
            height: 20px;
            color: var(--text-secondary);
            flex-shrink: 0;
            transition: all var(--duration-base) var(--ease-out);
        }

        .vcard__contact-text {
            font-size: 0.9375rem;
            line-height: 1.5;
            color: inherit;
        }

        .vcard__contact-label {
            display: block;
            font-size: 0.6875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-tertiary);
            margin-bottom: 1px;
        }

        /* ============================================
           SOCIAL LINKS
           ============================================ */

        .vcard__socials {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 0;
        }

        .vcard__social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            background: var(--bg-tertiary);
            color: var(--text-secondary);
            transition: all var(--duration-base) var(--ease-out);
        }

        .vcard__social-link:hover {
            background: var(--gradient-accent);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: var(--shadow-cyan);
        }

        .vcard__social-link svg {
            width: 20px;
            height: 20px;
        }

        /* ============================================
           BOOK APPOINTMENT BUTTON
           ============================================ */

        .vcard__book-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            margin-top: 20px;
            padding: 14px 24px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            border-radius: var(--radius-md);
            border: 2px solid var(--accent-primary);
            background: transparent;
            color: var(--accent-primary);
            cursor: pointer;
            text-decoration: none;
            transition: all var(--duration-base) var(--ease-out);
        }

        .vcard__book-btn:hover {
            background: var(--accent-primary);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: var(--shadow-cyan);
        }

        .vcard__book-btn svg {
            width: 18px;
            height: 18px;
            transition: transform var(--duration-base) var(--ease-out);
        }

        .vcard__book-btn:hover svg {
            transform: scale(1.1);
        }

        /* ============================================
           QR CODE SECTION
           ============================================ */

        .vcard__qr-section {
            margin-top: 28px;
            animation: fadeInUp 0.6s var(--ease-out) 0.15s both;
        }

        .vcard__qr-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 28px;
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        [data-theme="dark"] .vcard__qr-card {
            background: rgba(13, 30, 54, 0.85);
            border-color: rgba(30, 58, 95, 0.6);
        }

        [data-theme="light"] .vcard__qr-card {
            background: rgba(255, 255, 255, 0.9);
        }

        .vcard__qr-label {
            font-family: 'Space Grotesk', system-ui, sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .vcard__qr-container {
            display: inline-block;
            padding: 16px;
            background: #FFFFFF;
            border-radius: var(--radius-lg);
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
        }

        .vcard__qr-container canvas {
            display: block;
        }

        .vcard__qr-hint {
            font-size: 0.8125rem;
            color: var(--text-tertiary);
            margin-bottom: 20px;
        }

        /* ============================================
           DOWNLOAD BUTTON
           ============================================ */

        .vcard__download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px 24px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            background: var(--gradient-accent);
            color: #FFFFFF;
            box-shadow: var(--shadow-cyan);
            transition: all var(--duration-base) var(--ease-out);
            position: relative;
            overflow: hidden;
        }

        .vcard__download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 44px -10px rgba(0, 180, 216, 0.4);
        }

        .vcard__download-btn:active {
            transform: translateY(0);
        }

        .vcard__download-btn svg {
            width: 20px;
            height: 20px;
            transition: transform var(--duration-base) var(--ease-out);
        }

        .vcard__download-btn:hover svg {
            transform: translateY(2px);
        }

        /* ============================================
           FOOTER
           ============================================ */

        .vcard-footer {
            margin-top: 40px;
            text-align: center;
            animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
        }

        .vcard-footer__back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all var(--duration-base) var(--ease-out);
            margin-bottom: 16px;
        }

        .vcard-footer__back:hover {
            color: var(--accent-primary);
            gap: 12px;
        }

        .vcard-footer__back svg {
            width: 16px;
            height: 16px;
            transition: transform var(--duration-base) var(--ease-out);
        }

        .vcard-footer__back:hover svg {
            transform: translateX(-4px);
        }

        .vcard-footer__copyright {
            font-size: 0.8125rem;
            color: var(--text-tertiary);
        }

        .vcard-footer__copyright a {
            color: var(--accent-primary);
            text-decoration: none;
        }

        .vcard-footer__copyright a:hover {
            color: var(--accent-secondary);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */

        @media (max-width: 540px) {
            .vcard-page {
                padding: 80px 16px 40px;
            }

            .vcard__card {
                padding: 32px 20px 24px;
            }

            .vcard__photo-wrapper {
                width: 104px;
                height: 104px;
            }

            .vcard__photo {
                width: 104px;
                height: 104px;
            }

            .vcard__name {
                font-size: 1.625rem;
            }

            .vcard__title {
                font-size: 0.9375rem;
            }

            .vcard__contact-item {
                padding: 8px 10px;
                gap: 10px;
            }

            .vcard__contact-text {
                font-size: 0.875rem;
            }

            .vcard__qr-card {
                padding: 20px;
            }
        }

        /* ============================================
           SLIDER (infinite, with side previews)
           ============================================ */

        .vcard-slider {
            position: relative;
            width: 100%;
            max-width: 980px;
            z-index: 1;
            /* No overflow:hidden — neighbour slides must remain visible */
        }

        .vcard-slider__stage {
            position: relative;
            width: 100%;
            min-height: 720px;
            perspective: 1200px;
        }

        .vcard-slider__slide {
            position: absolute;
            top: 0;
            left: 50%;
            width: min(480px, 90vw);
            transform: translateX(-50%);
            transform-origin: center center;
            transition:
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, opacity;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .vcard-slider__slide--active {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            filter: none;
            pointer-events: auto;
            z-index: 3;
        }

        .vcard-slider__slide--prev,
        .vcard-slider__slide--next {
            opacity: 0.35;
            filter: blur(2px);
            z-index: 2;
        }

        .vcard-slider__slide--prev {
            transform: translateX(calc(-50% - 320px)) scale(0.82);
        }

        .vcard-slider__slide--next {
            transform: translateX(calc(-50% + 320px)) scale(0.82);
        }

        .vcard-slider__slide--far {
            opacity: 0;
            transform: translateX(-50%) scale(0.6);
            pointer-events: none;
            z-index: 1;
        }

        /* Lateral hover zones — modern click-to-navigate */
        .vcard-slider__zone {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 25%;
            z-index: 4;
            cursor: pointer;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            color: var(--text-tertiary);
            opacity: 0;
            transition:
                opacity 0.3s var(--ease-out),
                background 0.3s var(--ease-out),
                color 0.3s var(--ease-out);
        }

        .vcard-slider__zone--prev {
            left: 0;
            justify-content: flex-start;
            padding-left: 24px;
        }

        .vcard-slider__zone--next {
            right: 0;
            justify-content: flex-end;
            padding-right: 24px;
        }

        .vcard-slider__zone:hover,
        .vcard-slider__zone:focus-visible {
            opacity: 1;
            color: var(--accent-primary);
            outline: none;
        }

        .vcard-slider__zone--prev:hover,
        .vcard-slider__zone--prev:focus-visible {
            background: linear-gradient(to right, rgba(0, 180, 216, 0.12), transparent);
        }

        .vcard-slider__zone--next:hover,
        .vcard-slider__zone--next:focus-visible {
            background: linear-gradient(to left, rgba(0, 180, 216, 0.12), transparent);
        }

        .vcard-slider__zone svg {
            width: 32px;
            height: 32px;
            transition: transform 0.3s var(--ease-out);
        }

        .vcard-slider__zone:hover svg,
        .vcard-slider__zone:focus-visible svg {
            transform: scale(1.2);
        }

        .vcard-slider__nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 20px;
        }

        .vcard-slider__arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-color);
            background: var(--bg-secondary);
            color: var(--text-secondary);
            cursor: pointer;
            transition:
                background var(--duration-base) var(--ease-out),
                color var(--duration-base) var(--ease-out),
                border-color var(--duration-base) var(--ease-out),
                box-shadow var(--duration-base) var(--ease-out);
            flex-shrink: 0;
        }

        .vcard-slider__arrow:hover {
            background: var(--gradient-accent);
            color: #FFFFFF;
            border-color: transparent;
            box-shadow: var(--shadow-cyan);
        }

        .vcard-slider__arrow svg {
            width: 18px;
            height: 18px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .vcard-slider__arrow.is-rotating--prev svg {
            animation: arrowSpinPrev 0.6s ease-out;
        }

        .vcard-slider__arrow.is-rotating--next svg {
            animation: arrowSpinNext 0.6s ease-out;
        }

        @keyframes arrowSpinPrev {
            0%   { transform: rotate(0deg); }
            100% { transform: rotate(-360deg); }
        }

        @keyframes arrowSpinNext {
            0%   { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Mobile: hide lateral zones (touch swipe handles nav) and side previews */
        @media (max-width: 720px) {
            .vcard-slider {
                max-width: 100%;
            }

            .vcard-slider__zone {
                display: none;
            }

            .vcard-slider__slide--prev,
            .vcard-slider__slide--next {
                opacity: 0;
                pointer-events: none;
            }
        }

        .vcard-slider__dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .vcard-slider__dot {
            width: 10px;
            height: 10px;
            border-radius: var(--radius-full);
            border: none;
            background: var(--border-color);
            cursor: pointer;
            transition: all var(--duration-base) var(--ease-out);
            padding: 0;
        }

        .vcard-slider__dot--active {
            width: 28px;
            border-radius: 5px;
            background: var(--gradient-accent);
        }

        .vcard-slider__person-name {
            font-family: 'Space Grotesk', system-ui, sans-serif;
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--text-tertiary);
            text-align: center;
            margin-top: 8px;
        }

        /* Swipe Indicator */
        .swipe-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 0.8125rem;
            font-weight: 500;
            color: var(--text-tertiary);
            opacity: 1;
            transition: opacity 0.6s var(--ease-out);
        }

        .swipe-hint.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .swipe-hint__icon {
            display: inline-flex;
            animation: swipeAnimation 2s ease-in-out infinite;
        }

        .swipe-hint__icon svg {
            width: 20px;
            height: 20px;
            color: var(--accent-primary);
        }

        @keyframes swipeAnimation {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(8px); }
            75% { transform: translateX(-8px); }
        }

        /* Print Styles */
        @media print {
            .header,
            .theme-toggle,
            .vcard__qr-section,
            .swipe-hint,
            .vcard-footer__back {
                display: none !important;
            }

            .vcard-page {
                padding: 0;
                min-height: auto;
            }

            .vcard-page::before,
            .vcard-page::after {
                display: none;
            }

            .vcard__card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .vcard,
            .vcard__qr-section,
            .vcard-footer {
                animation: none !important;
            }
        }
