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

body {
    background-color: #FFFFFF;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding-top: 80px;
}

/* ============================================
   HEADER
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #111111;
    color: white;
    font-family: 'Montserrat', sans-serif;
    height: 80px;
    padding: 0px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#logo {
    height: 80px;
    width: auto;
    display: block;
}

#logo-link {
    display: flex;
    align-items: center;
}

header h1 {
    font-family: 'Architects Daughter', cursive;
    font-size: 1.6rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.services-menu {
    position: relative;
}

.services-menu > p {
    cursor: pointer;
    color: white;
    font-weight: 500;
    margin: 0;
}

.services-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 100;
}

.services-menu:hover .services-dropdown {
    display: block;
}

.services-dropdown > a {
    display: block;
    padding: 10px 15px;
    color: #D52B1E;
    text-decoration: none;
    font-size: 14px;
    margin-left: 0 !important;
    white-space: nowrap;
}

.services-dropdown > a:hover {
    background-color: #F0F0F0;
}

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

footer {
    background-color: #D52B1E;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0px 50px;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: auto;
    margin-bottom: 0;
}

#logo2 {
    height: 60px;
    width: auto;
    display: block;
}

#lang ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

#lang a {
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

#lang a:hover {
    color: rgba(255,255,255,0.7);
}

#lang a.active {
    text-decoration: underline;
    opacity: 0.8;
}

#copyright {
    margin: 0;
    font-weight: normal;
    font-style: italic;
    font-size: 13px;
}

footer img {
    height: 40px;
    width: auto;
}

/* ============================================
   COURS CARDS & ACCORDÉON
   ============================================ */

.cours-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    border-left: 4px solid #D52B1E;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cours-card:last-child {
    margin-bottom: 0;
}

.cours-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.cours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cours-header h3 {
    flex: 1;
    color: #111111;
    font-size: 16px;
    font-weight: 700;
}

span.level {
    flex: 1;
    color: #D52B1E !important;
    font-size: 14px;
    font-weight: 700;
}

.cours-duree {
    font-size: 13px;
    color: #888888;
    white-space: nowrap;
}

.cours-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cours-card ul li {
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #444444;
    line-height: 1.5;
}

.cours-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: green;
    font-weight: 700;
}

details.cours-card {
    cursor: pointer;
}

details.cours-card > summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

details.cours-card > summary::-webkit-details-marker {
    display: none;
}

details.cours-card > summary::after {
    content: "▾";
    color: #D52B1E;
    font-size: 16px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

details.cours-card[open] > summary::after {
    transform: rotate(-180deg);
}

details.cours-card[open] > summary {
    margin-bottom: 15px;
}

details.cours-card > ul {
    margin-top: 5px;
}

/* ============================================
   PACKAGES / ACCORDÉON GÉNÉRAL
   ============================================ */

.pack-category {
    color: #D52B1E;
    font-size: 18px;
    margin: 30px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #D52B1E;
}

details > summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

details > summary::-webkit-details-marker {
    display: none;
}

details > summary::after {
    content: " ▾";
    color: #D52B1E;
    font-size: 14px;
}

details[open] > summary::after {
    content: " ▴";
}

details > summary.cours-header {
    margin-bottom: 0;
}

details[open] > summary.cours-header {
    margin-bottom: 15px;
}

details > ul {
    margin-top: 15px;
}

/* ============================================
   CTA BUTTON
   ============================================ */

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    background-color: #D52B1E;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #aa1f15;
}

/* ============================================
   FORMULAIRE
   ============================================ */

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    display: block;
}

form input,
form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #D52B1E;
}

form textarea {
    min-height: 130px;
    resize: vertical;
}

form button {
    align-self: flex-start;
    background-color: #D52B1E;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #aa1f15;
}

.success {
    color: green;
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
}

.error {
    color: #D52B1E;
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
}

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

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    header {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 12px 20px;
        gap: 8px;
    }

    #logo {
        height: 50px;
    }

    nav {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    nav a {
        margin: 2px 0;
        font-size: 14px;
    }

    .services-menu > p {
        font-size: 14px;
    }

    .services-dropdown {
        position: static;
        display: block;
        box-shadow: none;
        background-color: transparent;
        margin-top: 2px;
        padding-left: 10px;
    }

    .services-dropdown > a {
        color: rgba(255,255,255,0.8);
        padding: 4px 10px;
        font-size: 13px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 20px;
    }

    #lang ul {
        flex-direction: row;
        gap: 15px;
    }

    .cours-card ul {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE ACCUEIL — hero split & trust bar
   ============================================ */

.hero-split {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: calc(100vh - 80px);
}

/* LEFT — photo */
.hero-left {
    position: relative;
    background: linear-gradient(160deg, #1a0505 0%, #5a0e0e 30%, #D52B1E 70%, #8B1A10 100%);
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(0,0,0,0.04) 40px,
        rgba(0,0,0,0.04) 41px
    );
    z-index: 1;
}

.hero-left::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
    z-index: 2;
}

.photo-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.apple-badge {
    position: absolute;
    top: 28px; left: 28px; z-index: 10;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.apple-dot {
    width: 8px; height: 8px;
    background: #D52B1E;
    border-radius: 50%;
}

.bubble {
    position: absolute;
    bottom: 36px; left: 28px; right: 28px;
    z-index: 10;
    background: rgba(255,255,255,0.97);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border-left: 4px solid #D52B1E;
}

.bubble-stars {
    color: #F59E0B;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.bubble-text {
    font-size: 13px;
    color: #444;
    line-height: 1.55;
    font-style: italic;
    font-family: 'Ysabeau Office', serif;
}

.bubble-author {
    margin-top: 10px;
    font-size: 12px;
    color: #888;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bubble-author::before {
    content: '';
    display: block;
    width: 20px; height: 2px;
    background: #D52B1E;
}

/* RIGHT — texte */
.hero-right {
    background: #f4f4f4;
    padding: 56px 60px 56px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 140px; height: 140px;
    background: linear-gradient(225deg, rgba(213,43,30,0.07) 0%, transparent 60%);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(213,43,30,0.1);
    color: #D52B1E;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 26px;
    align-self: flex-start;
    border: 1px solid rgba(213,43,30,0.2);
}

.hero-right h2 {
    font-family: 'Architects Daughter', cursive;
    font-size: clamp(26px, 2.8vw, 42px);
    line-height: 1.22;
    color: #111111;
    margin-bottom: 18px;
}

.hero-right h2 em {
    color: #D52B1E;
    font-style: italic;
}

.hero-subtitle {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 22px;
    max-width: 420px;
}

.personal-note {
    background: #FFFFFF;
    border-left: 3px solid #D52B1E;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.personal-note p {
    font-family: 'Ysabeau Office', serif;
    font-style: italic;
    font-size: 1rem;
    color: #4A3728;
    line-height: 1.65;
}

.personal-note .note-sig {
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: #D52B1E;
    display: flex;
    align-items: center;
    gap: 8px;
}

.personal-note .note-sig::before {
    content: '';
    display: block;
    width: 16px; height: 2px;
    background: #D52B1E;
}

.free-lesson-banner {
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.35);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #1e8449;
    margin-bottom: 16px;
    display: inline-block;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    background: #D52B1E;
    color: white;
    padding: 13px 26px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(213,43,30,0.32);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
    background: #aa1f15;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(213,43,30,0.4);
}

.btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: #D52B1E;
    padding: 13px 24px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #D52B1E;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-hero-outline:hover {
    background: rgba(213,43,30,0.07);
}

.services-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #ddcccc;
    padding-top: 24px;
}

.svc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s;
}

.svc-item:hover {
    opacity: 0.75;
}

.svc-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: rgba(213,43,30,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border: 1px solid rgba(213,43,30,0.15);
}

.svc-label { font-weight: 500; }
.svc-price { color: #D52B1E; font-weight: 600; font-size: 12px; }

/* TRUST BAR */
.trust-bar {
    background: #111111;
    padding: 0 60px;
    display: flex;
    border-top: 3px solid #D52B1E;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
}

.trust-item:not(:last-child) {
    border-right: 1px solid #2a2a2a;
}

.trust-icon { font-size: 24px; }

.trust-text strong {
    display: block;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.trust-text span {
    color: #777;
    font-size: 12px;
}

/* RESPONSIVE accueil */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        min-height: 480px;
    }

    .photo-placeholder img {
        object-position: center 15%;
    }

    .hero-right {
        padding: 40px 24px;
    }

    .trust-bar {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .trust-item {
        flex: 0 0 50%;
        padding: 16px 12px;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .trust-item {
        flex: 0 0 100%;
        border-right: none !important;
        border-bottom: 1px solid #2a2a2a;
    }
}

/* ============================================
   PAGES DE SERVICES — layout commun
   ============================================ */

.page-main {
    flex: 1;
    background-color: #f4f4f4;
}

.page-header {
    background: #111111;
    border-bottom: 3px solid #D52B1E;
    padding: 48px 60px;
}

.page-header-inner {
    max-width: 860px;
}

.page-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(213,43,30,0.18);
    color: #ff6b5b;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    border: 1px solid rgba(213,43,30,0.35);
}

.page-header h2 {
    font-family: 'Architects Daughter', cursive;
    font-size: clamp(24px, 3vw, 38px);
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-header p {
    font-size: 15px;
    color: #AAAAAA;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.tarif-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.min-part-badge {
    background: rgba(213,43,30,0.15);
    border: 1px solid rgba(213,43,30,0.3);
    color: #ff8070;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.tarif-lien {
    color: #D52B1E;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.tarif-lien:hover {
    opacity: 0.75;
    text-decoration: underline;
}

.gratuit-banner {
    margin-top: 14px;
    background: rgba(213,43,30,0.12);
    border: 1px solid rgba(213,43,30,0.3);
    border-radius: 8px;
    padding: 10px 16px;
    color: #ff8070;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 60px;
}

.cards-col {
    min-width: 0;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 20px;
}

.level-badge {
    display: inline-block;
    background: #D52B1E;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 100px;
    margin: 20px 0 12px 0;
}

/* SIDEBAR */
.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 22px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-top: 3px solid #D52B1E;
}

.sidebar-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.sidebar-card p {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 14px;
}

.sidebar-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.sidebar-cta {
    background: #111111;
    border-top: 3px solid #D52B1E;
}

.sidebar-cta h4 { color: #FFFFFF; }
.sidebar-cta p  { color: #AAAAAA; }

.sidebar-trust {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444444;
    font-weight: 500;
}

.trust-mini-item span {
    color: #D52B1E;
    font-weight: 700;
    font-size: 15px;
}

.btn-page-primary {
    display: inline-block;
    background: #D52B1E;
    color: white !important;
    padding: 11px 22px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.btn-page-primary:hover {
    background: #aa1f15;
    transform: translateY(-1px);
}

.page-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* RESPONSIVE services */
@media (max-width: 900px) {
    .page-header {
        padding: 32px 24px;
    }

    .page-grid {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card,
    .sidebar-trust {
        flex: 1 1 200px;
    }
}

@media (max-width: 480px) {
    .page-header-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-sidebar {
        flex-direction: column;
    }
}

/* ============================================
   PAGE CONTACT
   ============================================ */

.contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-photo-block {
    background: #111111;
    border-radius: 10px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 3px solid #D52B1E;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-icon {
    font-size: 18px;
    width: 32px;
    text-align: center;
}

.contact-info-label {
    font-size: 11px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
}

a.contact-info-value:hover {
    color: #D52B1E;
}

.who-card {
    border-top: 3px solid #D52B1E;
}

.who-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.who-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
}

.apple-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 5px 12px;
    color: #AAAAAA;
    font-size: 11px;
    font-weight: 500;
    align-self: flex-start;
}

.who-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.75;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: #333333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #DDDDDD;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
    background: #FAFAFA;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D52B1E;
    background: #FFFFFF;
}

.contact-form textarea {
    resize: vertical;
}

.alert-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f0faf4;
    border: 1.5px solid #4caf50;
    border-radius: 8px;
    padding: 16px 18px;
    color: #2e7d32;
    font-size: 14px;
}

.alert-icon {
    font-size: 18px;
    font-weight: 700;
}

.alert-error {
    background: #fff0f0;
    border: 1.5px solid #D52B1E;
    border-radius: 8px;
    padding: 12px 16px;
    color: #D52B1E;
    font-size: 14px;
}

/* ============================================
   PAGE TARIFS
   ============================================ */

.tarif-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tarif-base-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.tarif-base-label {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tarif-base-val {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.tarif-free {
    border-left-color: #27ae60;
}

.tarif-free .level {
    color: #27ae60 !important;
}

@media (max-width: 768px) {
    .tarif-grid {
        flex-direction: column;
        gap: 8px;
    }

    .tarif-base-card {
        min-width: unset;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .tarif-base-val {
        font-size: 16px;
    }
}

/* ============================================
   PAGE FAQ
   ============================================ */

.faq-card {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-card[open] {
    border-left: 3px solid #D52B1E;
}

.faq-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-num {
    font-size: 11px;
    font-weight: 700;
    color: #D52B1E;
    opacity: 0.6;
    min-width: 22px;
    font-variant-numeric: tabular-nums;
}

.faq-summary h3 {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    line-height: 1.4;
}

.faq-arrow {
    color: #D52B1E;
    font-size: 14px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-card[open] .faq-arrow {
    transform: rotate(-180deg);
}

.faq-answer {
    padding: 14px 20px 18px 56px;
    border-top: 1px solid #F0F0F0;
}

.faq-answer p {
    font-size: 14px;
    color: #555555;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .faq-answer {
        padding-left: 20px;
    }
}