/* =====================================================================
   Machinery JoBo — foaia de stil a site-ului public
   Paleta este preluata din logo: bleumarin adanc si auriu cald.
   ===================================================================== */

:root {
    --navy-900: #0E2136;
    --navy-800: #163350;
    --navy:     #1B3A5C;
    --navy-600: #2A5583;
    --navy-100: #E8EDF4;

    --gold:     #C9A44C;
    --gold-600: #AE8B36;
    --gold-100: #F7F0DD;

    --ink:      #16222E;
    --muted:    #5B6B7D;
    --line:     #DFE5EC;
    --bg:       #FFFFFF;
    --bg-alt:   #F4F6F9;

    --radius:    14px;
    --radius-sm: 9px;
    --shadow:    0 1px 2px rgba(14, 33, 54, .05), 0 8px 28px rgba(14, 33, 54, .07);
    --shadow-lg: 0 20px 60px rgba(14, 33, 54, .16);

    --wrap: 1200px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, sans-serif;
}

/* --- Baza ---------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-600); }

h1, h2, h3 {
    margin: 0 0 .5em;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--navy-900);
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: 3px;
}

.container { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow    { width: min(100% - 2.5rem, 820px); margin-inline: auto; }
.center    { text-align: center; }
.muted     { color: var(--muted); }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--navy); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* --- Butoane -------------------------------------------------------- */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .85rem 1.6rem;
    border: 1.5px solid transparent;
    border-radius: 999px;
    font-size: .97rem; font-weight: 600; letter-spacing: .01em;
    text-decoration: none; cursor: pointer;
    transition: background-color .18s ease, color .18s ease,
                border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm    { padding: .6rem 1.15rem; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.btn-gold { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
.btn-gold:hover { background: #D8B662; color: var(--navy-900); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { background: var(--navy-100); color: var(--navy); border-color: var(--navy-100); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

.link-arrow { font-weight: 600; text-decoration: none; white-space: nowrap; }
.link-arrow::after { content: " →"; }
.link-arrow:hover { text-decoration: underline; }

/* --- Antet ---------------------------------------------------------- */

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; min-height: 78px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { width: auto; height: 46px; }

.nav-toggle {
    display: grid; place-items: center;
    width: 46px; height: 46px; padding: 0;
    background: transparent; border: 1px solid var(--line);
    border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 4px; }
.nav-toggle-bars span {
    display: block; width: 19px; height: 2px;
    background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav { display: none; }
.site-nav.is-open {
    display: block;
    position: absolute; inset: 78px 0 auto; 
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.75rem; box-shadow: var(--shadow);
}

.nav-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .15rem; }

.nav-link {
    display: block; padding: .7rem .25rem;
    font-size: .97rem; font-weight: 500; color: var(--ink); text-decoration: none;
    border-bottom: 1px solid var(--line);
}
.nav-link:hover, .nav-link.is-active { color: var(--navy); }
.nav-link.is-active { font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.lang-switch { display: flex; gap: .25rem; }
.lang-link {
    padding: .35rem .6rem; border-radius: var(--radius-sm);
    font-size: .82rem; font-weight: 700; letter-spacing: .04em;
    color: var(--muted); text-decoration: none;
}
.lang-link:hover { background: var(--bg-alt); color: var(--navy); }
.lang-link.is-active { background: var(--navy); color: #fff; }

/* --- Erou ----------------------------------------------------------- */

.hero { position: relative; color: #fff; isolation: isolate; }

.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(105deg, rgba(14, 33, 54, .93) 0%,
                                        rgba(14, 33, 54, .82) 45%,
                                        rgba(14, 33, 54, .55) 100%);
}

.hero-inner { padding: 4.5rem 0 4rem; max-width: 720px; }

.hero-badge {
    display: inline-block; margin: 0 0 1.25rem;
    padding: .45rem 1rem; border: 1px solid rgba(201, 164, 76, .55);
    border-radius: 999px; background: rgba(201, 164, 76, .12);
    font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: var(--gold);
}

.hero-title { color: #fff; font-size: clamp(2.15rem, 6vw, 3.75rem); margin-bottom: .4em; }
.hero-title .accent { color: var(--gold); }

.hero-sub { font-size: clamp(1.02rem, 2vw, 1.2rem); color: rgba(255, 255, 255, .87); max-width: 56ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* --- Banda cu repere ------------------------------------------------ */

.strip { background: var(--navy-900); color: #fff; }
.strip-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem; padding: 2.25rem 0;
}
.strip-value { margin: 0; font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.strip-label { margin: .2rem 0 0; font-size: .87rem; color: rgba(255, 255, 255, .68); line-height: 1.45; }

/* --- Sectiuni ------------------------------------------------------- */

.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 62ch; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: var(--muted); margin: 0; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-head-row {
    display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
    gap: 1rem; max-width: none; text-align: left;
}
.section-head-row p { max-width: 60ch; }

.block-title { font-size: 1.25rem; margin-bottom: 1rem; }

/* --- Categorii ------------------------------------------------------ */

.cat-grid { display: grid; gap: 1.25rem; }

.cat-card {
    position: relative; display: block; overflow: hidden;
    border-radius: var(--radius); background: var(--navy-900);
    color: #fff; text-decoration: none; box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }

.cat-media { display: block; aspect-ratio: 4 / 3; }
.cat-media img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: .58; transition: opacity .25s ease, transform .5s ease;
}
.cat-card:hover .cat-media img { opacity: .72; transform: scale(1.04); }

.cat-body { position: absolute; inset: auto 0 0; padding: 1.5rem; display: grid; gap: .1rem; }
.cat-count {
    display: inline-block; width: fit-content; margin-bottom: .35rem;
    padding: .1rem .55rem; border-radius: 999px;
    background: var(--gold); color: var(--navy-900);
    font-size: .78rem; font-weight: 700;
}
.cat-name { font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em; }
.cat-short { font-size: .9rem; color: rgba(255, 255, 255, .78); }

/* --- Carduri de anunt ----------------------------------------------- */

.card-grid { display: grid; gap: 1.5rem; }

.card {
    display: flex; flex-direction: column; overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card-media { position: relative; display: block; aspect-ratio: 16 / 11; background: var(--bg-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-badge {
    position: absolute; top: .85rem; left: .85rem;
    padding: .28rem .7rem; border-radius: 999px;
    background: rgba(14, 33, 54, .88); color: #fff;
    font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}

.card-body { display: flex; flex-direction: column; flex: 1; padding: 1.35rem; }

.card-ref {
    margin: 0 0 .35rem; font-size: .76rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}

.card-title { font-size: 1.1rem; margin-bottom: 1rem; line-height: 1.35; }
.card-title a { color: var(--navy-900); text-decoration: none; }
.card-title a:hover { color: var(--navy-600); }

.card-specs {
    list-style: none; margin: 0 0 1.25rem; padding: 1rem 0 0;
    border-top: 1px solid var(--line);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
}
.card-specs li { display: grid; gap: .1rem; min-width: 0; }
.card-specs span { font-size: .74rem; color: var(--muted); }
.card-specs strong { font-size: .87rem; font-weight: 600; color: var(--ink); }

.card-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: .75rem; margin-top: auto; flex-wrap: wrap;
}
.card-price { font-size: .87rem; font-weight: 600; color: var(--gold-600); }

/* --- Pasi ----------------------------------------------------------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; counter-reset: step; }
.step {
    position: relative; padding: 1.75rem 1.5rem 1.5rem;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.step-num {
    display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1rem;
    background: var(--gold-100); border-radius: 12px;
    font-size: 1.05rem; font-weight: 700; color: var(--gold-600);
}
.step h3 { margin-bottom: .35em; }
.step p { margin: 0; font-size: .95rem; color: var(--muted); }

/* --- De ce noi ------------------------------------------------------ */

.why-layout { display: grid; gap: 2.5rem; }
.why-media img { width: 100%; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.why-list li { padding-left: 1.25rem; border-left: 3px solid var(--gold); }
.why-list h3 { margin-bottom: .3em; }
.why-list p { margin: 0; color: var(--muted); font-size: .95rem; }

/* --- Chemare la actiune --------------------------------------------- */

.cta { background: var(--navy); color: #fff; }
.cta-inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 1.75rem; padding: 3rem 0;
}
.cta h2 { color: #fff; margin-bottom: .3em; }
.cta p { margin: 0; color: rgba(255, 255, 255, .8); max-width: 58ch; }

/* --- Capul paginilor interioare ------------------------------------- */

.page-head { padding: 2.5rem 0 2rem; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-head-slim { padding: 1.25rem 0; }
.page-head h1 { margin-bottom: .35em; }
.page-lead { max-width: 68ch; margin: 0; color: var(--muted); font-size: 1.02rem; }

.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; font-size: .85rem; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--navy); text-decoration: underline; }

/* --- Filtre --------------------------------------------------------- */

.filters {
    display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1rem;
    padding: 1.25rem; margin-bottom: 2rem;
    background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
}
.filter-field { display: grid; gap: .35rem; }
.filter-field label { font-size: .8rem; font-weight: 600; color: var(--muted); }
.filter-actions { display: flex; gap: .5rem; }
.filter-count { margin: 0 0 0 auto; font-size: .87rem; color: var(--muted); }

select, input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="password"], textarea {
    width: 100%; padding: .65rem .85rem;
    font-family: inherit; font-size: .95rem; color: var(--ink);
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
select:focus, input:focus, textarea:focus { border-color: var(--navy-600); outline: none; box-shadow: 0 0 0 3px rgba(42, 85, 131, .14); }
textarea { resize: vertical; }

.empty {
    padding: 3.5rem 1.5rem; text-align: center;
    background: var(--bg-alt); border: 1px dashed var(--line); border-radius: var(--radius);
}
.empty p { max-width: 48ch; margin: 0 auto 1.5rem; color: var(--muted); }

/* --- Pagina de anunt ------------------------------------------------ */

.detail { padding: 2.5rem 0; }
.detail-grid { display: grid; gap: 2rem; }

.gallery { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.thumbs { list-style: none; display: flex; gap: .6rem; margin: .75rem 0 0; padding: 0; overflow-x: auto; }
.thumb {
    padding: 0; width: 92px; flex: 0 0 auto; cursor: pointer;
    background: none; border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden;
}
.thumb img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.thumb.is-active { border-color: var(--gold); }

.detail-ref {
    margin: 0 0 .4rem; font-size: .78rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.detail-title { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
.detail-lead { color: var(--muted); }

.quote-box {
    margin-top: 1.75rem; padding: 1.5rem;
    background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
}
.quote-price { margin: 0 0 .35rem; font-size: 1.2rem; font-weight: 700; color: var(--navy-900); }
.quote-intro { font-size: .92rem; color: var(--muted); }
.quote-note  { margin: .75rem 0 0; font-size: .82rem; color: var(--muted); text-align: center; }
.quote-mail  { margin: .5rem 0 0; font-size: .88rem; text-align: center; }

.detail-columns { display: grid; gap: 2.5rem; }

.spec-table { margin: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec-table > div {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: .8rem .25rem; border-bottom: 1px solid var(--line);
}
.spec-table dt { color: var(--muted); font-size: .92rem; }
.spec-table dd { margin: 0; font-weight: 600; text-align: right; }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.feature-list li { position: relative; padding-left: 1.6rem; font-size: .95rem; }
.feature-list li::before {
    content: ""; position: absolute; left: 0; top: .55em;
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}

/* --- Despre --------------------------------------------------------- */

.about-layout { display: grid; gap: 2.5rem; }
.about-side img { border-radius: var(--radius); box-shadow: var(--shadow); }

.fact-box {
    margin-top: 1.5rem; padding: 1.5rem;
    background: var(--navy-900); color: #fff; border-radius: var(--radius);
}
.fact-box h2 { color: #fff; font-size: 1.1rem; margin-bottom: .75em; }
.fact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.fact-list li { position: relative; padding-left: 1.5rem; font-size: .92rem; color: rgba(255, 255, 255, .84); }
.fact-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

.value-grid { display: grid; gap: 1.5rem; }
.value-card { padding: 1.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.value-card h3 { margin-bottom: .4em; }
.value-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.prose { max-width: 72ch; }
.prose p { margin-bottom: 1.25em; }

/* --- Intrebari frecvente -------------------------------------------- */

.faq { display: grid; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
    padding: 1.15rem 1.35rem; cursor: pointer;
    font-weight: 600; color: var(--navy-900); list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.35rem; font-weight: 400; color: var(--gold-600); }
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-answer { padding: 1.15rem 1.35rem; }
.faq-answer p { margin: 0; color: var(--muted); }

/* --- Contact -------------------------------------------------------- */

.contact-layout { display: grid; gap: 3rem; }

.contact-form { display: grid; gap: 1.15rem; margin-top: 1.5rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .88rem; font-weight: 600; }
.field-row { display: grid; gap: 1.15rem; }
.field-hint { margin: .1rem 0 0; font-size: .8rem; color: var(--muted); }
.form-alt { margin: 0; font-size: .88rem; color: var(--muted); }

.notice {
    padding: 1.25rem; margin-top: 1.5rem;
    background: var(--gold-100); border: 1px solid rgba(201, 164, 76, .45);
    border-radius: var(--radius);
}
.notice p { font-size: .92rem; }

.detail-block { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.detail-block h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .5em; }
.detail-block p, .detail-block address { margin: 0; font-style: normal; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { display: block; }

/* --- Pagini juridice ------------------------------------------------ */

.legal-prose h2 { font-size: 1.2rem; margin-top: 2em; }
.legal-prose ul { padding-left: 1.25rem; color: var(--muted); }
.legal-prose li { margin-bottom: .5em; }
.legal-meta { font-size: .85rem; color: var(--muted); }

.legal-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .9rem; }
.legal-table th, .legal-table td { padding: .75rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { background: var(--bg-alt); font-weight: 600; }

.legal-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .9rem; }
.legal-nav .is-active { font-weight: 700; }

/* --- Eroare 404 ----------------------------------------------------- */

.error-page { padding: 5rem 0; }
.error-code { margin: 0; font-size: 4.5rem; font-weight: 800; color: var(--navy-100); line-height: 1; }
.error-page .page-lead { margin: 0 auto 2rem; }

/* --- Subsol --------------------------------------------------------- */

.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0 2.25rem; }
.footer-brand img { height: 42px; width: auto; }
.footer-tagline { margin: .85rem 0 0; font-size: .9rem; color: var(--muted); max-width: 34ch; }

.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }

.footer-title { font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--navy-900); margin-bottom: .85rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.footer-col a:hover { color: var(--navy); text-decoration: underline; }

.footer-address { font-style: normal; font-size: .92rem; color: var(--muted); margin: 0 0 .8rem; line-height: 1.6; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; font-size: .92rem; color: var(--muted); }

.footer-bar { border-top: 1px solid var(--line); }
.footer-bar-inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: .5rem 1.5rem; padding: 1.1rem 0 .4rem; font-size: .85rem; color: var(--muted);
}
.footer-bar p { margin: 0; }
.footer-legal { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--navy); text-decoration: underline; }

.footer-disclaimer { padding-bottom: 1.4rem; margin: 0; font-size: .76rem; color: var(--muted); opacity: .85; }

/* =====================================================================
   Ecrane medii
   ===================================================================== */

@media (min-width: 600px) {
    .field-row  { grid-template-columns: 1fr 1fr; }
    .card-grid  { grid-template-columns: repeat(2, 1fr); }
    .cat-grid   { grid-template-columns: repeat(2, 1fr); }
    .steps      { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: repeat(3, 1fr); }
    .strip-grid { grid-template-columns: repeat(4, 1fr); }

    .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 3rem; }
    .footer-brand { grid-column: 1 / -1; }
}

/* =====================================================================
   Ecrane mari
   ===================================================================== */

@media (min-width: 940px) {
    .nav-toggle { display: none; }

    .site-nav {
        display: flex; align-items: center; gap: 2rem;
        position: static; padding: 0; box-shadow: none; border: 0; background: none;
    }
    .nav-list { display: flex; gap: 1.75rem; margin: 0; }
    .nav-link { padding: 0; border: 0; position: relative; }
    .nav-link.is-active::after {
        content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
        height: 2px; background: var(--gold); border-radius: 2px;
    }

    .hero-inner { padding: 7rem 0 6rem; }

    .cat-grid       { grid-template-columns: repeat(3, 1fr); }
    .card-grid      { grid-template-columns: repeat(3, 1fr); }
    .steps          { grid-template-columns: repeat(4, 1fr); }
    .why-layout     { grid-template-columns: 1fr 1.15fr; align-items: center; }
    .about-layout   { grid-template-columns: 1.3fr 1fr; }
    .detail-grid    { grid-template-columns: 1.35fr 1fr; align-items: start; }
    .detail-columns { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1.25fr 1fr; }

    .footer-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr) minmax(0, 1.1fr);
        align-items: start; column-gap: 3.5rem; padding: 3.25rem 0 2.25rem;
    }
    .footer-brand { grid-column: auto; }

    .section { padding: 5.5rem 0; }
}

/* --- Preferinta pentru mai putina miscare --------------------------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
