/* ═══════════════════════════════════════════════════════════════════════════
   ASSISTANTS QUÉBEC — Design System
   Theme: Assistants Québec — Clean, Light, Professional
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    /* Core Palette - Clean Professional */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-muted: #f1f5f9;
    --bg-navy: #0f2a4a;
    --bg-navy-dark: #0a1f38;
    
    /* Primary Colors */
    --primary-blue: #0f4c81;
    --primary-navy: #1e3a5f;
    --primary-green: #008751;
    --primary-green-light: #00a862;
    
    /* Accent Colors */
    --accent-coral: #e85d5d;
    --accent-orange: #f0a050;
    --accent-teal: #0891b2;
    
    /* Text hierarchy */
    --text-dark: #1e293b;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    /* Gradients */
    --gradient-header: linear-gradient(90deg, #0f4c81 0%, #1e5a96 35%, #7c3aed 65%, #dc2656 100%);
    --gradient-stats: linear-gradient(135deg, #0f2a4a 0%, #1e3a5f 100%);
    --gradient-cta: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a96 100%);
    
    /* Borders */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-green: #00875133;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    
    /* Spacing & sizing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE & RESET
   ═══════════════════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 5vw;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
    transition: all 0.3s var(--ease-smooth);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand > div {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--primary-blue);
    display: grid;
    place-items: center;
    color: var(--text-white);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.brand-mark svg,
.brand-mark img {
    width: 24px;
    height: 24px;
}

/* Globe icon for brand */
.brand-mark::before {
    content: '⊕';
    font-size: 1.4rem;
    font-weight: 600;
}

.brand-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.brand span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.2;
}

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

.nav a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.25s var(--ease-smooth);
}

.nav a:hover {
    color: var(--text-dark);
    background: var(--bg-muted);
}

.nav-admin {
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
}

.nav-admin:hover {
    color: var(--primary-blue) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOP BANNER - Gradient
   ═══════════════════════════════════════════════════════════════════════════ */

.eyebrow-wrapper {
    background: var(--gradient-header);
    padding: 0.875rem 5vw;
    width: 100%;
}

.eyebrow-wrapper .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
}

.eyebrow::before {
    display: none;
}

.eyebrow-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 400;
}

.eyebrow-item svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--primary-blue);
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.cta:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta:active {
    transform: translateY(0);
}

.cta.secondary,
.cta.ghost {
    background: var(--bg-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.cta.secondary:hover,
.cta.ghost:hover {
    background: var(--bg-muted);
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.cta.green {
    background: var(--primary-green);
}

.cta.green:hover {
    background: var(--primary-green-light);
}

/* Arrow icon for CTA */
.cta-arrow {
    transition: transform 0.3s var(--ease-smooth);
}

.cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */

main {
    padding: 0 5vw 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 5rem;
    min-height: 70vh;
}

.hero__content {
    position: relative;
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 .highlight-green {
    color: var(--primary-green);
}

.hero h1 .highlight-blue {
    color: var(--primary-blue);
}

.lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 560px;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO CHAT WIDGET
   Assistant interactif dans le hero pour répondre aux questions sur l'offre.
   Documentation: /data/llm_docs/assistants-quebec-knowledge.md
   Prompt: /data/llm_docs/assistant-prompt.md
   ═══════════════════════════════════════════════════════════════════════════ */

.hero__visual {
    position: relative;
}

.hero-chat {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.06),
        0 24px 48px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    min-height: 520px;
    max-height: 600px;
    transition: box-shadow 0.3s var(--ease-smooth);
}

.hero-chat:hover {
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 32px 64px rgba(0, 0, 0, 0.06);
}

/* Chat Header */
.hero-chat__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5a9c 100%);
    color: var(--text-white);
}

.hero-chat__avatar {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-chat__avatar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-chat__avatar-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--text-white);
}

.hero-chat__status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

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

.hero-chat__info {
    flex: 1;
    min-width: 0;
}

.hero-chat__info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-chat__info p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.85;
    font-weight: 400;
}

.hero-chat__badge {
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* Chat Messages */
.hero-chat__messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    scroll-behavior: smooth;
}

.hero-chat__messages::-webkit-scrollbar {
    width: 6px;
}

.hero-chat__messages::-webkit-scrollbar-track {
    background: transparent;
}

.hero-chat__messages::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 3px;
}

.hero-chat__messages::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Messages */
.hero-chat__message {
    display: flex;
    gap: 0.75rem;
    animation: messageIn 0.4s var(--ease-out);
}

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

.hero-chat__message--assistant {
    align-items: flex-start;
}

.hero-chat__message--user {
    flex-direction: row-reverse;
}

.hero-chat__message-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-chat__message-avatar svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-white);
}

.hero-chat__message--user .hero-chat__message-avatar {
    background: var(--primary-green);
}

.hero-chat__message-content {
    max-width: 85%;
    padding: 0.875rem 1.125rem;
    border-radius: var(--radius-lg);
    font-size: 0.925rem;
    line-height: 1.55;
}

.hero-chat__message--assistant .hero-chat__message-content {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-top-left-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.hero-chat__message--user .hero-chat__message-content {
    background: var(--primary-blue);
    color: var(--text-white);
    border-top-right-radius: var(--radius-sm);
}

.hero-chat__message-content p {
    margin: 0 0 0.5rem;
}

.hero-chat__message-content p:last-child {
    margin-bottom: 0;
}

.hero-chat__message-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem !important;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

/* Typing Indicator */
.hero-chat__typing {
    display: flex;
    gap: 4px;
    padding: 0.875rem 1.125rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    border-top-left-radius: var(--radius-sm);
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.hero-chat__typing span {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.hero-chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.hero-chat__typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick Actions */
.hero-chat__quick-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    overflow-x: auto;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero-chat__quick-actions::-webkit-scrollbar {
    display: none;
}

.hero-chat__quick-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    background: var(--bg-white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s var(--ease-smooth);
    font-family: inherit;
}

.hero-chat__quick-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-1px);
}

.hero-chat__quick-btn span {
    font-size: 1rem;
}

/* Chat Input */
.hero-chat__input-form {
    padding: 1rem 1.25rem 1.25rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.hero-chat__input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    padding: 0.375rem 0.5rem 0.375rem 1.25rem;
    transition: all 0.25s var(--ease-smooth);
}

.hero-chat__input-wrapper:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
    background: var(--bg-white);
}

.hero-chat__input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    min-width: 0;
    font-family: inherit;
}

.hero-chat__input-wrapper input::placeholder {
    color: var(--text-muted);
}

.hero-chat__send-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s var(--ease-smooth);
    flex-shrink: 0;
}

.hero-chat__send-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-white);
    transition: transform 0.2s var(--ease-smooth);
}

.hero-chat__send-btn:hover {
    background: var(--primary-navy);
    transform: scale(1.05);
}

.hero-chat__send-btn:hover svg {
    transform: translate(2px, -2px);
}

.hero-chat__send-btn:active {
    transform: scale(0.95);
}

.hero-chat__send-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

.hero-chat__send-btn:disabled:hover {
    transform: none;
}

.hero-chat__disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0.75rem 0 0;
}

/* Hero Card - Hidden in new design */
.hero__card {
    display: none;
}

/* Hero Stats - Hidden, moved to stats section */
.hero__stats {
    display: none;
}

/* Contact Partnership Text */
.contact__partnership {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact__partnership strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WIDGET SHOWCASE CAROUSEL - Premium Design
   Un carousel interactif pour présenter les différents thèmes du widget
   avec des animations fluides et un design premium
   ═══════════════════════════════════════════════════════════════════════════ */

.widget-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Glow effect behind the widget */
.widget-showcase::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.widget-showcase__container {
    width: 100%;
    max-width: 420px;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: white;
    
    /* Beautiful multi-layer shadow */
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.06),
        0 24px 48px rgba(15, 76, 129, 0.1);
}

/* Floating animation on hover */
.widget-showcase__container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.05),
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 32px 64px rgba(15, 76, 129, 0.15);
}

/* Animation de transition entre les thèmes */
.widget-showcase__container.transitioning {
    opacity: 0.4;
    transform: scale(0.96) translateY(8px);
    filter: blur(2px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Navigation du carousel - Design Premium avec Glassmorphism
   ─────────────────────────────────────────────────────────────────────────────*/

.widget-showcase__nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.widget-showcase__arrow {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.widget-showcase__arrow:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.35);
}

.widget-showcase__arrow:active {
    transform: scale(0.95);
}

.widget-showcase__arrow svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.2s;
}

.widget-showcase__arrow--prev:hover svg {
    transform: translateX(-2px);
}

.widget-showcase__arrow--next:hover svg {
    transform: translateX(2px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Dots / Points du carousel - Premium Style
   ─────────────────────────────────────────────────────────────────────────────*/

.widget-showcase__dots {
    display: flex;
    gap: 6px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.widget-showcase__dot {
    width: 44px;
    height: 44px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Tooltip on hover */
.widget-showcase__dot::before {
    content: attr(aria-label);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 6px 12px;
    background: var(--text-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.widget-showcase__dot::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    border: 6px solid transparent;
    border-top-color: var(--text-primary);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.widget-showcase__dot:hover::before,
.widget-showcase__dot:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.widget-showcase__dot:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 76, 129, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.widget-showcase__dot.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a96 100%);
    border-color: transparent;
    transform: scale(1.12);
    box-shadow: 
        0 4px 16px rgba(15, 76, 129, 0.4),
        0 0 0 4px rgba(15, 76, 129, 0.15);
}

.widget-showcase__dot-icon {
    font-size: 1.2rem;
    transition: all 0.3s;
    filter: saturate(0.7);
}

.widget-showcase__dot:hover .widget-showcase__dot-icon {
    transform: scale(1.1);
    filter: saturate(1);
}

.widget-showcase__dot.active .widget-showcase__dot-icon {
    filter: grayscale(0) brightness(1.3) saturate(1.2);
    transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Label du thème actuel - Elegant Typography
   ─────────────────────────────────────────────────────────────────────────────*/

.widget-showcase__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 2rem;
}

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

.widget-showcase__label-sector {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-green);
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 135, 81, 0.15);
}

.widget-showcase__label-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Design
   ─────────────────────────────────────────────────────────────────────────────*/

@media (max-width: 640px) {
    .widget-showcase__container {
        max-width: 100%;
        min-height: 480px;
        border-radius: 20px;
    }
    
    .widget-showcase::before {
        width: 300px;
        height: 300px;
    }
    
    .widget-showcase__nav {
        gap: 0.5rem;
        padding: 0.35rem;
    }
    
    .widget-showcase__arrow {
        width: 40px;
        height: 40px;
    }
    
    .widget-showcase__arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .widget-showcase__dots {
        gap: 4px;
        padding: 4px;
    }
    
    .widget-showcase__dot {
        width: 36px;
        height: 36px;
    }
    
    .widget-showcase__dot-icon {
        font-size: 1rem;
    }
    
    /* Hide tooltips on mobile */
    .widget-showcase__dot::before,
    .widget-showcase__dot::after {
        display: none;
    }
}

@media (max-width: 400px) {
    .widget-showcase__arrow {
        width: 36px;
        height: 36px;
    }
    
    .widget-showcase__dot {
        width: 32px;
        height: 32px;
    }
    
    .widget-showcase__dot-icon {
        font-size: 0.9rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS SECTION - Dark Navy Background
   ═══════════════════════════════════════════════════════════════════════════ */

.stats-section {
    background: var(--gradient-stats);
    margin: 0 calc(-50vw + 50%);
    padding: 3rem calc(50vw - 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    color: var(--text-white);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.section {
    margin-top: 5rem;
    position: relative;
}

.section--alt {
    background: var(--bg-light);
    margin: 5rem calc(-50vw + 50%) 0;
    padding: 4rem calc(50vw - 50%);
    border-radius: 0;
}

.section__head {
    max-width: 680px;
    margin-bottom: 2rem;
}

.section__head .eyebrow {
    color: var(--primary-green);
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section__head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section__head > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section__summary {
    margin-top: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.starting-note {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS & GRIDS
   ═══════════════════════════════════════════════════════════════════════════ */

.grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-medium);
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

.card ul {
    margin: 1rem 0 0;
    padding-left: 0;
    list-style: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card ul li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-green);
}

.card span {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.card.compact {
    min-height: 200px;
}

/* Simple Offer Card */
.simple-offer {
    margin-top: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid var(--border-green);
    box-shadow: var(--shadow-card);
}

.simple-offer h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
}

.simple-offer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    margin-top: 1rem;
}

.simple-offer li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.simple-offer li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PILLARS - Steps
   ═══════════════════════════════════════════════════════════════════════════ */

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pillars > div {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-smooth);
}

.pillars > div:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.pillars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    background: var(--primary-blue);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.pillars h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pillars p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ASSISTANT DEMO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.assistant {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-top: 5rem;
    border: 1px solid var(--border-light);
}

.assistant__visual .visual {
    border-radius: var(--radius-lg);
    min-height: 350px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #ede9fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Silhouette - Modern style */
.silhouette {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Hide audio wave in new design */
.audio-wave {
    display: none;
}

.assistant__panel form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.assistant__panel .eyebrow {
    color: var(--primary-green);
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.assistant__panel h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.assistant__panel p {
    color: var(--text-secondary);
    line-height: 1.65;
}

label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

input,
textarea {
    background: var(--bg-white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.25s var(--ease-smooth);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.assistant__output {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    min-height: 180px;
}

.assistant__output h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.assistant__persona {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.875rem;
}

.assistant__status {
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin: 0.75rem 0 0.5rem;
    min-height: 1.4rem;
    font-weight: 500;
}

.assistant__status[data-state="error"] {
    color: var(--accent-coral);
}

.assistant__status[data-state="success"] {
    color: var(--primary-green);
}

#assistant-response {
    position: relative;
    padding-left: 1.25rem;
    margin-top: 1rem;
    min-height: 60px;
}

#assistant-response::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: var(--radius-full);
    background: var(--primary-blue);
}

#assistant-response p {
    margin: 0.75rem 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Loader */
.assistant__loader {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    margin: 1rem 0;
    min-height: 28px;
}

.assistant__loader span {
    width: 5px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--primary-blue);
    animation: loaderWave 1s ease-in-out infinite;
}

.assistant__loader span:nth-child(2) { animation-delay: 0.1s; }
.assistant__loader span:nth-child(3) { animation-delay: 0.2s; }
.assistant__loader span:nth-child(4) { animation-delay: 0.3s; }

@keyframes loaderWave {
    0%, 100% { height: 10px; opacity: 0.4; }
    40% { height: 24px; opacity: 1; }
    60% { height: 14px; opacity: 0.7; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════════════════════════════════════ */

.usecases .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s;
}

.usecases .card:hover::before {
    opacity: 1;
}

.usecases .card:nth-child(1):hover::before { background: var(--primary-blue); }
.usecases .card:nth-child(2):hover::before { background: var(--primary-green); }
.usecases .card:nth-child(3):hover::before { background: var(--accent-teal); }
.usecases .card:nth-child(4):hover::before { background: var(--accent-orange); }
.usecases .card:nth-child(5):hover::before { background: var(--accent-coral); }
.usecases .card:nth-child(6):hover::before { background: var(--primary-green); }

/* ═══════════════════════════════════════════════════════════════════════════
   PLANS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.plans .plan {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-smooth);
}

.plans .plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plan h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem;
}

.plan .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.plan-price {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
}

.plan-price strong {
    color: var(--primary-green);
    font-weight: 700;
}

.plan ul {
    list-style: none;
    color: var(--text-secondary);
    flex-grow: 1;
}

.plan li {
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.plan li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.plan.highlight {
    border: 2px solid var(--primary-blue);
    position: relative;
}

.plan.highlight::before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.options {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-top: 5rem;
    border: 1px solid var(--border-light);
}

.contact__info .eyebrow {
    color: var(--primary-green);
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact__info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.5rem 0 1.25rem;
}

.contact__info p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.contact__info p a {
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.25s;
}

.contact__info p a:hover {
    color: var(--primary-green);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__status {
    min-height: 1.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

.contact__status[data-state="success"] {
    color: var(--primary-green);
}

.contact__status[data-state="error"] {
    color: var(--accent-coral);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
    padding: 2rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
}

.site-footer a {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    transition: color 0.25s;
}

.site-footer a:hover {
    color: var(--primary-blue);
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.grid .reveal:nth-child(1) { transition-delay: 0s; }
.grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.pillars .reveal:nth-child(1) { transition-delay: 0s; }
.pillars .reveal:nth-child(2) { transition-delay: 0.08s; }
.pillars .reveal:nth-child(3) { transition-delay: 0.16s; }
.pillars .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .hero__visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    
    .widget-showcase {
        position: relative;
    }
    
    .widget-showcase__container {
        position: relative;
    }
    
    .hero-chat {
        min-height: 480px;
        max-height: 520px;
    }
    
    .assistant {
        grid-template-columns: 1fr;
    }
    
    .contact {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 960px) {
    .site-header {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }
    
    .nav a {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .eyebrow-wrapper .eyebrow {
        gap: 1.5rem;
        font-size: 0.8rem;
    }
    
    .assistant,
    .contact {
        padding: 2rem;
        border-radius: var(--radius-lg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .stat-value {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .hide-mobile {
        display: none !important;
    }
    
    main {
        padding: 0 1rem 3rem;
    }

    .site-header {
        padding: 0.75rem 1rem;
    }
    
    .hero {
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .hero__cta {
        flex-direction: column;
    }
    
    .hero__cta .cta {
        width: 100%;
    }
    
    /* Hero Chat Mobile */
    .hero-chat {
        min-height: 420px;
        max-height: 480px;
        border-radius: var(--radius-lg);
    }
    
    .hero-chat__header {
        padding: 1rem;
    }
    
    .hero-chat__avatar {
        width: 40px;
        height: 40px;
    }
    
    .hero-chat__info h3 {
        font-size: 0.9rem;
    }
    
    .hero-chat__info p {
        font-size: 0.75rem;
    }
    
    .hero-chat__messages {
        padding: 1rem;
    }
    
    .hero-chat__message-content {
        max-width: 90%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-chat__quick-actions {
        padding: 0.625rem 1rem;
    }
    
    .hero-chat__quick-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .hero-chat__input-form {
        padding: 0.875rem 1rem 1rem;
    }
    
    .hero-chat__input-wrapper {
        padding: 0.25rem 0.375rem 0.25rem 1rem;
    }
    
    .hero-chat__input-wrapper input {
        font-size: 0.9rem;
    }
    
    .hero-chat__send-btn {
        width: 36px;
        height: 36px;
    }
    
    .stats-section {
        margin: 0 calc(-50vw + 50%);
        padding: 2rem calc(50vw - 50%);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }

    .section--alt {
        margin: 4rem calc(-50vw + 50%) 0;
        padding: 2.5rem calc(50vw - 50%);
    }
    
    .assistant,
    .contact {
        padding: 1.5rem;
        margin: 3rem 0 0;
        border-radius: var(--radius-md);
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .site-footer {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .site-footer a {
        margin: 0 0.75rem;
    }
    
    .section {
        margin-top: 3rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-green { color: var(--primary-green); }
.text-blue { color: var(--primary-blue); }
.text-muted { color: var(--text-muted); }

.bg-light { background: var(--bg-light); }
.bg-white { background: var(--bg-white); }

/* Hide aurora background from old design */
.aurora {
    display: none;
}
