:root {
    --ink: #17191d;
    --ink-soft: #2b3037;
    --muted: #68707c;
    --line: #e6e8ec;
    --surface: #ffffff;
    --soft: #f5f6f8;
    --amber: #e07c09;
    --amber-dark: #e27107;
    --green: #16a34a;
    --radius: 8px;
    --shadow: 0 18px 50px rgba(23, 25, 29, .12);
}

* {
    letter-spacing: 0;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-header {
    background: var(--ink);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
}

.top-strip {
    color: rgba(255, 255, 255, .72);
    background: #101215;
    font-size: .9rem;
    padding: .45rem 0;
}

.navbar {
    padding: .85rem 0;
}

.navbar-brand {
    min-width: 0;
}

.navbar-brand strong,
.footer-brand strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    line-height: 1.1;
}

.navbar-brand small {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    color: #17191d;
    background: var(--amber);
    flex: 0 0 auto;
}

.nav-link {
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.btn {
    border-radius: var(--radius);
    font-weight: 800;
}

.btn-call {
    color: #17191d;
    background: var(--amber);
    border-color: var(--amber);
}

.btn-call:hover {
    color: #17191d;
    background: #fbbf24;
    border-color: #fbbf24;
}

.btn-whatsapp {
    color: #fff;
    background: var(--green);
    border-color: var(--green);
}

.btn-whatsapp:hover {
    color: #fff;
    background: #12863d;
    border-color: #12863d;
}

.btn-dark-filter {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.btn-dark-filter:hover {
    color: #fff;
    background: var(--ink-soft);
    border-color: var(--ink-soft);
}

.hero-section {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    color: #fff;
    background: #0f1115;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 12, 16, .94) 0%, rgba(10, 12, 16, .7) 34%, rgba(10, 12, 16, .18) 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.min-vh-hero {
    min-height: 690px;
}

.hero-kicker,
.eyebrow,
.admin-eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--amber);
    font-weight: 900;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: .8rem;
}

.hero-section h1 {
    max-width: 720px;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    line-height: .96;
    margin-bottom: 1.3rem;
    font-weight: 950;
}

.hero-lead {
    max-width: 650px;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.quick-filter-band {
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.quick-filter {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    transform: translateY(-38px);
    margin-bottom: -38px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.form-control,
.form-select {
    border-radius: var(--radius);
    border-color: #d8dde5;
    min-height: 46px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 .22rem rgba(245, 158, 11, .16);
}

.section-pad {
    padding: 5rem 0;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading h2,
.seo-band h2,
.benefits-section h2,
.contact-strip h2,
.content-block h2,
.detail-panel h2,
.side-cta h2 {
    font-weight: 900;
    line-height: 1.08;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0;
}

.car-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.car-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: #d7dce3;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.035);
}

.status-badge,
.status-pill {
    display: inline-flex;
    align-items: center;
    color: #fff;
    border-radius: 999px;
    padding: .35rem .65rem;
    font-weight: 900;
    font-size: .78rem;
}

.status-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
}

.car-card-body {
    padding: 1.1rem;
}

.car-card h2,
.car-card h3 {
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: .9rem;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 1rem;
}

.car-specs span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--soft);
    border-radius: 999px;
    padding: .35rem .55rem;
}

.car-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.seo-band,
.benefits-section {
    padding: 5rem 0;
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.seo-band p,
.benefits-section p,
.content-block p {
    color: #515a66;
    font-size: 1.05rem;
    line-height: 1.75;
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.5rem;
}

.seo-links a {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: .55rem .85rem;
    font-weight: 800;
}

.trust-panel {
    display: grid;
    gap: 1rem;
}

.trust-panel div,
.benefit,
.step-card,
.detail-panel,
.content-block,
.side-cta,
.contact-form,
.filter-panel,
.empty-state {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 32px rgba(23, 25, 29, .06);
}

.trust-panel div,
.benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: .9rem;
    padding: 1rem;
}

.trust-panel i,
.benefit i,
.step-card i {
    color: var(--amber-dark);
    font-size: 1.6rem;
}

.trust-panel strong,
.benefit strong {
    font-size: 1.05rem;
}

.trust-panel span,
.benefit span {
    grid-column: 2;
    color: var(--muted);
}

.step-card {
    position: relative;
    min-height: 100%;
    padding: 1.35rem;
}

.step-card > span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(23, 25, 29, .12);
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 950;
}

.step-card h3 {
    margin-top: 1.2rem;
    font-weight: 900;
}

.step-card p {
    color: var(--muted);
    margin: 0;
}

.benefit {
    min-height: 100%;
}

.faq-accordion {
    max-width: 920px;
    margin: 0 auto;
}

.accordion-item {
    border-color: var(--line);
    border-radius: var(--radius) !important;
    overflow: hidden;
    margin-bottom: .8rem;
}

.accordion-button {
    font-weight: 900;
}

.accordion-button:not(.collapsed) {
    color: #17191d;
    background: #fff7e8;
    box-shadow: none;
}

.contact-strip {
    padding: 3.5rem 0;
    color: #fff;
    background: linear-gradient(90deg, #17191d, #30343b);
}

.contact-strip p {
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

.site-footer {
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, .76);
    background: #111317;
}

.site-footer .brand-icon {
    width: 38px;
    height: 38px;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .55rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: .92rem;
}

.mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 28px rgba(0, 0, 0, .12);
}

.mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 58px;
    font-weight: 900;
}

.mobile-action-bar a:first-child {
    color: #17191d;
    background: var(--amber);
}

.mobile-action-bar a:last-child {
    color: #fff;
    background: var(--green);
}

.page-hero {
    padding: 4rem 0;
    color: #fff;
    background: linear-gradient(90deg, rgba(17, 19, 23, .94), rgba(17, 19, 23, .84)), url("../img/hero-dezmembrari-auto.png") center right / cover;
}

.compact-hero {
    padding: 3rem 0;
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(2.1rem, 4vw, 4rem);
    font-weight: 950;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.14rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .82);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, .58);
}

.filter-panel {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.result-meta {
    margin-bottom: 1.2rem;
    color: var(--muted);
}

.result-meta strong {
    color: var(--ink);
}

.car-gallery {
    border-radius: var(--radius);
    overflow: hidden;
    background: #d8dde5;
    box-shadow: var(--shadow);
}

.detail-main-section {
    padding-top: 3.5rem;
}

.car-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.car-gallery-single {
    border-radius: var(--radius);
    overflow: hidden;
    background: #d8dde5;
    box-shadow: var(--shadow);
}

.car-gallery-single img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 12%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, .72);
    background-size: 56%;
}

.carousel-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
    gap: .55rem;
    margin-top: .75rem;
}

.carousel-thumbnails button {
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: #fff;
    padding: .18rem;
    overflow: hidden;
}

.carousel-thumbnails button.active {
    border-color: var(--amber);
}

.carousel-thumbnails img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.detail-panel,
.content-block,
.side-cta,
.contact-form {
    padding: 1.5rem;
}

.spec-list {
    display: grid;
    gap: .75rem;
    margin-bottom: 1.2rem;
}

.spec-list div {
    display: grid;
    grid-template-columns: minmax(120px, 42%) 1fr;
    gap: .75rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: .75rem;
}

.spec-list dt {
    color: var(--muted);
    font-weight: 700;
}

.spec-list dd {
    margin: 0;
    font-weight: 900;
}

.price-note {
    border-radius: var(--radius);
    padding: .9rem;
    background: #fff7e8;
    color: #7a4a05;
    font-weight: 800;
}

.detail-actions {
    display: grid;
    gap: .7rem;
    margin-top: 1rem;
}

.detail-content-stack {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.parts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.4rem;
}

.parts-grid span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .5rem .75rem;
    background: var(--soft);
    font-weight: 800;
}

.parts-grid i {
    color: var(--green);
}

.parts-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: .8rem;
    margin-top: 1.4rem;
}

.part-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .15rem .65rem;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .85rem;
    background: var(--soft);
}

.part-card i {
    color: var(--green);
    font-size: 1.2rem;
    margin-top: .08rem;
}

.part-card strong {
    font-weight: 900;
}

.part-card span {
    grid-column: 2;
    color: var(--muted);
    font-size: .9rem;
}

.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.2rem;
}

.internal-links a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .5rem .75rem;
    background: #fff;
    font-weight: 850;
}

.technical-spec-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.technical-spec-list div {
    grid-template-columns: 1fr;
    gap: .2rem;
}

.side-cta {
    position: sticky;
    top: 106px;
}

.seo-featured-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.seo-content {
    font-size: 1.04rem;
}

.empty-state {
    padding: 1.5rem;
    color: var(--muted);
    font-weight: 700;
}

@media (min-width: 768px) {
    .quick-filter {
        grid-template-columns: 1.2fr 1.2fr 1fr auto;
        align-items: end;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 58px;
    }

    .hero-section,
    .min-vh-hero {
        min-height: 620px;
    }

    .hero-media {
        background-position: 66% center;
    }

    .hero-media::after {
        background: linear-gradient(90deg, rgba(10, 12, 16, .94), rgba(10, 12, 16, .68));
    }

    .section-pad,
    .seo-band,
    .benefits-section {
        padding: 3.5rem 0;
    }

    .side-cta {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand strong {
        font-size: .92rem;
    }

    .navbar-brand small {
        display: none;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .quick-filter {
        transform: translateY(-24px);
        margin-bottom: -24px;
    }

    .spec-list div {
        grid-template-columns: 1fr;
        gap: .15rem;
    }
}
/* Masini dezmembrate - UX filtre mobile */

.cars-list-hero {
    padding-bottom: 2.25rem;
}

.hero-filter-summary {
    margin-top: 1.35rem;
    max-width: 860px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(0, 0, 0, .36);
    backdrop-filter: blur(10px);
}

.summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .75rem;
    flex-wrap: wrap;
}

.summary-label {
    color: #fff;
    font-weight: 800;
}

.summary-count {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .35rem .7rem;
    color: #161616;
    background: #f4a300;
    font-size: .9rem;
    font-weight: 900;
}

.filter-chip-list {
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    padding: .38rem .7rem;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: .86rem;
    font-weight: 750;
    line-height: 1.15;
}

.filter-chip-reset {
    color: #111;
    background: #fff;
    text-decoration: none;
}

.filter-chip-reset:hover {
    color: #111;
    background: #f4a300;
}

.btn-hero-scroll {
    margin-top: 1rem;
    border: 0;
    border-radius: 999px;
    padding: .78rem 1rem;
    background: #f4a300;
    color: #101010;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .22);
}

.btn-hero-scroll:hover {
    background: #ffb31a;
    color: #101010;
}

.cars-page-section {
    padding: 1.4rem 0 4rem;
    background: #f7f7f8;
}

.mobile-filter-card,
.desktop-filter-card,
.cars-results-header,
.empty-results-card {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(15, 23, 42, .07);
}

.mobile-filter-card {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding: 1rem;
}

.mobile-filter-card h2,
.desktop-filter-card h2,
.cars-results-header h2,
.cars-filter-offcanvas h2 {
    margin: .15rem 0 0;
    color: #151515;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.18;
}

.mobile-filter-card p {
    margin: .45rem 0 0;
    color: #5c6470;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: #f4a300;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.desktop-filter-card {
    margin-bottom: 1.35rem;
    padding: 1.1rem;
}

.desktop-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-grid {
    display: grid;
    gap: .85rem;
}

.desktop-filter-card .filter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.desktop-filter-card .filter-field-wide {
    grid-column: span 2;
}

.filter-field .form-label {
    margin-bottom: .35rem;
    color: #252525;
    font-size: .9rem;
    font-weight: 800;
}

.filter-field .form-select,
.filter-field .form-control {
    min-height: 44px;
    border-radius: 13px;
    border-color: #d9dde5;
    font-size: .95rem;
}

.filter-field .form-select:focus,
.filter-field .form-control:focus {
    border-color: #f4a300;
    box-shadow: 0 0 0 .18rem rgba(244, 163, 0, .18);
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1rem;
}

.btn-dark-filter {
    border: 0;
    border-radius: 14px;
    background: #151515;
    color: #fff;
    font-weight: 900;
}

.btn-dark-filter:hover {
    background: #000;
    color: #fff;
}

.cars-results-header {
    scroll-margin-top: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
    padding: 1rem;
}

.result-meta {
    margin: 0;
    border-radius: 999px;
    padding: .45rem .75rem;
    color: #111;
    background: #f4a300;
    font-size: .9rem;
    font-weight: 850;
    white-space: nowrap;
}

.cars-filter-offcanvas {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.cars-filter-offcanvas .offcanvas-header {
    align-items: flex-start;
    padding: 1.15rem 1.15rem .75rem;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.cars-filter-offcanvas .offcanvas-body {
    padding: 1rem 1.15rem 6rem;
}

.cars-filter-offcanvas .filter-grid {
    grid-template-columns: 1fr;
}

.offcanvas-filter-actions {
    position: sticky;
    bottom: 0;
    display: grid;
    gap: .6rem;
    margin: 1rem -1.15rem -1rem;
    padding: .9rem 1.15rem 1.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .88), #fff 35%);
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.empty-results-card {
    padding: 2rem 1rem;
    text-align: center;
}

.empty-results-card .empty-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 20px;
    color: #151515;
    background: #f4a300;
    font-size: 1.65rem;
}

.empty-results-card h2 {
    margin-bottom: .45rem;
    font-size: 1.35rem;
    font-weight: 950;
}

.empty-results-card p {
    max-width: 620px;
    margin: 0 auto 1.1rem;
    color: #5c6470;
}

@media (max-width: 991.98px) {
    .cars-list-hero {
        padding-bottom: 1.4rem;
    }

    .hero-filter-summary {
        padding: .85rem;
        border-radius: 18px;
    }

    .summary-top {
        align-items: flex-start;
        margin-bottom: .65rem;
    }

    .summary-label {
        width: 100%;
        font-size: .95rem;
    }

    .summary-count {
        font-size: .82rem;
    }

    .filter-chip-list {
        gap: .35rem;
    }

    .filter-chip {
        padding: .32rem .58rem;
        font-size: .78rem;
    }

    .btn-hero-scroll {
        width: 100%;
        padding: .82rem 1rem;
    }

    .cars-page-section {
        padding-top: 1rem;
    }

    .cars-results-header {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 18px;
        padding: .95rem;
    }

    .cars-results-header h2 {
        font-size: 1.12rem;
    }

    .result-meta {
        font-size: .84rem;
    }

    .mobile-filter-card {
        border-radius: 18px;
    }
}

@media (max-width: 575.98px) {
    .cars-filter-offcanvas {
        width: min(92vw, 420px) !important;
    }

    .hero-filter-summary {
        margin-top: 1rem;
    }
}
/* Footer + ANPC + cookie banner */

.site-footer {
    background: #111418;
    color: rgba(255, 255, 255, .78);
    padding: 3rem 0 1.2rem;
}

.site-footer a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.site-footer a:hover {
    color: #f4a300;
}

.footer-brand strong {
    color: #fff;
    font-size: 1.05rem;
}

.footer-title {
    margin-bottom: .9rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: .55rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.footer-links a::before {
    content: "›";
    color: #f4a300;
    font-weight: 900;
}

.footer-anpc {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.footer-anpc a {
    display: block;
    max-width: 170px;
    border-radius: 10px;
    background: #fff;
    padding: .35rem;
    transition: transform .2s ease, opacity .2s ease;
}

.footer-anpc a:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.footer-anpc img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1060;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: #111418;
    color: #fff;
    padding: 1rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.cookie-banner strong {
    display: block;
    margin-bottom: .25rem;
    color: #fff;
    font-size: 1rem;
}

.cookie-banner p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.btn-cookie-more,
.btn-cookie-accept {
    border-radius: 999px;
    padding: .55rem .95rem;
    font-weight: 900;
}

.btn-cookie-more {
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
}

.btn-cookie-more:hover {
    border-color: #f4a300;
    color: #f4a300;
}

.btn-cookie-accept {
    border: 0;
    background: #f4a300;
    color: #111;
}

.btn-cookie-accept:hover {
    background: #ffb31a;
    color: #111;
}

@media (max-width: 991.98px) {
    .site-footer {
        padding-bottom: 5.6rem;
    }

    .cookie-banner {
        bottom: 4.9rem;
    }

    .cookie-banner-inner {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 16px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }

    .footer-anpc a {
        max-width: 155px;
    }
}
/* Legal pages */

.legal-page-section {
    padding: 3rem 0;
    background: #f7f7f8;
}

.legal-card {
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
}

.legal-card h2 {
    margin: 1.4rem 0 .6rem;
    color: #151515;
    font-size: 1.2rem;
    font-weight: 950;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: #555d68;
    line-height: 1.75;
}

.legal-contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: #f7f7f8;
}

@media (max-width: 575.98px) {
    .legal-card {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .legal-contact-box .btn {
        width: 100%;
    }
}
/* Desktop phone popup */

.desktop-phone-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, .46);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.desktop-phone-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.desktop-phone-popup-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    width: min(620px, 100%);
    border-radius: 22px;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    transform: translateY(10px) scale(.98);
    transition: transform .2s ease;
}

.desktop-phone-popup.is-visible .desktop-phone-popup-card {
    transform: translateY(0) scale(1);
}

.desktop-phone-close {
    position: absolute;
    top: .55rem;
    right: .7rem;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 1.7rem;
    line-height: 1;
}

.desktop-phone-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #f4a300;
    color: #111;
    font-size: 1.4rem;
}

.desktop-phone-label {
    display: block;
    margin-bottom: .15rem;
    color: #6b7280;
    font-size: .9rem;
    font-weight: 800;
}

.desktop-phone-popup-card strong {
    display: block;
    color: #111;
    font-size: 1.65rem;
    font-weight: 950;
    letter-spacing: -.02em;
}

.desktop-phone-popup-card p {
    margin: .25rem 0 0;
    color: #626b77;
}

.desktop-phone-copy {
    border-radius: 999px;
    background: #111418;
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.desktop-phone-copy:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991.98px) {
    .desktop-phone-popup {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .desktop-phone-popup-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .desktop-phone-icon {
        margin: 0 auto;
    }
}