:root {
    --blue: #2980b9;
    --blue-dark: #1a6a9a;
    --green: #27ae60;
    --bg: #f4f9fc;
    --bg-alt: #e8f4fb;
    --text: #2c3e50;
    --muted: #7f8c8d;
    --white: #ffffff;
    --radius: 20px;
    --shadow: 0 4px 24px rgba(41,128,185,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 28px; }

/* HEADER */
.site-header {
    background: var(--white);
    border-bottom: 1px solid #daeaf5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(41,128,185,.06);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1rem;
    color: var(--blue);
    flex-shrink: 0;
}

.brand-icon { font-size: 1.3rem; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    font-weight: 600;
    font-size: 0.92rem;
}

.main-nav a { color: var(--muted); transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }

.btn-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
}

.btn-cta:hover { background: var(--blue-dark) !important; }

.lang-switcher { display: flex; gap: 6px; font-size: 0.8rem; font-weight: 700; }
.lang-switcher a { color: var(--muted); }
.lang-switcher a.active { color: var(--blue); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }

/* HERO */
.hero { background: var(--white); padding: 60px 0; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text p {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 1rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.hero-visual { display: flex; justify-content: center; }

.hero-illustration {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-alt) 0%, #a9cce3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.hero-illustration svg { width: 160px; height: 160px; }

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background .2s, transform .15s;
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-outline {
    display: inline-block;
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 11px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all .2s;
}

.btn-outline:hover { background: var(--blue); color: var(--white); }

/* SECTIONS */
.section { padding: 72px 0; }

.section h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 40px;
    background: none;
    box-shadow: none;
}

.bg-alt { background: var(--bg-alt); }

/* WHY CARDS */
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s;
}

.why-card:hover { transform: translateY(-4px); }

.why-icon { font-size: 2.2rem; margin-bottom: 12px; }

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--blue);
}

.why-card p { font-size: 0.88rem; color: var(--muted); }

/* SOINS CHIPS */
.soins-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.soin-chip {
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all .2s;
}

.soin-chip:hover { background: var(--blue); color: var(--white); }

/* SOINS LIST */
.soins-list { display: flex; flex-direction: column; gap: 0; }

.soin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #daeaf5;
    gap: 24px;
}

.soin-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--blue); }
.soin-info p { font-size: 0.88rem; color: var(--muted); }
.soin-price { font-size: 1rem; font-weight: 700; color: var(--green); white-space: nowrap; }

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 56px 0 40px;
}

.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; background: none; box-shadow: none; }
.page-hero p { opacity: .85; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

.contact-info h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.contact-info p { font-size: 0.9rem; color: var(--muted); margin-bottom: 8px; }
.contact-info hr { border: none; border-top: 1px solid #daeaf5; margin: 16px 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 2px solid #daeaf5;
    border-radius: var(--radius);
    padding: 10px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }

/* FOOTER */
.site-footer { background: var(--blue); color: var(--white); padding: 40px 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 32px; justify-content: space-between; }
.footer-name { font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
.footer-inner p { font-size: 0.88rem; opacity: .8; margin-bottom: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 0.88rem; opacity: .8; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; }
.footer-copy { font-size: 0.8rem; opacity: .6; width: 100%; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); }
