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

:root {
    /* Palette "Les TikTok?s" */
    --black:        #0A0A12;
    --dark:         #12121E;
    --dark2:        #1C1C2E;
    --card-bg:      #12121E;
    --primary:      #7B61FF;
    --primary-dark: #5A3FE0;
    --primary-rgb:  123, 97, 255;
    --accent:       #FF8A3D;
    --accent-dark:  #E06B20;
    --cyan:         #00C2FF;
    --white:        #F5F7FA;
    --gray:         #6B7280;
    --gray-light:   #A0AEC0;
    --border:       rgba(255,255,255,0.08);
    --green:        #22c55e;
    --yellow:       #f59e0b;
    --red:          #ef4444;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }

/* NAV */
.nav {
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo { font-size: 1.5rem; font-weight: 900; }
.logo span.primary { color: var(--primary); }
.logo span.accent  { color: var(--accent); }
.nav-links { display: flex; gap: 1rem; align-items: center; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 28px rgba(123,97,255,0.55); }
.btn-secondary {
    background: rgba(255,138,61,0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}
.btn-secondary:hover { background: rgba(255,138,61,0.2); }
.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray-light);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: #fff; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* CARD */
.card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
}

/* BADGE */
.badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-primary { background: rgba(123,97,255,0.15); border: 1px solid rgba(123,97,255,0.35); color: var(--primary); }
.badge-accent  { background: rgba(255,138,61,0.1);  border: 1px solid rgba(255,138,61,0.3);  color: var(--accent); }
.badge-green   { background: rgba(34,197,94,0.1);   border: 1px solid rgba(34,197,94,0.3);   color: var(--green); }
.badge-yellow  { background: rgba(245,158,11,0.1);  border: 1px solid rgba(245,158,11,0.3);  color: var(--yellow); }
.badge-gray    { background: rgba(255,255,255,0.05); border: 1px solid var(--border);         color: var(--gray); }
.badge-pink    { background: rgba(239,68,68,0.1);   border: 1px solid rgba(239,68,68,0.3);   color: var(--red); }
.badge-cyan    { background: rgba(0,194,255,0.1);   border: 1px solid rgba(0,194,255,0.3);   color: var(--cyan); }

/* FORM */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; color: var(--gray-light); font-size: 0.85rem; margin-bottom: 0.4rem; }
.form-control {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}
.form-control:focus { border-color: var(--primary); }
select.form-control option { background: var(--dark); }

/* ALERT */
.alert { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; margin-bottom: 1.2rem; }
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: var(--red); }
.alert-success { background: rgba(34,197,94,0.1);  border: 1px solid rgba(34,197,94,0.3);  color: var(--green); }

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* AUTH PAGE */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.auth-box { width: 100%; max-width: 420px; }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo .logo { font-size: 2rem; }
.auth-logo p { color: var(--gray); margin-top: 0.4rem; }

/* HERO */
.hero { text-align: center; padding: 6rem 2rem 4rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; color: var(--gray-light); max-width: 580px; margin: 0 auto 2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 4rem; flex-wrap: wrap; }
.hero-stat-value { font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat-label { font-size: 0.82rem; color: var(--gray); }

/* SECTION */
.section { padding: 4rem 2rem; }
.section-title { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--gray); margin-bottom: 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }

/* GRID TEMPLATES */
.templates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.template-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
}
.template-card:hover { transform: translateY(-2px); }
.template-emoji { font-size: 2rem; margin-bottom: 0.5rem; }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.step { text-align: center; }
.step-num { font-size: 2.5rem; font-weight: 900; color: var(--primary); opacity: 0.4; margin-bottom: 0.4rem; }
.step-title { font-weight: 700; margin-bottom: 0.3rem; }
.step-desc { color: var(--gray); font-size: 0.9rem; }

/* DASHBOARD */
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.dashboard-title { font-size: 1.8rem; font-weight: 800; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.project-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s;
    cursor: pointer;
}
.project-card:hover { border-color: rgba(123,97,255,0.45); }
.project-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.project-card-title { font-weight: 700; margin-bottom: 0.3rem; }
.project-card-footer { display: flex; justify-content: space-between; color: var(--gray); font-size: 0.8rem; margin-top: 0.8rem; }
.empty-state { text-align: center; padding: 5rem 2rem; background: var(--dark); border-radius: 16px; border: 1px dashed var(--border); }
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: flex; align-items: center; justify-content: center; z-index: 200; padding: 2rem; }
.modal { background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; width: 100%; max-width: 500px; }
.modal-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.modal-footer { display: flex; gap: 1rem; margin-top: 0.5rem; }

/* CREDITS CHIP */
.credits-chip { background: rgba(123,97,255,0.15); border: 1px solid rgba(123,97,255,0.35); border-radius: 20px; padding: 0.3rem 0.8rem; font-size: 0.85rem; color: var(--primary); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 2rem; text-align: center; color: var(--gray); font-size: 0.85rem; }

/* DARK BG SECTION */
.bg-dark-section { background: #0D0D1A; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */
.site-footer {
    background: #0D0D1A;
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 0;
    margin-top: 4rem;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
}
.footer-brand p { color: var(--gray); font-size: 0.9rem; margin-top: 0.6rem; max-width: 260px; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-light);
    transition: all 0.15s;
}
.footer-socials a:hover { background: rgba(123,97,255,0.15); border-color: var(--primary); color: var(--primary); }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-light); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--gray); font-size: 0.875rem; margin-bottom: 0.5rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray);
}
.footer-bottom a { color: var(--gray); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--white); }
.footer-sep { opacity: 0.4; }

/* --------------------------------------------------------------
   PAGES L?GALES
-------------------------------------------------------------- */
.legal-wrapper {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: calc(100vh - 80px);
}

.legal-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}
.legal-sidebar-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 0.75rem;
}
.legal-nav { display: flex; flex-direction: column; gap: 2px; }
.legal-nav a {
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--gray-light);
    transition: all 0.15s;
    text-decoration: none;
}
.legal-nav a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.legal-nav a.active { background: rgba(123,97,255,0.12); color: var(--primary); font-weight: 600; }
.legal-sidebar-back { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.legal-sidebar-back a { font-size: 0.85rem; color: var(--gray); }
.legal-sidebar-back a:hover { color: var(--white); }

.legal-header { margin-bottom: 2.5rem; }
.legal-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(123,97,255,0.1);
    border: 1px solid rgba(123,97,255,0.25);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.legal-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.legal-date { font-size: 0.85rem; color: var(--gray); }

.legal-notice {
    background: rgba(123,97,255,0.08);
    border: 1px solid rgba(123,97,255,0.2);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    color: var(--white);
}
.legal-section h3 { font-size: 1rem; font-weight: 600; margin: 1.2rem 0 0.5rem; color: var(--gray-light); }
.legal-section p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.75rem; }
.legal-section ul { list-style: none; padding: 0; margin-bottom: 0.75rem; }
.legal-section ul li {
    color: var(--gray-light);
    font-size: 0.9rem;
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    line-height: 1.6;
}
.legal-section ul li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}
.legal-section a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--white); }
.legal-section code {
    background: rgba(255,255,255,0.08);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.legal-table th {
    background: rgba(255,255,255,0.05);
    padding: 0.65rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}
.legal-table td {
    padding: 0.65rem 1rem;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.right-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
}
.right-card strong { display: block; font-size: 0.85rem; margin-bottom: 0.25rem; color: var(--white); }
.right-card p { font-size: 0.8rem; color: var(--gray); margin: 0; }

.browser-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.browser-link {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.15s;
}
.browser-link:hover { border-color: var(--primary); color: var(--primary); }

@media (max-width: 768px) {
    .legal-wrapper { grid-template-columns: 1fr; }
    .legal-sidebar { position: static; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------
   PAGE CONTACT
-------------------------------------------------------------- */
.contact-page {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
    min-height: calc(100vh - 80px);
    align-items: start;
}

/* -- Colonne infos -- */
.contact-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(255,138,61,0.1);
    border: 1px solid rgba(255,138,61,0.25);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 1.25rem;
}
.contact-info h1 {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.contact-info > p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.contact-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(123,97,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.contact-card-icon svg { width: 18px; height: 18px; }
.contact-card strong { display: block; font-size: 0.8rem; color: var(--gray-light); margin-bottom: 2px; }
.contact-card a, .contact-card span { font-size: 0.9rem; color: var(--white); }
.contact-card a:hover { color: var(--primary); }

.contact-categories-info { }
.contact-categories-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 0.75rem; }
.contact-categories-info ul { list-style: none; padding: 0; }
.contact-categories-info li { font-size: 0.875rem; color: var(--gray-light); padding: 0.3rem 0 0.3rem 1.25rem; position: relative; }
.contact-categories-info li::before { content: '?'; position: absolute; left: 0; color: var(--primary); font-size: 0.75rem; }

/* -- Formulaire -- */
.contact-form-wrap {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form-header { margin-bottom: 1.75rem; }
.contact-form-header h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.35rem; }
.contact-form-header p { color: var(--gray); font-size: 0.875rem; }
.required { color: var(--accent); }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* -- Cat?gories (radio buttons styl?s) -- */
.category-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.category-option { cursor: pointer; }
.category-option input { display: none; }
.category-option span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--gray-light);
    background: rgba(255,255,255,0.03);
    transition: all 0.15s;
    cursor: pointer;
}
.category-option input:checked + span {
    border-color: var(--primary);
    background: rgba(123,97,255,0.12);
    color: var(--white);
}
.category-option span:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }

.contact-textarea { min-height: 150px; resize: vertical; }
.char-counter { font-size: 0.75rem; color: var(--gray); text-align: right; margin-top: 0.3rem; }

.contact-gdpr { margin-bottom: 1.5rem; }
.contact-gdpr .checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.825rem; color: var(--gray-light); cursor: pointer; }
.contact-gdpr input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--primary); cursor: pointer; }
.contact-gdpr a { color: var(--primary); text-decoration: underline; }

.contact-submit { gap: 0.6rem; }
.contact-submit:hover { transform: translateY(-1px); }

/* -- Success state -- */
.contact-success { text-align: center; padding: 2rem 1rem; }
.contact-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--green);
}
.contact-success-icon svg { width: 28px; height: 28px; }
.contact-success h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; }
.contact-success p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.5rem; }

@media (max-width: 768px) {
    .contact-page { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem; }
    .cf-row { grid-template-columns: 1fr; }
    .category-selector { grid-template-columns: repeat(2, 1fr); }
    .contact-form-wrap { padding: 1.5rem; }
}

/* -- Plateformes ------------------------------------------------------------ */
.platforms-row { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.platform-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; flex: 1; min-width: 200px; max-width: 280px; transition: transform 0.2s, border-color 0.2s; }
.platform-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.platform-name { font-weight: 800; font-size: 1rem; }
.platform-tag { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 3px 10px; font-size: 0.75rem; color: var(--gray-light); }

/* -- Voix IA --------------------------------------------------------------- */
.voices-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; }
.voice-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; transition: border-color 0.2s; }
.voice-card:hover { border-color: rgba(255,255,255,0.15); }
.voice-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.voice-info { flex: 1; }
.voice-name { font-weight: 700; font-size: 0.95rem; }
.voice-desc { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }
.voice-badge { font-size: 0.7rem; font-weight: 800; padding: 3px 8px; border-radius: 6px; }

/* -- T?moignages ----------------------------------------------------------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.testimonial-top { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-platform { font-size: 0.75rem; color: var(--gray); }
.testimonial-stars { margin-left: auto; font-size: 0.75rem; }
.testimonial-text { font-size: 0.875rem; color: var(--gray-light); line-height: 1.7; margin: 0; font-style: italic; }

/* -- Studio (profil / chaînes) --------------------------------------------- */
.studio-main {
    margin-left: 220px;
    padding: 1.75rem 2rem 3rem;
    min-height: calc(100vh - 60px);
    max-width: 1180px;
}
.studio-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.studio-title {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.studio-lead { color: var(--gray-light); font-size: 0.92rem; margin-top: 0.4rem; max-width: 58ch; line-height: 1.55; }
.studio-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}
.cost-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.95rem 1rem;
}
.cost-card strong { display: block; font-size: 1.25rem; font-weight: 800; color: #fff; }
.cost-card span { display: block; font-size: 0.78rem; color: var(--gray-light); margin-top: 0.2rem; line-height: 1.4; }
.cost-card em { font-style: normal; font-size: 0.7rem; font-weight: 800; color: var(--primary); }
.hint-box {
    background: rgba(123,97,255,0.08);
    border: 1px solid rgba(123,97,255,0.22);
    border-radius: 12px;
    padding: 0.9rem 1.05rem;
    font-size: 0.82rem;
    color: var(--gray-light);
    line-height: 1.5;
}
.hint-box strong { color: #fff; }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.channel-tile {
    display: block;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, transform 0.15s;
}
.channel-tile:hover { border-color: rgba(123,97,255,0.45); transform: translateY(-2px); }
.channel-tile-banner { height: 88px; background: linear-gradient(135deg, rgba(123,97,255,0.35), rgba(255,138,61,0.2)); }
.channel-tile-banner img { width: 100%; height: 88px; object-fit: cover; display: block; }
.channel-tile-body { padding: 0 1.1rem 1.1rem; }
.channel-tile-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    margin-top: -28px; border: 3px solid var(--dark);
    object-fit: cover; background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem;
}
.niche-chip {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.35rem 0.7rem; border-radius: 999px;
    border: 1px solid var(--border); background: rgba(255,255,255,0.03);
    font-size: 0.78rem; cursor: pointer;
}
.niche-chip input { accent-color: var(--primary); }
.copy-row {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border);
}
.copy-row:last-child { border-bottom: none; }
.copy-row p { margin: 0.2rem 0 0; font-size: 0.88rem; white-space: pre-wrap; color: var(--gray-light); }
.check-item { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.84rem; color: var(--gray-light); margin: 0.4rem 0; }
.step-dot { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; }
.studio-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.15rem; align-items: start; }
.studio-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 900px) {
    .studio-main { margin-left: 0; padding: 1.25rem 1rem 2.5rem; }
    .studio-split, .studio-2 { grid-template-columns: 1fr; }
}
