/* =============================================
   SILVERCARD — STYLE.CSS
   Palette : Or (#F4C430) + Noir + Crème (#FFFBF0)
   ============================================= */

:root {
    --primary:        #F4C430;
    --primary-dark:   #D4A017;
    --secondary:      #DAA520;
    --accent:         #D4AF37;

    --text:           #0a0a0a;
    --text-light:     #374151;
    --text-lighter:   #6b7280;

    --bg:             #FFFBF0;
    --bg-light:       #FFF8E7;
    --bg-white:       #ffffff;

    --border:         #e5e7eb;
    --border-light:   #f3f4f6;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
    --shadow:     0 4px 8px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
    --shadow-md:  0 8px 20px rgba(0,0,0,.08), 0 3px 8px rgba(0,0,0,.05);
    --shadow-lg:  0 16px 40px rgba(0,0,0,.10), 0 6px 16px rgba(0,0,0,.06);
    --shadow-xl:  0 24px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.07);

    --radius:     10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --nav-h: 72px;
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============ NAVIGATION ============ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,251,240,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255,251,240,.97);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .625rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text);
    flex-shrink: 0;
    z-index: 1001;
    transition: opacity var(--transition);
}
.logo:hover { opacity: .85; }
.logo-img { height: 38px; width: auto; }
.logo-accent {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links a {
    display: block;
    padding: .375rem .85rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: rgba(244,196,48,.15);
}

.nav-cta {
    flex-shrink: 0;
    padding: .625rem 1.5rem;
    background: var(--text);
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 600;
    border-top: 2px solid var(--primary);
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,10,10,.25);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    padding: 6px;
    z-index: 1001;
    border-radius: var(--radius);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5.5px); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
    backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; opacity: 1; }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.hero-background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .25;
    animation: blobAnim 22s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, #F4C430 0%, transparent 70%); top: -150px; right: -100px; }
.blob-2 { width: 450px; height: 450px; background: radial-gradient(circle, #DAA520 0%, transparent 70%); bottom: -100px; left: -80px; animation-delay: -9s; }
.blob-3 { width: 350px; height: 350px; background: radial-gradient(circle, #F4C430 0%, transparent 70%); top: 55%; left: 45%; animation-delay: -4s; opacity: .15; }

@keyframes blobAnim {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, -40px) scale(1.08); }
    66%       { transform: translate(-30px, 40px) scale(.93); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1.1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.75rem;
    box-shadow: var(--shadow-sm);
}
.hero-badge svg { color: var(--primary); flex-shrink: 0; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 2.25rem;
    line-height: 1.75;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .875rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9375rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--text);
    color: white;
    border-top: 2.5px solid var(--primary);
    box-shadow: 0 4px 16px rgba(10,10,10,.18);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(10,10,10,.25);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Stats hero */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .875rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.125rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.stat-label {
    font-size: .75rem;
    color: var(--text-lighter);
    font-weight: 500;
    margin-top: .2rem;
}

/* Hero image */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-wrapper {
    width: 100%;
    max-width: 580px;
}
.image-wrapper img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 64px rgba(0,0,0,.14));
    animation: floatImg 6s ease-in-out infinite;
}
@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

/* ============ SECTION COMMONS ============ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3vw, 2.625rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: .875rem;
    letter-spacing: -.01em;
}
.section-header p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ SERVICES ============ */
.services-section {
    padding: 6rem 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1.375rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .75rem;
}
.service-card > p {
    color: var(--text-light);
    font-size: .9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .375rem;
}
.service-list li {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    padding: .375rem 0;
    color: var(--text-light);
    font-size: .875rem;
    border-bottom: 1px solid var(--border-light);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: .45rem;
    flex-shrink: 0;
}

/* ============ PROCESSUS ============ */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.process-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem 2.25rem;
    text-align: center;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--text);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: white;
    box-shadow: 0 6px 20px rgba(10,10,10,.25);
}

.process-emoji {
    font-size: 3rem;
    display: block;
    margin: .75rem 0 1.25rem;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .875rem;
}
.process-card p {
    color: var(--text-light);
    font-size: .9375rem;
    line-height: 1.7;
}

.process-line {
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(244,196,48,.2) 0%, var(--primary) 50%, rgba(244,196,48,.2) 100%);
    flex-shrink: 0;
}

/* ============ DOCUMENTS ============ */
.documents-section {
    padding: 6rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.documents-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-lighter);
    margin-bottom: 1rem;
}
.documents-badge svg { color: var(--primary); }

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.document-category {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.875rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.document-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.category-title {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    padding-bottom: .875rem;
    border-bottom: 2px solid var(--bg-light);
}
.category-title svg { color: var(--primary); flex-shrink: 0; }

.document-buttons { display: flex; flex-direction: column; gap: .75rem; }

.doc-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .875rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.doc-btn:hover {
    border-color: var(--primary);
    transform: translateX(6px);
    box-shadow: var(--shadow);
}
.doc-btn:hover .doc-icon {
    background: var(--primary);
    border-color: var(--primary);
}
.doc-btn:hover .doc-icon svg { color: white; }

.doc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
}
.doc-icon svg { color: var(--text-lighter); transition: color var(--transition); }

.doc-name  { font-weight: 600; font-size: .9375rem; color: var(--text); }
.doc-type  { font-size: .8125rem; color: var(--text-lighter); margin-top: .125rem; }

.documents-info { margin-top: 2.5rem; }

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.375rem 1.5rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef9e0 100%);
    border: 1px solid #fde68a;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
}
.info-card svg { color: var(--primary-dark); flex-shrink: 0; margin-top: .2rem; }
.info-card p   { color: var(--text); font-size: .9375rem; line-height: 1.7; }
.info-card strong { font-weight: 700; }

/* ============ AVANTAGES ============ */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.benefit-card {
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}
.benefit-card p { color: var(--text-light); font-size: .875rem; line-height: 1.65; }

/* ============ LOCALISATION ============ */
.location-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-lighter);
    margin-bottom: 1rem;
}
.location-badge svg { color: var(--primary); }

.location-hero {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-map-wrapper {
    height: 580px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}
.location-map-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.location-map-wrapper iframe { width: 100%; height: 100%; display: block; }

.location-info-panel { display: flex; flex-direction: column; gap: 1.25rem; }

.location-primary-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.location-primary-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.primary-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
    margin-bottom: 1.75rem;
}

.primary-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 20px rgba(244,196,48,.35);
    flex-shrink: 0;
}

.primary-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: .25rem;
}
.location-subtitle { color: var(--text-lighter); font-size: .9rem; font-weight: 500; }

.address-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9375rem;
    color: var(--text-light);
}
.address-line svg { flex-shrink: 0; color: var(--primary-dark); margin-top: .1rem; }

/* Horaires */
.horaires-wrapper { flex: 1; }
.horaires-title {
    display: block;
    font-weight: 700;
    color: var(--text);
    font-size: .9375rem;
    margin-bottom: .75rem;
}

.horaires-list { display: flex; flex-direction: column; }

.horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border-light);
}
.horaire-item:last-child { border-bottom: none; }

.horaire-item .jour {
    font-weight: 600;
    color: var(--text);
    font-size: .875rem;
}
.horaire-item .heures {
    color: #059669;
    font-weight: 500;
    font-size: .8125rem;
}
.horaire-item.ferme .heures {
    color: #dc2626;
    font-style: italic;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .875rem 1rem;
    background: var(--text);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .9rem;
    border-top: 2px solid var(--primary);
    transition: transform var(--transition), box-shadow var(--transition);
}
.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,10,10,.22);
}

.location-features { display: flex; flex-direction: column; gap: .875rem; }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}
.feature-icon.train   { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
.feature-icon.parking { background: linear-gradient(135deg, #fbbf24 0%, var(--primary) 100%); }
.feature-icon.car     { background: linear-gradient(135deg, #4facfe 0%, #00d4ff 100%); }

.feature-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.feature-item p  { font-size: .875rem; color: var(--text-lighter); line-height: 1.5; }

/* ============ TÉMOIGNAGES ============ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}

.testimonials-wrapper { overflow: hidden; border-radius: var(--radius-xl); }

.testimonials-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
    min-width: 100%;
    padding: 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.75rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-display);
    flex-shrink: 0;
}
.author-info h4 { font-weight: 700; color: var(--text); font-size: 1rem; margin-bottom: .2rem; }
.author-info p  { color: var(--text-lighter); font-size: .875rem; }

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    color: var(--text);
    flex-shrink: 0;
}
.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text);
    transform: scale(1.08);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.75rem;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
    padding: 0;
}
.carousel-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: var(--radius-full);
}

/* ============ FORMULAIRE DEMANDE ============ */
.form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-wrapper { max-width: 760px; margin: 0 auto; }

.main-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text);
}
.required { color: #ef4444; font-size: .9em; }
.optional  { color: var(--text-lighter); font-weight: 400; font-size: .85em; }

.form-group input,
.form-group select,
.form-group textarea {
    padding: .875rem 1.125rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lighter); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(244,196,48,.2);
    background: var(--bg-white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select   { cursor: pointer; }

.form-checkbox { margin: 1.5rem 0; }
.form-checkbox label {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: .2rem;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1.125rem 2rem;
    border-radius: var(--radius-lg);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin-top: 1.25rem;
    font-size: .8125rem;
    color: var(--text-lighter);
}
.form-note svg { color: var(--primary-dark); flex-shrink: 0; }

/* ============ FAQ ============ */
.faq-section {
    padding: 6rem 0;
    background: var(--bg);
}

.faq-wrapper { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover  { box-shadow: var(--shadow); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-md); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .9375rem;
    color: var(--text);
    user-select: none;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.375rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition), color var(--transition);
    line-height: 1;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--text);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), padding var(--transition);
    padding: 0 1.75rem;
}
.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 1.75rem 1.625rem;
}
.faq-answer p {
    color: var(--text-light);
    font-size: .9375rem;
    line-height: 1.8;
}
.faq-answer p strong { color: var(--text); }

/* ============ CONTACT ============ */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: .75rem;
}
.contact-subtitle { color: var(--text-light); font-size: 1.0625rem; margin-bottom: 2.5rem; line-height: 1.7; }

.contact-methods { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-method:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}
.method-icon  { font-size: 1.5rem; flex-shrink: 0; }
.method-label { font-size: .8125rem; color: var(--text-lighter); font-weight: 500; margin-bottom: .2rem; }
.method-value { font-weight: 700; color: var(--text); font-size: .9375rem; }

.social-links { display: flex; gap: .75rem; }

.social-link {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.social-link:hover {
    background: var(--primary);
    color: var(--text);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--bg-white);
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.75rem;
}
.contact-form .form-group { margin-bottom: 1.125rem; }

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
    border-top: 3px solid var(--primary);
    color: #ffffff;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    letter-spacing: .01em;
}
.footer-section p { color: #aaa; font-size: .9rem; line-height: 1.7; }

.footer-section a {
    display: block;
    color: #bbb;
    text-decoration: none;
    font-size: .9rem;
    margin-bottom: .625rem;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-section a:hover { color: var(--primary); padding-left: 4px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { color: #666; font-size: .875rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: #666; text-decoration: none; font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }

/* ============ WHATSAPP ============ */
.whatsapp-btn {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    z-index: 999;
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

/* ============ TOAST ============ */
.toast {
    position: fixed;
    bottom: 5.5rem;
    right: 1.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: .9375rem;
    font-weight: 500;
    color: white;
    z-index: 9999;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s;
    max-width: 340px;
    box-shadow: var(--shadow-xl);
}
.toast.show  { transform: translateY(0); opacity: 1; }
.toast-success { background: #059669; }
.toast-error   { background: #dc2626; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Tablet 1024px --- */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }

    .hero {
        grid-template-columns: 1fr;
        padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
        text-align: center;
    }
    .hero-content { max-width: 100%; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-badge { justify-content: center; display: inline-flex; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 480px; margin: 0 auto; }
    .hero-image { order: -1; }
    .image-wrapper { max-width: 400px; margin: 0 auto; }

    .services-grid   { grid-template-columns: repeat(2, 1fr); }
    .documents-grid  { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid   { grid-template-columns: repeat(3, 1fr); }

    .process-wrapper {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .process-line { display: none; }

    .location-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .location-map-wrapper { height: 450px; }

    .contact-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

    .nav-links {
        position: fixed;
        top: 0; left: -100%;
        width: min(82vw, 320px);
        height: 100vh;
        background: rgba(255,251,240,.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: calc(var(--nav-h) + 1rem) 1.75rem 2rem;
        box-shadow: 4px 0 24px rgba(0,0,0,.1);
        transition: left var(--transition);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.active { left: 0; }
    .nav-links li { width: 100%; border-bottom: 1px solid var(--border-light); }
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.0625rem;
        font-weight: 600;
        border-radius: 0;
    }
    .nav-links a:hover, .nav-links a.active { background: none; color: var(--primary-dark); }

    .nav-cta    { display: none; }
    .hamburger  { display: flex; }
}

/* --- Mobile 768px --- */
@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .hero { padding: calc(var(--nav-h) + 2.5rem) 1.25rem 3.5rem; gap: 2.5rem; }
    .hero-title { font-size: clamp(2rem, 6vw, 2.5rem); }
    .hero-cta { flex-direction: column; gap: .75rem; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }

    .services-section,
    .process-section,
    .documents-section,
    .benefits-section,
    .location-section,
    .testimonials-section,
    .form-section,
    .faq-section,
    .contact-section { padding: 4.5rem 0; }

    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 1.875rem; }

    .services-grid   { grid-template-columns: 1fr; gap: 1.125rem; }
    .documents-grid  { grid-template-columns: 1fr; gap: 1.125rem; }
    .benefits-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .service-card { padding: 1.75rem; }
    .process-card { padding: 2.75rem 1.5rem 1.75rem; }
    .benefit-card { padding: 1.5rem 1.125rem; }

    .location-map-wrapper  { height: 360px; }
    .location-primary-card { padding: 1.625rem; }
    .contact-quick-actions { grid-template-columns: 1fr; }

    .testimonials-carousel {
        grid-template-columns: auto 1fr auto;
        gap: .75rem;
    }
    .testimonial-card { padding: 2rem 1.5rem; }

    .main-form { padding: 2rem 1.5rem; }
    .form-row  { grid-template-columns: 1fr; gap: 0; }

    .contact-form-card { padding: 2rem 1.5rem; }
    .footer-content    { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .footer-bottom     { flex-direction: column; gap: .875rem; text-align: center; }
    .footer-links      { justify-content: center; gap: 1.5rem; }
}

/* --- Small 480px --- */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero { padding: calc(var(--nav-h) + 2rem) 1rem 3rem; }
    .hero-title { font-size: 1.875rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: .625rem; }
    .stat-card  { padding: .875rem .75rem; }
    .stat-number { font-size: 1.375rem; }

    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card  { padding: 1.5rem; text-align: left; display: flex; align-items: flex-start; gap: 1rem; }
    .benefit-icon  { font-size: 2rem; margin-bottom: 0; }

    .section-header h2 { font-size: 1.625rem; }

    .faq-question { padding: 1.25rem; font-size: .875rem; }
    .faq-answer { padding: 0 1.25rem; }
    .faq-item.active .faq-answer { padding: 0 1.25rem 1.25rem; }

    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }

    .main-form { padding: 1.5rem 1rem; }
    .contact-form-card { padding: 1.5rem 1rem; }

    .whatsapp-btn { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
    .toast { bottom: 5rem; right: 1rem; max-width: calc(100vw - 2rem); }
}

/* --- Paysage très bas --- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; }
    .nav-links { padding-top: var(--nav-h); overflow-y: auto; }
}
/* ============ CHATBOT ============ */
.chatbot-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}

.contact-info-card > p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.65;
}

/* Chatbot container */
.chatbot-container {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 560px;
    max-height: 640px;
}

/* Header chatbot */
.chatbot-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--text);
    border-bottom: 3px solid var(--primary);
    flex-shrink: 0;
}

.chatbot-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(244,196,48,.25);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-header-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: #aaa;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* Messages */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg);
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 82%;
}

.bot-message { align-self: flex-start; }
.user-message { align-self: flex-end; align-items: flex-end; }

.message-bubble {
    padding: .875rem 1.125rem;
    border-radius: var(--radius-lg);
    font-size: .9375rem;
    line-height: 1.7;
}

.bot-message .message-bubble {
    background: var(--bg-white);
    color: var(--text);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.user-message .message-bubble {
    background: var(--text);
    color: #fff;
    border-top: 2px solid var(--primary);
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: .75rem;
    color: var(--text-lighter);
    margin-top: .3rem;
    padding: 0 .25rem;
}

/* Typing indicator */
.typing-bubble {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: .875rem 1.125rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--text-lighter);
    border-radius: 50%;
    animation: typingAnim 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }

@keyframes typingAnim {
    0%, 80%, 100% { transform: scale(1); opacity: .5; }
    40% { transform: scale(1.3); opacity: 1; }
}

/* Suggestions */
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .25rem;
}

.suggestion-btn {
    padding: .45rem 1rem;
    background: var(--bg-white);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-full);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    font-family: var(--font-body);
}

.suggestion-btn:hover {
    background: var(--primary);
    color: var(--text);
}

/* Zone de saisie */
.chatbot-input-area {
    padding: 1.125rem 1.5rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-white);
    flex-shrink: 0;
}

.chatbot-input-wrapper {
    display: flex;
    gap: .75rem;
    align-items: flex-end;
}

.chatbot-input {
    flex: 1;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--text);
    background: var(--bg);
    resize: none;
    outline: none;
    max-height: 120px;
    overflow-y: auto;
    line-height: 1.5;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.chatbot-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(244,196,48,.2);
    background: var(--bg-white);
}

.chatbot-input::placeholder { color: var(--text-lighter); }

.chatbot-send-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--text);
    border: 2px solid var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), box-shadow var(--transition);
}

.chatbot-send-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10,10,10,.25);
}

.chatbot-send-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

.chatbot-disclaimer {
    font-size: .75rem;
    color: var(--text-lighter);
    margin-top: .625rem;
    text-align: center;
}

/* Responsive chatbot */
@media (max-width: 1024px) {
    .chatbot-wrapper { grid-template-columns: 1fr; }
    .chatbot-sidebar { order: 2; }
    .chatbot-container { order: 1; }
}

@media (max-width: 768px) {
    .chatbot-container { min-height: 480px; max-height: 540px; }
    .chatbot-messages { padding: 1rem; }
    .chatbot-input-area { padding: .875rem 1rem; }
}