:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --emerald-light: #d1fae5;
    --white: #ffffff;
    --bg: #f0fdf8;
    --text: #0f2d22;
    --muted: #6b8c7c;
    --border: #c6e8d8;
    --bg-card: #ffffff;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(16,185,129,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(16,185,129,.06);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    flex-shrink: 0;
}

.logo-tooth { color: var(--emerald); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.pills-nav {
    display: flex;
    gap: 4px;
    background: var(--emerald-light);
    border-radius: 999px;
    padding: 4px;
}

.pill {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    padding: 6px 16px;
    border-radius: 999px;
    transition: all .2s;
}

.pill:hover,
.pill.active {
    background: var(--white);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.btn-rdv {
    background: var(--emerald);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 999px;
    transition: background .2s;
}

.btn-rdv:hover { background: var(--emerald-dark); }

.lang-switcher {
    display: flex;
    gap: 4px;
    padding-left: 12px;
    border-left: 1px solid var(--border);
}

.lang-switcher a {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    padding: 3px 7px;
    border-radius: 4px;
}

.lang-switcher a.active,
.lang-switcher a:hover {
    background: var(--emerald);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

/* HERO */
.hero {
    padding: 80px 0 60px;
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: var(--emerald-light);
    color: var(--emerald-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-left > p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-rdv-big {
    background: var(--emerald);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 999px;
    transition: background .2s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-rdv-big:hover { background: var(--emerald-dark); }

.link-arrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--emerald-dark);
    transition: gap .2s;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badge {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--emerald-dark);
    background: var(--emerald-light);
    padding: 5px 12px;
    border-radius: 999px;
}

.hero-visual {
    position: relative;
    height: 360px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--emerald-light) 0%, #a7f3d0 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-deco {
    position: absolute;
    border-radius: 50%;
    opacity: .4;
}

.circle-1 {
    width: 240px;
    height: 240px;
    background: var(--emerald);
    top: -60px;
    right: -60px;
}

.circle-2 {
    width: 160px;
    height: 160px;
    background: var(--emerald-dark);
    bottom: -40px;
    left: -40px;
}

.hero-card-float {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(16,185,129,.15);
}

.float-icon { font-size: 2rem; }

.hero-card-float strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.hero-card-float span { font-size: 0.8rem; color: var(--muted); }

/* SECTION */
.section-pad { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.section-header p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

.section-cta { text-align: center; margin-top: 48px; }

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: box-shadow .25s, transform .25s;
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-emoji {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.service-card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }

.card-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--emerald-dark);
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--emerald-light);
    color: var(--emerald-dark);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.team-card span { font-size: 0.82rem; color: var(--muted); }

/* PATIENTS */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.info-icon { font-size: 2rem; display: block; margin-bottom: 14px; }

.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.info-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--text) 0%, #1a4d38 100%);
    padding: 60px 0 48px;
}

.page-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; }

/* CONTACT */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.rdv-form { display: flex; flex-direction: column; gap: 18px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
}

.form-group input,
.form-group select {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--emerald); }

.contact-aside { display: flex; flex-direction: column; gap: 20px; }

.aside-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.aside-block h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.aside-block p { font-size: 0.85rem; color: var(--muted); line-height: 1.9; }

.aside-block.urgent {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff8f8;
    border-color: #fca5a5;
}

.aside-block.urgent span { font-size: 1.6rem; flex-shrink: 0; }

.aside-block.urgent strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 4px;
}

/* FOOTER */
.site-footer {
    background: var(--text);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,.5); }

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.4); }
