/* =========================================================
   AZMOB — Premium Light UI (FINAL • single CSS • no dubluri)
   - păstrează clasele tale existente (nu-ți rupe HTML-ul)
   - elimină conflictele (.paper / .steps / .cardMedia etc.)
   ========================================================= */

/* -------------------------
   0) TOKENS (Design System)
-------------------------- */
:root{
    --gold: var(--brand);
    --gold2: var(--brand2);

    --bg:#fff7ef;
    --bg2:#fff2e2;
    --paper:#ffffff;

    --ink:#201c18;
    --ink2: rgba(32,28,24,.82);
    --muted:#6c6258;

    --line: rgba(32,28,24,.10);
    --line2: rgba(32,28,24,.08);

    --brand:#c98a3a;     /* caramel */
    --brand2:#f0c35a;    /* gold */
    --accent:#2aa6a5;    /* teal */
    --accent2:#2f6fed;   /* blue */

    --radius:18px;
    --radius2:26px;

    --shadow: 0 18px 55px rgba(32,28,24,.10);
    --shadow2: 0 12px 26px rgba(32,28,24,.10);

    --wrap:1180px;
    --transition:180ms ease;
}

/* -------------------------
   1) RESET + BASE
-------------------------- */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
    margin:0;
    font-family:"Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color:var(--ink);
    background:
            radial-gradient(900px 520px at 12% 10%, rgba(240,195,90,.38), transparent 60%),
            radial-gradient(900px 520px at 88% 10%, rgba(42,166,165,.16), transparent 60%),
            linear-gradient(180deg, var(--bg), var(--bg2));
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.bg{ min-height:100vh; }
.wrap{ width:min(var(--wrap), calc(100% - 40px)); margin:0 auto; }

.muted{ color:var(--muted); }
.small{ font-size:13px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.center{
    display:flex;
    justify-content:center;
    margin-top:18px;
}

/* -------------------------
   2) UI PRIMITIVES
-------------------------- */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:14px;
    padding:12px 16px;
    border:1px solid var(--line);
    background: rgba(255,255,255,.70);
    box-shadow: var(--shadow2);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
    font-weight:600;
    cursor:pointer;
    user-select:none;
}
.btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(32,28,24,.14);
}
.btn:active{ transform: translateY(0); }

.btn.primary{
    border:1px solid rgba(201,138,58,.35);
    background: linear-gradient(135deg, rgba(201,138,58,.95), rgba(240,195,90,.92));
}
.btn.ghost{
    background: rgba(255,255,255,.55);
    border:1px solid rgba(32,28,24,.10);
}

.btn--big{ padding:12px 16px; border-radius:14px; font-weight:700; }

.chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 12px;
    border-radius:999px;
    border:1px solid rgba(32,28,24,.10);
    background: rgba(255,255,255,.65);
    box-shadow: 0 10px 22px rgba(32,28,24,.06);
    font-weight:600;
    color: rgba(32,28,24,.78);
}

.pill{
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(32,28,24,.10);
    background: rgba(255,255,255,.55);
    font-weight:600;
    color: rgba(32,28,24,.72);
}
.pill--dark{
    background: rgba(20,18,16,.62);
    color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}

.accentWord{
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.clamp2{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* -------------------------
   3) HEADER + NAV
-------------------------- */
.siteHeader{
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter: blur(10px);
    background: rgba(255,247,239,.62);
    border-bottom: 1px solid rgba(32,28,24,.08);
}
.topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
}
.brandMark{
    width:34px; height:34px;
    border-radius:12px;
    background:
            radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.85), transparent 60%),
            linear-gradient(135deg, rgba(201,138,58,1), rgba(42,166,165,.85));
    box-shadow: 0 18px 38px rgba(32,28,24,.14);
}
.brandText{
    font-weight:800;
    letter-spacing:.6px;
}
.nav{
    display:flex;
    align-items:center;
    gap:16px;
}
.nav a{
    padding:10px 12px;
    border-radius:12px;
    color: rgba(32,28,24,.80);
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
    border: 1px solid transparent;
}
.nav a:hover{
    background: rgba(255,255,255,.55);
    transform: translateY(-1px);
}
.nav a.active{
    background: rgba(255,255,255,.75);
    border-color: rgba(201,138,58,.22);
}

.burger{
    display:none;
    width:44px; height:44px;
    border-radius:14px;
    border:1px solid rgba(32,28,24,.10);
    background: rgba(255,255,255,.60);
    box-shadow: 0 10px 18px rgba(32,28,24,.08);
    cursor:pointer;
}
.burger span{
    display:block;
    height:2px;
    background: rgba(32,28,24,.72);
    margin:6px 11px;
    border-radius:10px;
}

.mobileNav{
    display:none;
    padding:8px 0 16px;
}
.mobileNav a{
    display:block;
    padding:12px 12px;
    border-radius:12px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(32,28,24,.08);
    margin-top:10px;
}

/* lock scroll când meniul mobil e deschis */
html.navOpen, body.navOpen{ overflow:hidden; }

/* mobile nav “premium” slide */
@media (max-width:980px){
    .nav{ display:none; }
    .burger{ display:block; }


    .mobileNav{
        display:block;
        max-height:0;
        overflow:hidden;
        transition: max-height .22s ease;
    }
    .mobileNav.show{ max-height:420px; }
}

/* -------------------------
   4) HERO (default)
-------------------------- */
.hero{ padding:46px 0 30px; }

.heroGrid{
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap:22px;
    align-items:stretch;
}
.heroText{
    padding:26px;
    border-radius: var(--radius2);
    border: 1px solid var(--line2);
    background: rgba(255,255,255,.65);
    box-shadow: var(--shadow);
}
.heroText h1{
    margin:14px 0 10px;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height:1.08;
    letter-spacing:-.5px;
}
.lead{
    margin:0 0 16px;
    color: rgba(32,28,24,.78);
    font-size:16px;
    line-height:1.7;
}
.lead--wide{ font-size:16px; max-width:56ch; }

.heroActions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:14px;
}
.heroStats{
    display:flex;
    gap:10px;
    margin-top:18px;
    flex-wrap:wrap;
}

.stat{
    flex:1;
    min-width:140px;
    padding:12px 14px;
    border-radius:16px;
    border:1px solid var(--line2);
    background: rgba(255,255,255,.55);
}
.stat .num{ font-weight:800; font-size:18px; }
.stat .lbl{ color:var(--muted); font-size:13px; }

.heroCard{
    border-radius: var(--radius2);
    border: 1px solid var(--line2);
    background: rgba(255,255,255,.68);
    box-shadow: var(--shadow);
    overflow:hidden;
}
.heroMedia{
    position:relative;
    padding:22px;
    min-height:260px;
}
.glow{
    position:absolute;
    inset:-30px;
    background:
            radial-gradient(260px 180px at 30% 30%, rgba(240,195,90,.42), transparent 60%),
            radial-gradient(240px 180px at 70% 20%, rgba(42,166,165,.22), transparent 60%);
    filter: blur(6px);
    pointer-events:none;
}
.mock{
    position:relative;
    border-radius:20px;
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(32,28,24,.10);
    box-shadow: 0 22px 48px rgba(32,28,24,.14);
    overflow:hidden;
}
.mockTop{
    height:48px;
    background: linear-gradient(135deg, rgba(201,138,58,.85), rgba(42,166,165,.55));
}
.mockBody{ padding:16px; }
.mockLine{
    height:12px;
    border-radius:10px;
    background: rgba(32,28,24,.10);
    margin-bottom:10px;
}
.mockLine.short{ width:62%; }
.mockGrid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
    margin-top:14px;
}
.mockTile{
    height:66px;
    border-radius:16px;
    background: rgba(32,28,24,.08);
}
.heroCardFooter{
    display:flex;
    gap:10px;
    padding:14px 18px 18px;
    flex-wrap:wrap;
    border-top: 1px solid var(--line2);
}

/* -------------------------
   5) SECTIONS + GRIDS + CARDS
-------------------------- */
.section{ padding:22px 0 40px; }
.section.soft{
    padding:32px 0 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.28));
    border-top: 1px solid rgba(32,28,24,.06);
    border-bottom: 1px solid rgba(32,28,24,.06);
}
.sectionHead{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
}
.sectionHead h2{
    margin:0;
    font-size:22px;
    letter-spacing:-.3px;
}
.sectionHead--split{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
}
@media (max-width:900px){
    .sectionHead, .sectionHead--split{
        flex-direction:column;
        align-items:flex-start;
    }
}

.grid{ display:grid; gap:14px; }
.grid.cards{ grid-template-columns: repeat(3, 1fr); }

.card{
    border-radius:20px;
    overflow:hidden;
    background: rgba(255,255,255,.70);
    border: 1px solid var(--line2);
    box-shadow: var(--shadow2);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.card:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(32,28,24,.14);
    background: rgba(255,255,255,.82);
}

.cardBody{ padding:14px 14px 16px; }
.cardBody h3{ margin:0 0 6px; letter-spacing:-.2px; }
.cardBody p{ margin:0; }

.cardPlaceholder{
    width:62px; height:62px;
    border-radius:18px;
    display:grid;
    place-items:center;
    font-weight:900;
    letter-spacing:1px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(32,28,24,.08);
    box-shadow: 0 18px 38px rgba(32,28,24,.10);
}

/* media în card (FIX FINAL fără acoladă în plus) */
.cardMedia{
    position:relative;
    aspect-ratio: 16/10;
    overflow:hidden;
    background: linear-gradient(135deg, rgba(240,195,90,.30), rgba(42,166,165,.14));
    display:flex;
    align-items:center;
    justify-content:center;
}
.cardMedia > img,
.cardMedia > video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:inherit;
}

/* -------------------------
   6) PAPER / RICH / CRUMB (UNIF)
-------------------------- */
.paper{
    border-radius:20px;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line2);
    box-shadow: var(--shadow);
    padding:18px;
}
.cardLift{ padding:18px; } /* compat cu codul tău */
.rich p{ margin:0 0 12px; }
.rich h2, .rich h3{ margin:16px 0 10px; }
.rich h2:first-child, .rich h3:first-child{ margin-top:0; }

.crumb{
    display:inline-block;
    margin-bottom:8px;
    color: rgba(32,28,24,.70);
    padding:8px 10px;
    border-radius:12px;
    border: 1px solid rgba(32,28,24,.08);
    background: rgba(255,255,255,.55);
}

/* -------------------------
   7) MEDIA GRID (Gallery thumbnails)
-------------------------- */
.grid.mediaGrid{ grid-template-columns: repeat(4, 1fr); }

.mCard{
    border-radius:18px;
    overflow:hidden;
    border: 1px solid var(--line2);
    background: rgba(255,255,255,.68);
    box-shadow: var(--shadow2);
    transition: transform var(--transition), box-shadow var(--transition);
}
.mCard:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(32,28,24,.14);
}

.mMedia{
    aspect-ratio:1/1;
    background: linear-gradient(135deg, rgba(240,195,90,.26), rgba(47,111,237,.10));
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.mMedia img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.videoPh{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    position:relative;
    color: rgba(32,28,24,.75);
    font-weight:800;
    letter-spacing:2px;
}
.play{
    width:66px; height:66px;
    border-radius:999px;
    border: 1px solid rgba(32,28,24,.10);
    background: rgba(255,255,255,.68);
    box-shadow: 0 18px 38px rgba(32,28,24,.12);
    position:relative;
    margin-bottom:10px;
}
.play::after{
    content:"";
    position:absolute;
    left:27px; top:21px;
    width:0; height:0;
    border-left:16px solid rgba(32,28,24,.72);
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
}
.mMeta{ padding:12px 12px 14px; }
.mTitle{ display:block; font-weight:600; }

/* -------------------------
   8) FEATURES + FOOT (basic)
-------------------------- */
.features{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
}
.feat{
    border-radius:20px;
    background: rgba(255,255,255,.70);
    border: 1px solid var(--line2);
    box-shadow: var(--shadow2);
    padding:16px;
}
.feat h3{ margin:0 0 6px; }

.link{ display:block; color: rgba(32,28,24,.78); padding:6px 0; }
.brandMini{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    margin-bottom:8px;
}
.copy{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 0 22px;
    color: rgba(32,28,24,.70);
    font-size:13px;
}

/* -------------------------
   9) RESPONSIVE (global)
-------------------------- */
@media (max-width:980px){
    .heroGrid{ grid-template-columns:1fr; }
    .grid.mediaGrid{ grid-template-columns: repeat(3, 1fr); }
    .features{ grid-template-columns:1fr; }
}
@media (max-width:560px){
    .grid.cards{ grid-template-columns:1fr; }
    .grid.mediaGrid{ grid-template-columns: repeat(2, 1fr); }
    .heroText{ padding:18px; }
    .heroMedia{ padding:14px; }
}

/* -------------------------
   10) STEPS / CTA / FAQ (clean single definitions)
   - fără dubluri: steps auto-fit (merge și 2 și 3 col)
-------------------------- */
.steps{
    display:grid;
    gap:16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top:16px;
}
.step{
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.06);
    border-radius:18px;
    padding:18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover{
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(0,0,0,.09);
}
.badge{
    width:34px; height:34px;
    border-radius:999px;
    display:grid;
    place-items:center;
    font-weight:700;
    background: linear-gradient(135deg, rgba(197,138,27,.35), rgba(0,150,136,.18));
    border: 1px solid rgba(0,0,0,.08);
    margin-bottom:10px;
}

.cta{ padding-bottom:54px; }
.ctaBox{
    background: linear-gradient(135deg, rgba(197,138,27,.22), rgba(0,150,136,.12));
    border: 1px solid rgba(0,0,0,.06);
    border-radius:22px;
    padding:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.07);
}
.ctaBtns{ display:flex; gap:10px; flex-wrap:wrap; }

.faq{ display:grid; gap:10px; margin-top:16px; }
.faq details{
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.06);
    border-radius:16px;
    padding:12px 14px;
}
.faq summary{
    cursor:pointer;
    font-weight:700;
    list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq p{ margin:8px 0 0; }

@media (max-width:900px){
    .ctaBox{ flex-direction:column; align-items:flex-start; }
}

/* -------------------------
   11) GALLERY VIEW (AZMOB) — păstrat, curățat
-------------------------- */
.siteBg{
    background:
            radial-gradient(900px 520px at 12% 10%, rgba(240,195,90,.25), transparent 60%),
            radial-gradient(900px 520px at 88% 10%, rgba(47,111,237,.10), transparent 60%),
            linear-gradient(180deg, #fff7ef, #f8f1e7);
    min-height:100vh;
}
.gWrap{
    width:min(1180px, 92vw);
    margin:0 auto;
    padding:22px 0 44px;
    color:#1f1a16;
}
.gBack{
    display:inline-flex;
    padding:10px 12px;
    border-radius:12px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(31,26,22,.10);
    font-weight:800;
}
.gHero{ margin-top:14px; }
.gHeroImg{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    min-height:300px;
    border: 1px solid rgba(31,26,22,.10);
    background: linear-gradient(135deg, rgba(240,195,90,.22), rgba(47,111,237,.10));
    background-size:cover;
    background-position:center;
    box-shadow: 0 18px 55px rgba(31,26,22,.12);
}
.gHeroOverlay{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45));
}
.gHeroText{
    position:relative;
    padding:22px;
    color:#fff;
    max-width:820px;
}
.gHeroText h1{
    margin:0;
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing:-.4px;
}
.gHeroText p{ margin:10px 0 0; opacity:.9; line-height:1.6; }

.gMeta{
    margin-top:14px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.gPill{
    display:inline-flex;
    align-items:center;
    padding:8px 10px;
    border-radius:999px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    font-weight:800;
    font-size:13px;
}

.gSection{ margin-top:16px; }
.gGrid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:12px;
}
.gItem{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    border: 1px solid rgba(31,26,22,.10);
    background: rgba(255,255,255,.65);
    box-shadow: 0 12px 26px rgba(31,26,22,.10);
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease;
}
.gItem:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(31,26,22,.14);
}
.gItem img{
    width:100%;
    height:240px;
    object-fit:cover;
}
/* VIDEO preview în gallery-view (la fel ca img) — GLOBAL */
.gItem video,
.gVideo .gVid{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}
.gItem{ overflow:hidden; }

.gHover{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    justify-content:flex-start;
    padding:12px;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
    opacity:0;
    transition: opacity .18s ease;
    pointer-events:none;
}
.gItem:hover .gHover{ opacity:1; }
.gTag{
    display:inline-flex;
    align-items:center;
    padding:7px 10px;
    border-radius:999px;
    font-weight:900;
    letter-spacing:.6px;
    font-size:12px;
    background: rgba(255,255,255,.85);
    color:#1f1a16;
}

.gVideo .gVideoPh{
    height:240px;
    display:grid;
    place-items:center;
    background: linear-gradient(135deg, rgba(240,195,90,.22), rgba(47,111,237,.12));
    position:relative;
}
.gPlay{
    width:70px; height:70px;
    border-radius:999px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(31,26,22,.10);
    box-shadow: 0 18px 38px rgba(31,26,22,.12);
    position:relative;
    margin-bottom:10px;
}
.gPlay::after{
    content:"";
    position:absolute;
    left:30px; top:22px;
    width:0; height:0;
    border-left:16px solid rgba(31,26,22,.72);
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
}
.gEmpty{
    margin-top:14px;
    padding:18px;
    border-radius:18px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(31,26,22,.10);
}

@media (max-width:980px){
    .gGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:560px){
    .gGrid{ grid-template-columns:1fr; }
    .gHeroImg{ min-height:260px; }
}

/* FOOTER: "Pagini" în 2 coloane */
.siteFooter .footCol{
    display:flex;
    flex-direction:column;
}

/* doar coloana "Pagini" */
.siteFooter .footCol .footLinks{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px; /* rând / coloană */
    margin-top: 10px;
}

/* linkurile în grid să arate bine */
.siteFooter .footCol .footLinks .link{
    display:block;
    padding: 6px 0;
    white-space: nowrap;
}

/* pe mobil: o coloană */
@media (max-width: 720px){
    .siteFooter .footCol .footLinks{
        grid-template-columns: 1fr;
    }
    .siteFooter .footCol .footLinks .link{
        white-space: normal;
    }
}

/* -------------------------
   12) FOOTER (AZMOB) — unificat

-------------------------- */


.siteFooter{
    margin-top:34px;
    border-top: 1px solid rgba(32,28,24,.08);
    background: rgba(255,255,255,.42);
    backdrop-filter: blur(8px);
}
.footTop{
    display:grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap:18px;
    padding:26px 0 14px;
}
.footPro p{ margin:10px 0 12px; }
.footBadges{ display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 14px; }
.footCols{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:18px;
}
.socialRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.socBtn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
    border: 1px solid rgba(32,28,24,.10);
    background: rgba(255,255,255,.62);
    box-shadow: 0 12px 26px rgba(32,28,24,.10);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    font-weight:600;
    color: rgba(32,28,24,.82);
}
.socBtn:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 40px rgba(32,28,24,.14);
}
.socIcon{ width:18px; height:18px; fill: rgba(32,28,24,.78); }

@media (max-width:980px){
    .footTop{ grid-template-columns:1fr; }
    .footCols{ grid-template-columns:1fr; }
}

/* footer strip (premium) */
.footStrip{
    display:grid;
    grid-template-columns: 1.25fr .75fr;
    gap:16px;
    padding:22px;
    border-radius:22px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 26px 70px rgba(0,0,0,.10);
    margin-top:18px;
}
.footStripRight{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.quickContacts{ display:flex; flex-direction:column; gap:6px; }
.qLink{
    display:inline-flex;
    padding:10px 12px;
    border-radius:14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.55);
    font-weight:700;
}
.footMain{
    display:grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap:18px;
    padding:22px 0 8px;
}
.footBtns{ display:flex; flex-direction:column; gap:10px; margin-top:12px; }

@media (max-width:980px){
    .footStrip{ grid-template-columns:1fr; }
    .footMain{ grid-template-columns:1fr; }
}

/* -------------------------
   13) PAGES (About/Contact) — stabil, fără dubluri
-------------------------- */
.page{ padding:34px 0 54px; }
.pageTop{ margin:6px 0 18px; }
.pageTop h1{ margin:0; letter-spacing:-.02em; }
.pageTop .lead{
    font-size:16.5px;
    line-height:1.75;
    max-width:62ch;
}
.kicker{
    margin:0 0 8px;
    font-weight:900;
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
    opacity:.75;
}

.premiumTop{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:14px;
    align-items:stretch;
    padding:18px;
    border-radius:18px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 18px 44px rgba(0,0,0,.10);
}
.premiumTop .topLeft{ padding:2px 4px; }
.premiumTop .topRight{ display:flex; align-items:stretch; }

.miniCard{
    width:100%;
    border-radius:16px;
    padding:14px;
    background: linear-gradient(135deg, rgba(197,138,27,.22), rgba(255,255,255,.55));
    border: 1px solid rgba(0,0,0,.08);
}
.miniRow{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:10px;
    border-radius:14px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.06);
    margin-bottom:10px;
}
.miniRow:last-child{ margin-bottom:0; }
.dot{
    width:10px; height:10px;
    margin-top:6px;
    border-radius:999px;
    background: rgba(197,138,27,.9);
    box-shadow: 0 0 0 4px rgba(197,138,27,.18);
}

.quickBadges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
}

.grid2{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:14px;
}
.premiumGrid{ margin-top:14px; }

.cardHead{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:10px;
}
.tag{
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:6px 10px;
    border-radius:999px;
    background: rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.10);
}
.tag.soft{ opacity:.8; }

.ctaRow{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:10px;
}

.contactList{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:8px;
}
.contactItem{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    border-radius:16px;
    background: rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.08);
    color:inherit;
    transition: transform .18s ease, box-shadow .18s ease;
}
.contactItem:hover{
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
    transform: translateY(-1px);
}
.contactItem .ico{
    width:40px; height:40px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(0,0,0,.08);
    font-size:18px;
}
.contactItem .txt{
    flex:1;
    display:flex;
    flex-direction:column;
}
.contactItem .go{ opacity:.6; font-weight:900; }

.divider{
    height:1px;
    background: rgba(0,0,0,.10);
    margin:14px 0;
}

.twoCols{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px;
}
.box{
    padding:12px;
    border-radius:16px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.06);
}
.listClean{
    list-style:none;
    padding:0;
    margin:10px 0 0;
}
.listClean li{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding:8px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.listClean li:last-child{ border-bottom:0; }

.mapShell{ margin-top:12px; }
.mapFake{
    height:220px;
    border-radius:16px;
    border: 1px solid rgba(0,0,0,.10);
    background:
            radial-gradient(900px 320px at 20% 30%, rgba(197,138,27,.18), transparent 60%),
            linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
    display:grid;
    place-items:center;
    font-weight:900;
    opacity:.75;
}

/* FORM */
.form .field{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-bottom:12px;
}
.form .field > span{
    font-weight:900;
    font-size:13px;
    opacity:.85;
}
.form input, .form select, .form textarea{
    width:100%;
    padding:12px 12px;
    border-radius:16px;
    border: 1px solid rgba(0,0,0,.14);
    background: rgba(255,255,255,.85);
    outline:none;
    font:inherit;
    transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.form input:focus, .form select:focus, .form textarea:focus{
    border-color: rgba(197,138,27,.55);
    box-shadow: 0 0 0 5px rgba(197,138,27,.18);
}
.hint{
    display:block;
    margin-top:6px;
    font-size:12.5px;
    opacity:.8;
}
.formActions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:8px;
}
.premiumForm .row2{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px;
}

/* ABOUT showcase */
.showImg{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    border: 1px solid rgba(0,0,0,.10);
    background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
}
.showImg img{
    width:100%;
    height:230px;
    object-fit:cover;
}
/* Despre: logo/poze în showcase să nu fie tăiate */
.aboutTop .showImg{
    background:#fff;
}

.aboutTop .showImg img{
    object-fit: contain;   /* override cover */
    padding: 18px;
}

.aboutTop .showImg .imgFallback{ display:none; }


.imgFallback{ padding:14px; }
.imgFallback .shine{
    width:100%;
    height:120px;
    border-radius:14px;
    background:
            radial-gradient(700px 260px at 20% 25%, rgba(255,255,255,.85), transparent 55%),
            linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
    margin-bottom:10px;
}
.stats{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:10px;
    margin-top:10px;
}
.stats .stat{
    padding:10px;
    border-radius:14px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.06);
    min-width:auto;
}
.stats .stat b{ display:block; }

.sectionTitle{ margin-bottom:12px; }
.sectionTitle h2{ margin:0; }
.sectionTitle p{ margin:6px 0 0; }

.cards3{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:12px;
}
.cards2{
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:12px;
}
.miniService{
    padding:14px;
    border-radius:16px;
    background: rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.08);
}
.icoBig{ font-size:22px; }
.miniService h3{ margin:10px 0 6px; }
.miniService p{ margin:0; }

.whyGrid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px;
}
.whyCard{
    padding:14px;
    border-radius:16px;
    background: rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.08);
}

.ctaInline{
    margin-top:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px;
    border-radius:16px;
    background: linear-gradient(135deg, rgba(197,138,27,.22), rgba(255,255,255,.55));
    border: 1px solid rgba(0,0,0,.08);
}

.faqPremium details, .faqMini details{
    border-radius:14px;
    background: rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.08);
    padding:10px 12px;
    margin:10px 0 0;
}
.faqPremium summary, .faqMini summary{ cursor:pointer; font-weight:950; }
.faqPremium p, .faqMini p{ margin:8px 0 0; opacity:.85; }

@media (max-width:980px){
    .premiumTop{ grid-template-columns:1fr; }
    .grid2{ grid-template-columns:1fr; }
    .premiumForm .row2{ grid-template-columns:1fr; }
    .twoCols{ grid-template-columns:1fr; }
    .cards3{ grid-template-columns:1fr; }
    .cards2{ grid-template-columns:1fr; }
    .whyGrid{ grid-template-columns:1fr; }
    .stats{ grid-template-columns:1fr; }
}

/* -------------------------
   14) INDEX PREMIUM (add-on) — fără a strica hero normal
-------------------------- */
.hero--premium{ padding:54px 0 34px; }

.heroGrid--premium{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap:28px;
    align-items:center;
}
.heroText--premium{ max-width:680px; }

.chip--shine{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    border-radius:999px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 14px 36px rgba(0,0,0,.10);
}
.chip--shine .dot{
    width:8px; height:8px;
    border-radius:999px;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(197,138,27,.14);
    margin-top:0;
}

.heroTitle{
    font-size:46px;
    line-height:1.05;
    letter-spacing:-.02em;
    margin:14px 0 10px;
}

.heroStats--premium{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:16px;
}
.stat--glass{
    min-width:150px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.06);
    border-radius:16px;
    padding:10px 12px;
    box-shadow: 0 18px 46px rgba(0,0,0,.10);
}
.stat--glass .num{ font-size:18px; font-weight:900; }
.stat--glass .lbl{ font-size:12px; color:var(--muted); margin-top:2px; }

.trustRow{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-top:14px;
}
.trustPill{
    padding:8px 10px;
    border-radius:999px;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(0,0,0,.06);
    font-size:12px;
}

.heroVisual{ position:relative; }
.heroFrame{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 28px 70px rgba(0,0,0,.16);
    min-height:420px;
}
.heroGlow{
    position:absolute;
    inset:-60px;
    background:
            radial-gradient(520px 320px at 30% 20%, rgba(240,195,90,.55), transparent 60%),
            radial-gradient(520px 320px at 80% 60%, rgba(197,138,27,.22), transparent 65%);
    filter: blur(2px);
    pointer-events:none;
}
.heroImg{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    position:relative;
    z-index:1;
}
.heroMock{ position:relative; z-index:1; padding:18px; }
.heroBadges{
    position:absolute;
    left:14px;
    bottom:14px;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    z-index:2;
}

/* Premium cards grid */
.cards--premium{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card--premium{ border-radius:18px; overflow:hidden; }
.cardMedia--premium{ position:relative; }
.cardMedia--premium img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
.cardPlaceholder--premium{
    height:220px;
    display:grid;
    place-items:center;
    font-weight:900;
    font-size:32px;
}
.cardFade{
    position:absolute;
    inset:auto 0 0 0;
    height:55%;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}
.cardBody--premium{ padding:14px 14px 16px; }
.cardBody--premium h3{ margin:0 0 6px; }

.miniLink{
    display:inline-block;
    margin-top:10px;
    font-weight:700;
    color:#3a2f23;
}

/* features premium */
.features--premium{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap:14px;
}
.featCard{
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(0,0,0,.06);
    border-radius:18px;
    padding:16px;
    box-shadow: 0 18px 46px rgba(0,0,0,.10);
}
.featCard .ico{
    width:42px; height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background: linear-gradient(180deg, rgba(240,195,90,.70), rgba(197,138,27,.35));
    font-weight:900;
    margin-bottom:10px;
}

/* steps premium (doar cosmetizare, nu dublăm grid-ul) */
.steps--premium{ margin-top:16px; }
.step--premium{
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.06);
    border-radius:18px;
    padding:16px;
    box-shadow: 0 18px 46px rgba(0,0,0,.10);
}
.badge--ring{
    width:36px; height:36px;
    border-radius:999px;
    display:grid;
    place-items:center;
    background: rgba(255,255,255,.70);
    border: 2px solid rgba(197,138,27,.45);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    font-weight:900;
    margin-bottom:10px;
}

.cta--premium{ padding-top:22px; }
.ctaBox--premium{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    border-radius:22px;
    padding:18px;
    background:
            radial-gradient(900px 320px at 20% 0%, rgba(240,195,90,.48), transparent 60%),
            radial-gradient(900px 420px at 90% 80%, rgba(197,138,27,.22), transparent 65%),
            rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 26px 70px rgba(0,0,0,.14);
}

.faq--premium{ display:grid; gap:10px; }
.faqItem{
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.06);
    border-radius:16px;
    padding:10px 12px;
    box-shadow: 0 18px 46px rgba(0,0,0,.10);
}
.faqItem summary{
    cursor:pointer;
    list-style:none;
    font-weight:800;
    padding:8px 6px;
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqBody{ padding:2px 6px 10px; }

@media (max-width:980px){
    .heroGrid--premium{ grid-template-columns:1fr; }
    .heroTitle{ font-size:38px; }
    .cards--premium{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    .features--premium{ grid-template-columns:1fr; }
    .heroFrame{ min-height:340px; }
}
@media (max-width:560px){
    .heroTitle{ font-size:32px; }
    .cards--premium{ grid-template-columns:1fr; }
}

/* Hero slideshow premium */
.heroSlide{
    position:relative;
    z-index:1;
    width:100%;
    height:100%;
    border-radius:22px;
    overflow:hidden;
}
.heroSlideImg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transform: scale(1.03);
    transition: opacity .65s ease, transform 3.2s ease;
    opacity:0;
}
.heroSlideImg.is-on{
    opacity:1;
    transform: scale(1);
}
.heroSlide::after{
    content:"";
    position:absolute;
    inset:0;
    background:
            radial-gradient(900px 420px at 70% 20%, rgba(255,255,255,.10), transparent 55%),
            linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.18));
    pointer-events:none;
}

/* -------------------------
   15) FAQ GRID (AZMOB style cards)
-------------------------- */
.faqHero{
    text-align:center;
    margin:40px 0 26px;
}
.faqHero h1{
    font-size:42px;
    font-weight:900;
    letter-spacing:-.02em;
}
.faqHero h1 span{ color:var(--brand); }
.faqLine{
    width:60px;
    height:3px;
    margin:14px auto 0;
    background: linear-gradient(90deg, var(--brand), var(--brand2));
    border-radius:3px;
}
.faqGrid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:28px;
    margin-bottom:60px;
}
.faqCard{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
    transition: transform .2s ease, box-shadow .2s ease;
}
.faqCard:hover{
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,.18);
}
.faqCard img{
    width:100%;
    height:220px;
    object-fit:cover;
}
.faqCard h3{
    font-size:18px;
    font-weight:800;
    padding:18px 18px 8px;
    line-height:1.35;
}
.faqCard p{
    padding:0 18px 20px;
    color:#555;
    line-height:1.65;
}
@media (max-width:1100px){
    .faqGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:640px){
    .faqGrid{ grid-template-columns: 1fr; }
}

/* -------------------------
   16) SEARCH PANEL (dark premium)
-------------------------- */
.searchPanel{
    padding:14px;
    border-radius:18px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(40,44,54,.92);
    box-shadow: 0 14px 32px rgba(0,0,0,.22);
}
.searchRow{
    display:flex;
    gap:12px;
    align-items:center;
}
.searchRow .input,
.searchRow input[type="text"],
.searchRow input[type="search"],
.searchRow select{
    flex:1;
    height:46px;
    padding:0 14px;
    border-radius:14px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(12,14,18,.92);
    color:#fff;
    outline:none;
    transition: .2s ease;
}
.searchRow .input::placeholder,
.searchRow input::placeholder{
    color: rgba(255,255,255,.55);
}
.searchRow .input:focus,
.searchRow input:focus,
.searchRow select:focus{
    border-color: rgba(0,230,255,.55);
    box-shadow: 0 0 0 4px rgba(0,230,255,.18);
}
.searchRow select{
    appearance:none;
    -webkit-appearance:none;
    background-image:
            linear-gradient(45deg, transparent 50%, rgba(255,255,255,.7) 50%),
            linear-gradient(135deg, rgba(255,255,255,.7) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size:6px 6px, 6px 6px;
    background-repeat:no-repeat;
    padding-right:34px;
}
.searchRow .btn.primary{
    height:46px;
    padding:0 18px;
    border-radius:14px;
    font-weight:800;
    letter-spacing:.2px;
    background:#d6a12b;
    border: 1px solid rgba(0,0,0,.12);
    color:#1a1408;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.searchRow .btn.primary:hover{ filter: brightness(1.05); }

@media (max-width:520px){
    .searchRow{
        flex-direction:column;
        align-items:stretch;
    }
    .searchRow .btn.primary{
        width:100%;
        justify-content:center;
    }
}

/* -------------------------
   17) ERROR PAGE
-------------------------- */
.errorCard{
    max-width:920px;
    margin:0 auto;
    padding:28px;
    border-radius:20px;
}
.errorGrid{
    display:flex;
    gap:18px;
    align-items:flex-start;
    flex-wrap:wrap;
}
.errorIcon{ font-size:44px; line-height:1; }
.errorBody{ flex:1; min-width:260px; }
.errorTitle{
    margin:0 0 10px;
    font-size:28px;
    letter-spacing:-.02em;
}
.errorText{
    margin:0 0 16px;
    max-width:68ch;
}
.errorActions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:14px;
}
.errorMeta{ margin-top:18px; font-size:13px; }


/* =========================================================
   MATERIALS PAGE (PUBLIC) — isolated + stable
   Scope: only inside <main class="materialsPage">
   ========================================================= */

main.materialsPage{
    padding: 18px 0 40px;
}

/* top */
main.materialsPage .materialsTop{
    padding: 10px 0 10px;
}
main.materialsPage .materialsTop h1{
    margin:0 0 6px;
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: -.02em;
}
main.materialsPage .materialsTop p{
    margin:0;
    max-width: 70ch;
}

/* category block */
main.materialsPage .materialsSection{
    margin-top: 20px;
}

/* head row */
main.materialsPage .materialsHead{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
    margin: 14px 0 12px;
}
main.materialsPage .materialsTitle{
    margin:0;
    font-size: 22px;
    letter-spacing: -.01em;
}

/* =========================
   GRID (cards on rows)
   ========================= */
main.materialsPage .materialsGrid{
    display:grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 16px !important;
    align-items: stretch;
}

/* responsive */
@media (max-width: 980px){
    main.materialsPage .materialsGrid{
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    }
}
@media (max-width: 560px){
    main.materialsPage .materialsGrid{
        grid-template-columns: 1fr !important;
    }
}

/* =========================
   CARD
   ========================= */
main.materialsPage .matCard{
    display:flex;
    flex-direction:column;
    min-width:0;
    border-radius: 18px;
    overflow:hidden;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(32,28,24,.10);
    box-shadow: 0 12px 26px rgba(32,28,24,.10);
}

/* media block */
main.materialsPage .matMedia{
    position:relative;
    width:100%;
    aspect-ratio: 16 / 10;              /* thumbnail corect */
    background: rgba(32,28,24,.06);
    overflow:hidden;
}

/* force media to fill */
main.materialsPage .matMedia > img,
main.materialsPage .matMedia > video{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

/* placeholder */
main.materialsPage .matPh{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* badge (IMAGE / VIDEO) */
main.materialsPage .matBadge{
    position:absolute;
    top:10px; left:10px;
    z-index:2;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    padding:6px 10px;
    border-radius:999px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(32,28,24,.12);
    backdrop-filter: blur(8px);
}

/* body */
main.materialsPage .matBody{
    padding: 12px 14px 14px;
}
main.materialsPage .matTitle{
    margin:0 0 6px;
    font-weight: 950;
    letter-spacing: -.01em;
}
main.materialsPage .matDesc{
    margin:0;
    font-size: 14px;
    line-height:1.65;
}

/* small polish */
main.materialsPage .muted{ opacity:.85; }


/* =========================
   LOGO – HEADER & FOOTER
   ========================= */

/* HEADER */
.brand{
    display:flex;
    align-items:center;
    gap:16px;
}

.brandLogo{
    height:64px;          /* ← CHEIA (era 44, prea mic) */
    width:auto;
    display:block;
    object-fit:contain;
}

/* FOOTER */
.brandMini{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:inherit;
}

.brandLogoMini{
    height:56px;          /* ← CHEIA (era 34, prea mic) */
    width:auto;
    display:block;
    object-fit:contain;
}

/* Responsive */
@media (max-width: 820px){
    .brandLogo{ height:52px; }
    .brandLogoMini{ height:44px; }
}


.brandLogo,
.brandLogoMini{
    transform: scale(1.2);
    transform-origin: left center;
}


/*marchez albul la log*/
.brandLogo,
.brandLogoMini{
    background: transparent;
    mix-blend-mode: multiply;
}


/* ===== Contact Map ===== */

.mapShell{
    margin-top: 14px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow2);
}

.mapFrame{
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.mapActions{
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,.75);
    justify-content: center;
}

/* ===== Map buttons colors ===== */

/* Google Maps – negru elegant */
.btnMaps{
    background: linear-gradient(135deg, #111, #2a2a2a);
    color: #fff;
    border: 1px solid rgba(0,0,0,.6);
}
.btnMaps:hover{
    background: linear-gradient(135deg, #000, #1f1f1f);
}

/* Waze – albastru */
.btnWaze{
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    color: #fff;
    border: 1px solid rgba(30,136,229,.55);
}
.btnWaze:hover{
    background: linear-gradient(135deg, #1976d2, #2196f3);
}


/* Contacte — harta + butoane */
.mapShell{ margin-top:14px; border-radius:18px; overflow:hidden; position:relative; }
.mapFrame{ width:100%; height:320px; border:0; display:block; }

.mapOverlay{
    position:absolute; left:12px; bottom:12px;
    padding:10px 12px; border-radius:14px;
    background: rgba(255,255,255,.88);
    border:1px solid rgba(0,0,0,.10);
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
    backdrop-filter: blur(10px);
}

.mapActions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.btnNav{
    display:inline-flex; align-items:center; justify-content:center;
    padding:12px 14px; border-radius:14px;
    font-weight:900; text-decoration:none;
    border:1px solid rgba(0,0,0,.10);
}

/* Waze = albastru */
.btnWaze{
    background: linear-gradient(135deg, #2f6fed, #4f86ff);
    color:#fff;
    border-color: rgba(47,111,237,.35);
}

/* Maps = negru */
.btnMaps{
    background: linear-gradient(135deg, #0f1115, #2a2f3a);
    color:#fff;
    border-color: rgba(15,17,21,.35);
}

/* pe mobil: Waze primul */
@media (max-width: 720px){
    .mapActions{ flex-direction:column; }
    .btnWaze{ order:0; }
    .btnMaps{ order:1; }
}


/*viber, whatup,*/

/* === Floating Contact — FIXED BOTTOM === */
.floatContact{
    position: fixed !important;
    right: 14px !important;
    bottom: 18px !important;

    top: auto !important;
    transform: none !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;

    z-index: 2000 !important; /* suficient, nu peste lightbox */
}

/* butoane */
.fcBtn{
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 12px 26px rgba(0,0,0,.12);
    background: #fff;
}

/* Mesaj */
.fcMsg{
    width: auto;
    padding: 0 14px;
    height: 40px;
    font-weight: 800;
    font-size: 12px;
    color: #111;
}

/* icon */
.fcIcon{
    width: 22px;
    height: 22px;
    display: block;
}

/* SIGURANȚĂ: când e deschis lightbox-ul, dispare */
body.lg-on .floatContact{
    opacity: 0;
    pointer-events: none;
}


/* bară de navigație peste hero */
.gNavTop{
    position:absolute;
    left:18px;
    right:18px;
    top:14px;
    z-index:7;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

/* buton back */
.gBack{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    background: rgba(20,16,12,.42);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    text-decoration:none;
    font-weight:900;
    font-size:13px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.gBack:hover{ filter: brightness(1.06); }
.gBackIco{ font-size:16px; line-height:1; opacity:.95; }

/* HERO must allow overlay positioning */
.gHeroImg{ position:relative; }

/* overlay să nu acopere nav */
.gHeroOverlay{ position:absolute; inset:0; z-index:1; }
.gHeroText{ position:relative; z-index:2; }

/* NAV TOP peste hero */
.gNavTop{
    position:absolute;
    left:18px;
    right:18px;
    top:14px;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

/* Back button */
.gBack{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    background: rgba(20,16,12,.42);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    text-decoration:none;
    font-weight:900;
    font-size:13px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.gBack:hover{ filter: brightness(1.06); }
.gBackIco{ font-size:16px; line-height:1; opacity:.95; }

/* Breadcrumb premium */
.gCrumb{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 12px;
    border-radius:999px;
    background: rgba(20,16,12,.32);
    border:1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,.14);
    font-size:13px;
    line-height:1;
}
.gCrumb a{ color:#fff; text-decoration:none; font-weight:800; opacity:.95; }
.gCrumb a:hover{ opacity:1; text-decoration:underline; }
.gCrumb span{ opacity:.85; }

/* Mobile */
@media (max-width:640px){
    .gNavTop{
        left:12px; right:12px; top:10px;
        flex-direction:column;
        align-items:flex-start;
    }
    .gCrumb{
        max-width:100%;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    /* video preview în gallery-view (la fel ca img) */
    .gItem video,
    .gVideo .gVid{
        width:100%;
        height:240px;
        object-fit:cover;
        display:block;
    }


}


