/* =====================================================================
   Terapie Craniosacrală — Emanuel Strinu
   Elevated front-end stylesheet
   Palette: warm ivory, sage green, pale terracotta, taupe (earth tones)
   Display type: Inter Black (900)
   ===================================================================== */

/* Fontul (Inter) este încărcat în <head>, înaintea acestui fișier — nu prin @import. */

/* ------------------------------------------------------------------ */
/*  Design tokens                                                      */
/* ------------------------------------------------------------------ */
:root {
    /* Backgrounds — warm off-white / ivory / sand */
    --bg-color: #FBF8F3;
    --bg-warm: #F4EEE4;       /* warm sand / taupe tint for alt sections */
    --bg-deep: #ECE3D6;       /* deeper sand for bands */

    /* Text */
    --text-color: #2C2A26;
    --text-soft: #4A453E;
    --text-muted: #786F66;

    /* Sage green */
    --primary: #6E7F66;
    --primary-dark: #54624D;
    --primary-deep: #3D4838;
    --primary-light: #E7EEE3;
    --primary-mid: #9DAB95;

    /* Pale terracotta */
    --accent: #C97B5E;
    --accent-dark: #B3674B;
    --accent-light: #F6E7DF;

    /* Taupe / neutral */
    --taupe: #9A8E7E;
    --taupe-light: #D9D0C4;
    --gold: #D6A463;          /* warm ochre, used sparingly (stars) */

    --white: #FFFFFF;
    --line: rgba(122, 110, 95, 0.16);
    --line-strong: rgba(122, 110, 95, 0.28);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: all 0.35s var(--ease);

    /* Warm-tinted layered shadows */
    --shadow-sm: 0 2px 8px rgba(78, 70, 58, 0.05);
    --shadow: 0 14px 40px -16px rgba(78, 70, 58, 0.18), 0 4px 12px -6px rgba(78, 70, 58, 0.08);
    --shadow-hover: 0 28px 60px -22px rgba(78, 70, 58, 0.30), 0 8px 20px -8px rgba(78, 70, 58, 0.12);
    --shadow-accent: 0 14px 30px -10px rgba(201, 123, 94, 0.45);
    --shadow-primary: 0 14px 30px -10px rgba(110, 127, 102, 0.45);

    --radius: 18px;
    --radius-lg: 28px;
    --radius-sm: 12px;
}

/* ------------------------------------------------------------------ */
/*  Reset & base                                                       */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Subtle warm radial glow behind the whole page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1100px 700px at 12% -8%, rgba(110, 127, 102, 0.10), transparent 60%),
        radial-gradient(900px 600px at 100% 0%, rgba(201, 123, 94, 0.08), transparent 55%);
    pointer-events: none;
}

img { max-width: 100%; display: block; }

::selection { background: var(--primary); color: #fff; }

/* ------------------------------------------------------------------ */
/*  Typography                                                         */
/* ------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 900;            /* Inter Black */
    line-height: 1.12;
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.05rem; font-weight: 800; }

p { color: var(--text-muted); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--text-soft); font-weight: 700; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

/* ------------------------------------------------------------------ */
/*  Layout primitives                                                  */
/* ------------------------------------------------------------------ */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }

section { padding: 110px 0; position: relative; }

.section-alt { background-color: var(--bg-warm); }
.section-deep { background-color: var(--bg-deep); }

.text-center { text-align: center; }

/* Kicker / eyebrow label above headings */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 18px;
}
.kicker::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.kicker.center { justify-content: center; }
.kicker.center::after {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.12rem; color: var(--text-muted); }

.section-intro { max-width: 720px; margin-bottom: 56px; font-size: 1.12rem; color: var(--text-muted); }

/* Decorative wave divider (place between two sections) */
.wave-divider { line-height: 0; color: var(--bg-warm); }
.wave-divider svg { width: 100%; height: 70px; display: block; }
.wave-divider.to-ivory { color: var(--bg-color); }
.wave-divider.to-deep { color: var(--bg-deep); }

/* ------------------------------------------------------------------ */
/*  Buttons                                                            */
/* ------------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 30px;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(110,127,102,0.55); }

.btn-secondary { background: transparent; color: var(--primary-dark); border: 1.5px solid var(--primary-mid); }
.btn-secondary:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); transform: translateY(-3px); }

.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(201,123,94,0.55); }

.btn svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------------ */
/*  Header / navigation                                                */
/* ------------------------------------------------------------------ */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 248, 243, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
header.site-header.scrolled {
    background: rgba(251, 248, 243, 0.92);
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px -16px rgba(78, 70, 58, 0.4);
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 84px; transition: var(--transition); }
header.site-header.scrolled .nav-wrapper { height: 70px; }

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-color);
}
.logo .logo-mark {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: 12px;
    background: linear-gradient(140deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow-primary);
}
.logo .logo-mark svg { width: 22px; height: 22px; }
.logo span { color: var(--accent); }

.nav-menu { display: flex; list-style: none; gap: 34px; align-items: center; }
.nav-link { position: relative; font-weight: 600; font-size: 0.96rem; color: var(--text-soft); padding: 6px 0; }
.nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; border-radius: 2px;
    background: var(--accent); transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--primary-dark); }
.nav-link:hover::after { width: 100%; }

.mobile-nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    color: var(--text-color); width: 44px; height: 44px;
    align-items: center; justify-content: center; border-radius: 12px;
}
.mobile-nav-toggle:hover { background: var(--primary-light); }
.mobile-nav-toggle svg { width: 26px; height: 26px; }

/* ------------------------------------------------------------------ */
/*  Hero                                                               */
/* ------------------------------------------------------------------ */
.hero-section {
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-content { z-index: 2; }

.hero-content h1 { margin-bottom: 0.6rem; }
.hero-content h1 em {
    font-style: normal;
    color: var(--primary);
    background: linear-gradient(120deg, var(--primary), var(--accent));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-subtitle { font-size: 1.18rem; color: var(--text-soft); margin: 1.2rem 0 1.4rem; line-height: 1.6; }
.hero-desc { font-size: 1.06rem; color: var(--text-muted); margin-bottom: 2.2rem; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* credential pills under hero */
.hero-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2.4rem; }
.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); border: 1px solid var(--line);
    padding: 9px 16px; border-radius: 40px;
    font-size: 0.84rem; font-weight: 600; color: var(--text-soft);
    box-shadow: var(--shadow-sm);
}
.hero-pill svg { width: 16px; height: 16px; color: var(--primary); }

/* hero image with organic blob frame + floating badge */
.hero-image-wrapper { position: relative; z-index: 1; max-width: 430px; margin-left: auto; }
.hero-img-bg {
    position: absolute; top: 4%; left: 6%;
    width: 92%; height: 92%; z-index: -1;
    background: linear-gradient(150deg, var(--primary-light), var(--accent-light));
    border-radius: 58% 42% 38% 62% / 54% 46% 54% 46%;
    animation: blob-morph 14s ease-in-out infinite alternate;
}
.hero-image {
    width: 100%; height: auto; aspect-ratio: 9 / 16; object-fit: cover; object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 10px solid var(--white);
}
@keyframes blob-morph {
    0%   { border-radius: 58% 42% 38% 62% / 54% 46% 54% 46%; }
    50%  { border-radius: 42% 58% 56% 44% / 48% 58% 42% 52%; }
    100% { border-radius: 50% 50% 46% 54% / 60% 44% 56% 40%; }
}

.hero-badge {
    position: absolute; bottom: -18px; left: 16px;
    background: var(--white); border-radius: 18px;
    padding: 16px 20px; box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 14px;
    max-width: 250px;
    animation: float-soft 5s ease-in-out infinite;
}
.hero-badge .badge-ring {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center; color: #fff;
    background: linear-gradient(140deg, var(--accent), var(--accent-dark));
}
.hero-badge .badge-ring svg { width: 24px; height: 24px; }
.hero-badge strong { display: block; font-size: 0.95rem; color: var(--text-color); }
.hero-badge span { font-size: 0.78rem; color: var(--text-muted); }
@keyframes float-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-cue {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.scroll-cue .mouse {
    width: 24px; height: 38px; border: 2px solid var(--primary-mid); border-radius: 14px;
    position: relative;
}
.scroll-cue .mouse::after {
    content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 7px; border-radius: 3px; background: var(--primary);
    animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 18px; } 100% { opacity: 0; } }

/* ------------------------------------------------------------------ */
/*  Trust / credentials ribbon                                         */
/* ------------------------------------------------------------------ */
.trust-bar { background: var(--primary-deep); color: #fff; padding: 0; }
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 28px; padding: 40px 0;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-item svg { width: 34px; height: 34px; color: var(--accent); flex-shrink: 0; }
.trust-item .t-num { font-size: 1.7rem; font-weight: 900; line-height: 1; color: #fff; }
.trust-item .t-label { font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 28px; }

/* ------------------------------------------------------------------ */
/*  About + credential badges                                          */
/* ------------------------------------------------------------------ */
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 70px; align-items: center; }

.about-figure { position: relative; }
.about-figure .frame-accent {
    position: absolute; inset: 18px -18px -18px 18px; z-index: 0;
    border: 2px solid var(--primary-mid); border-radius: var(--radius-lg);
    opacity: 0.5;
}
.about-figure img {
    position: relative; z-index: 1; width: 100%;
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    aspect-ratio: 4/4.4; object-fit: cover;
}

.credentials-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.badge-item {
    background: var(--white); padding: 24px 20px; border-radius: var(--radius);
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 6px; transition: var(--transition);
}
.badge-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.badge-icon { font-size: 1.8rem; margin-bottom: 4px; line-height: 1; }
.badge-item strong { font-weight: 800; color: var(--text-color); font-size: 0.98rem; }
.badge-item span { font-size: 0.82rem; color: var(--text-muted); }

/* ------------------------------------------------------------------ */
/*  Benefits                                                           */
/* ------------------------------------------------------------------ */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.benefit-card {
    background: var(--white); padding: 38px 32px; border-radius: var(--radius);
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: var(--transition); position: relative; overflow: hidden;
}
.benefit-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out);
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: var(--primary-light); color: var(--primary-dark);
    display: grid; place-items: center; margin-bottom: 24px;
    transition: var(--transition);
}
.benefit-card-icon svg { width: 30px; height: 30px; }
.benefit-card:hover .benefit-card-icon { background: var(--primary); color: #fff; transform: rotate(-6deg) scale(1.06); }
.benefit-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.95rem; margin-bottom: 0; }
/* Iconiță centrată în fiecare card */
.benefit-head { display: block; }
.benefit-card-icon { margin-left: auto; margin-right: auto; }
.benefit-toggle { display: none; }
/* Pe mobil: acordeon ca la FAQ (descriere ascunsă, deschidere cu „+", un singur card deschis) */
@media (max-width: 768px) {
    .benefit-card { padding: 26px 24px; }
    .benefit-head { position: relative; cursor: pointer; text-align: center; user-select: none; }
    .benefit-head h3 { margin-bottom: 0; }
    .benefit-toggle {
        display: grid; place-items: center;
        position: absolute; top: 0; right: 0;
        width: 34px; height: 34px; border-radius: 50%;
        background: var(--primary-light); color: var(--primary-dark);
        transition: var(--transition);
    }
    .benefit-toggle svg { width: 18px; height: 18px; }
    .benefit-card.open .benefit-toggle { background: var(--primary); color: #fff; transform: rotate(135deg); }
    .benefit-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
    .benefit-card.open .benefit-body { max-height: 420px; }
    .benefit-body p { padding-top: 16px; text-align: center; }
}

/* ------------------------------------------------------------------ */
/*  Experience / space band (image + copy)                             */
/* ------------------------------------------------------------------ */
.experience-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.experience-figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.experience-figure img { width: 100%; aspect-ratio: 5/4; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.experience-figure:hover img { transform: scale(1.05); }
.experience-list { list-style: none; margin-top: 26px; }
.experience-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; color: var(--text-soft); }
.experience-list li svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ------------------------------------------------------------------ */
/*  Process (4 steps)                                                  */
/* ------------------------------------------------------------------ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process-grid::before {
    content: ''; position: absolute; top: 38px; left: 11%; right: 11%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary-mid) 0 8px, transparent 8px 16px);
    opacity: 0.5; z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
    width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 24px;
    display: grid; place-items: center; position: relative;
    background: var(--white); border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.step-number span {
    font-size: 1.5rem; font-weight: 900; color: var(--primary);
    transition: var(--transition);
}
.step-number::after {
    content: ''; position: absolute; inset: -7px; border-radius: 50%;
    border: 1.5px dashed var(--primary-mid); opacity: 0; transition: var(--transition);
}
.process-step:hover .step-number { background: var(--primary); border-color: var(--primary); transform: translateY(-6px); }
.process-step:hover .step-number span { color: #fff; }
.process-step:hover .step-number::after { opacity: 0.6; transform: rotate(20deg); }
.process-step h3 { font-size: 1.16rem; margin-bottom: 10px; }
.process-step p { font-size: 0.92rem; }

/* ------------------------------------------------------------------ */
/*  Pricing / services                                                 */
/* ------------------------------------------------------------------ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; align-items: stretch; }
.pricing-card {
    background: var(--white); padding: 44px 36px; border-radius: var(--radius-lg);
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; position: relative; overflow: hidden;
    transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.pricing-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow); }
.pricing-card.featured::before {
    content: 'Recomandat'; position: absolute; top: 22px; right: -42px;
    background: var(--primary); color: #fff; font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 48px;
    transform: rotate(45deg);
}
.price-title { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.price-duration { display: flex; align-items: center; gap: 7px; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 22px; }
.price-duration svg { width: 16px; height: 16px; color: var(--primary); }
.price-amount { display: flex; align-items: baseline; gap: 4px; font-size: 3rem; font-weight: 900; color: var(--text-color); margin-bottom: 24px; letter-spacing: -0.04em; }
.price-amount span { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0; }
.price-features { list-style: none; margin-bottom: 34px; flex-grow: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; font-size: 0.94rem; color: var(--text-soft); }
.price-features li svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.pricing-card .btn { width: 100%; }

/* ------------------------------------------------------------------ */
/*  Testimonials                                                       */
/* ------------------------------------------------------------------ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.testimonial-card {
    background: var(--white); padding: 40px 36px; border-radius: var(--radius);
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; position: relative; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.quote-icon {
    position: absolute; top: 24px; right: 32px; font-size: 4.5rem; line-height: 1;
    font-family: Georgia, serif; color: var(--primary-light); pointer-events: none;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 18px; }
.testimonial-content { font-size: 0.98rem; line-height: 1.75; color: var(--text-soft); font-style: italic; margin-bottom: 28px; flex-grow: 1; }
.client-info { display: flex; align-items: center; gap: 15px; }
.client-avatar { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.client-details strong { display: block; color: var(--text-color); font-weight: 800; font-size: 0.98rem; }
.client-details span { font-size: 0.8rem; color: var(--text-muted); }

/* ------------------------------------------------------------------ */
/*  Blog                                                               */
/* ------------------------------------------------------------------ */
.blog-intro-wrapper { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 52px; }
.blog-intro-wrapper h2 { margin-bottom: 8px; }
.blog-intro-wrapper p { margin-bottom: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; transition: var(--transition);
    position: relative; cursor: pointer;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.blog-card-img-wrapper { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.blog-card:hover .blog-card-img { transform: scale(1.07); }
.blog-card-content { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta { display: flex; gap: 18px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; }
.blog-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-card-title { font-size: 1.22rem; line-height: 1.3; margin-bottom: 12px; }
.blog-card-excerpt { font-size: 0.92rem; margin-bottom: 22px; flex-grow: 1; }
.blog-card-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.9rem; color: var(--primary-dark); }
.blog-card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.blog-card-link:hover svg { transform: translateX(5px); }
/* Stretched link: whole card (image, title, excerpt) becomes clickable */
.blog-card-link::after { content: ''; position: absolute; inset: 0; z-index: 2; }
.blog-card:hover .blog-card-title { color: var(--primary-dark); transition: color 0.3s var(--ease); }
.blog-card:hover .blog-card-link svg { transform: translateX(5px); }

/* ------------------------------------------------------------------ */
/*  FAQ accordion                                                      */
/* ------------------------------------------------------------------ */
.faq-accordion { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.faq-item.active { box-shadow: var(--shadow); border-color: var(--primary-light); }
.faq-header {
    width: 100%; padding: 24px 26px; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    text-align: left; font-family: var(--font-sans); font-weight: 700; font-size: 1.08rem; color: var(--text-color);
    transition: var(--transition);
}
.faq-header:hover { color: var(--primary-dark); }
.faq-icon-wrapper {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    background: var(--primary-light); color: var(--primary-dark);
    display: grid; place-items: center; transition: var(--transition);
}
.faq-icon-wrapper svg { width: 18px; height: 18px; }
.faq-item.active .faq-icon-wrapper { background: var(--primary); color: #fff; transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-content { padding: 0 26px 26px; color: var(--text-muted); font-size: 0.96rem; line-height: 1.75; }

/* ------------------------------------------------------------------ */
/*  Contact                                                            */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; }
.contact-info > div p { color: var(--text-muted); }
.contact-info-list { list-style: none; margin: 36px 0; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.contact-info-icon {
    width: 52px; height: 52px; border-radius: 15px; flex-shrink: 0;
    background: var(--primary-light); color: var(--primary-dark);
    display: grid; place-items: center;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text h4 { margin-bottom: 3px; font-size: 1rem; }
.contact-info-text p { margin-bottom: 0; font-size: 0.95rem; }
.contact-info-text a { color: var(--text-muted); }
.contact-info-text a:hover { color: var(--primary-dark); }
.contact-info-text a.maps-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 0.85rem; font-weight: 700; color: var(--primary-dark); }
.contact-info-text a.maps-link:hover { color: var(--accent-dark); }
.contact-info-text a.maps-link svg { flex-shrink: 0; }
/* Întregul element „Locație cabinet" devine clickabil spre Google Maps */
.location-item { position: relative; cursor: pointer; }
.location-item .contact-info-icon { transition: var(--transition); }
.location-item .maps-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.location-item:hover .contact-info-icon { background: var(--primary); color: #fff; }
/* Telefon & Email — întregul element clickabil (apel / trimite mail) */
.contact-link-item { position: relative; cursor: pointer; }
.contact-link-item .contact-info-icon { transition: var(--transition); }
.contact-link-item .contact-info-text a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.contact-link-item:hover .contact-info-icon { background: var(--primary); color: #fff; }

.social-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: auto; }
.social-btn {
    width: 46px; height: 46px; border-radius: 14px;
    background: var(--white); color: var(--primary-dark);
    display: grid; place-items: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-4px); border-color: var(--primary); }

.contact-form-container { background: var(--white); padding: 46px 40px; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.88rem; color: var(--text-soft); }
.form-control {
    width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--line-strong); background: var(--bg-color);
    font-family: var(--font-sans); font-size: 0.95rem; color: var(--text-color);
    transition: var(--transition);
}
.form-control::placeholder { color: #A89E92; }
.form-control:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(110,127,102,0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23786F66' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; font-size: 0.94rem; display: none; }
.form-status.success { display: block; background: var(--primary-light); color: var(--primary-dark); border-left: 4px solid var(--primary); }
.form-status.error { display: block; background: var(--accent-light); color: var(--accent-dark); border-left: 4px solid var(--accent); }

/* ------------------------------------------------------------------ */
/*  Floating WhatsApp                                                  */
/* ------------------------------------------------------------------ */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 62px; height: 62px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55);
    transition: var(--transition);
}
.whatsapp-float::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: #25D366; z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.5; } 70%,100% { transform: scale(1.7); opacity: 0; } }
.whatsapp-float:hover { transform: scale(1.1) rotate(6deg); color: #fff; }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ------------------------------------------------------------------ */
/*  Lightbox (click-to-zoom photos)                                    */
/* ------------------------------------------------------------------ */
.zoomable { cursor: zoom-in; }
.lightbox {
    position: fixed; inset: 0; z-index: 2000; display: none;
    align-items: center; justify-content: center; padding: 30px;
    background: rgba(44, 42, 38, 0.92);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    opacity: 0; transition: opacity 0.3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-img {
    max-width: 92vw; max-height: 86vh; border-radius: var(--radius);
    border: 6px solid #fff; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: lb-in 0.35s var(--ease-out);
}
@keyframes lb-in { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.lightbox-close, .lightbox-nav {
    position: absolute; border: none; cursor: pointer; color: #fff;
    background: rgba(255, 255, 255, 0.14); width: 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center; transition: background 0.25s var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-close svg, .lightbox-nav svg { width: 26px; height: 26px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
@media (max-width: 600px) {
    .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
    .lightbox-close { top: 14px; right: 14px; }
}

/* ------------------------------------------------------------------ */
/*  Single blog post                                                   */
/* ------------------------------------------------------------------ */
.blog-detail-section { padding-top: 150px; }
.blog-detail-header { max-width: 820px; margin: 0 auto 44px; text-align: center; }
.blog-detail-header h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.blog-detail-meta { display: flex; justify-content: center; gap: 24px; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 22px; }
.blog-detail-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-detail-img-wrapper { max-width: 960px; margin: 0 auto 50px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; }
.blog-detail-img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-content { max-width: 760px; margin: 0 auto; font-size: 1.12rem; line-height: 1.85; color: var(--text-soft); }
.blog-detail-content p { margin-bottom: 1.6rem; color: var(--text-soft); }
.blog-detail-content h3 { margin: 2.6rem 0 1rem; }
.blog-detail-content ul, .blog-detail-content ol { margin: 0 0 1.6rem; padding-left: 26px; }
.blog-detail-content li { margin-bottom: 10px; color: var(--text-soft); }
.back-to-home { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 32px; }
.back-to-home svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------------ */
/*  Footer                                                             */
/* ------------------------------------------------------------------ */
footer.site-footer { background: var(--primary-deep); color: #E9E3D9; padding: 84px 0 30px; }
footer.site-footer p { color: #C9C3B6; } /* WCAG 5.48:1 pe #3D4838 */
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr; gap: 48px; margin-bottom: 56px; }
.footer-col h3 { color: #fff; font-size: 1.15rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--accent); border-radius: 2px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 18px; }
.footer-brand .logo-mark { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(140deg, var(--primary), var(--primary-dark)); }
.footer-brand .logo-mark svg { width: 20px; height: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; display: flex; align-items: center; gap: 8px; color: #C9C3B6; font-size: 0.94rem; }
.footer-links li svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.footer-links a { color: #DAD4C8; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.07); color: #E9E3D9; transition: var(--transition); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; margin-bottom: 26px; }
.footer-legal .company-data { font-size: 0.82rem; line-height: 1.8; color: #C9C3B6; margin-bottom: 14px; }
.footer-legal .company-data strong { color: #EBB59D; } /* terracota accesibilă, 5.33:1 */
.footer-legal .company-data a { color: #DAD4C8; }
.footer-legal .company-data a:hover { color: #fff; }
.footer-legal .anpc-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal .anpc-links a { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: #DAD4C8; }
.footer-legal .anpc-links a svg { width: 15px; height: 15px; color: var(--accent); }
.footer-legal .anpc-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; font-size: 0.84rem; color: #C9C3B6; }
.footer-legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal-links a { color: #DAD4C8; }
.footer-legal-links a:hover { color: #fff; }

/* ------------------------------------------------------------------ */
/*  Scroll reveal animations                                           */
/* ------------------------------------------------------------------ */
.fade-up-element { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-up-element.animated { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left.animated { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right.animated { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-scale.animated { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    .fade-up-element, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
    html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ */
/*  Responsive                                                         */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
    section { padding: 84px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-content { order: 2; }
    .hero-image-wrapper { order: 1; max-width: 440px; margin: 0 auto; }
    .hero-actions, .hero-pills { justify-content: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .scroll-cue { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-figure { max-width: 460px; margin: 0 auto; }
    .experience-grid { grid-template-columns: 1fr; gap: 44px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trust-item:nth-child(odd) { border-left: none; padding-left: 0; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .process-grid::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    .container { padding: 0 20px; }
    .nav-menu {
        position: fixed; inset: 84px 0 auto 0; height: calc(100vh - 84px);
        flex-direction: column; justify-content: center; gap: 26px;
        background: var(--bg-color); transform: translateX(-100%);
        transition: transform 0.4s var(--ease-out); box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-link { font-size: 1.2rem; }
    .mobile-nav-toggle { display: flex; }
    .credentials-badges { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .hero-badge { left: 50%; transform: translateX(-50%); bottom: -28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-left: none !important; padding-left: 0 !important; }
    .contact-form-container, .pricing-card { padding: 32px 24px; }
}
