:root {
    --ink: #111827;
    --muted: #667085;
    --line: #e7e5df;
    --paper: #fbf7ef;
    --white: #ffffff;
    --dark: #0d1b2a;
    --navy: #10243d;
    --orange: #f97316;
    --orange-dark: #c84b08;
    --green: #16a34a;
    --soft-orange: #fff0e5;
    --soft-blue: #eef6ff;
    --shadow: 0 26px 70px rgba(17, 24, 39, .12);
    --radius: 28px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    padding-bottom: 82px
}

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

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

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 18px 22px;
    transition: .25s ease
}

.topbar.is-scrolled {
    padding: 10px 22px;
    background: rgba(251, 247, 239, .92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, .08)
}

.nav-shell {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange), #ffb86b);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(249, 115, 22, .28)
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-copy strong {
    font-size: 21px;
    letter-spacing: .2px
}

.brand-copy small {
    color: var(--muted);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 800
}

.nav-menu a:not(.nav-cta) {
    color: #263245;
    position: relative
}

.nav-menu a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: .22s
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    transform: scaleX(1)
}

.nav-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 13px 18px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(249, 115, 22, .28);
    transition: .2s
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--orange-dark)
}

.nav-toggle {
    display: none;
    border: 0;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow)
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0
}

.hero {
    min-height: 100vh;
    padding: 80px 22px 90px;
    position: relative;
    overflow: hidden
}

.hero-auto {
    background: radial-gradient(circle at 75% 20%, rgba(249, 115, 22, .14), transparent 23%), linear-gradient(115deg, #fff7ed 0%, #fbf7ef 44%, #ecf4ff 100%)
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(17, 24, 39, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 39, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 86%)
}

.hero-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    position: relative
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em
}

.eyebrow {
    background: rgba(255, 255, 255, .72);
    padding: 10px 15px;
    border: 1px solid rgba(249, 115, 22, .18);
    border-radius: 999px
}

.eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--orange)
}

h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: .95;
    letter-spacing: -.07em;
    margin: 26px 0 24px;
    max-width: 760px
}

h2 {
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin: 14px 0 14px
}

h3 {
    letter-spacing: -.02em
}

.hero-lead {
    font-size: 20px;
    line-height: 1.75;
    color: #475467;
    max-width: 680px
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 16px 22px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: .2s
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 18px 38px rgba(249, 115, 22, .25)
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px)
}

.btn-outline {
    border-color: #1f2937;
    color: #1f2937;
    background: rgba(255, 255, 255, .5)
}

.btn-outline:hover,
.btn-dark:hover {
    transform: translateY(-2px)
}

.btn-light {
    background: #fff;
    color: var(--ink)
}

.btn-dark {
    background: #111827;
    color: #fff
}

.hero-points {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
    color: #475467;
    font-weight: 800
}

.hero-visual {
    position: relative
}

.car-card {
    background: #fff;
    border-radius: 34px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 24, 39, .06);
    transform: rotate(-1deg);
    animation: float 5s ease-in-out infinite
}

.car-top {
    display: flex;
    gap: 8px;
    margin-bottom: 14px
}

.car-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1
}

.car-top span:first-child {
    background: #ef4444
}

.car-top span:nth-child(2) {
    background: #f59e0b
}

.car-top span:nth-child(3) {
    background: #22c55e
}

.car-window {
    height: 245px;
    border-radius: 24px;
    background: linear-gradient(180deg, #cfe7ff, #eef6ff);
    position: relative;
    overflow: hidden
}

.road {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62px;
    background: #1f2937
}

.car-shape {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    width: 270px;
    height: 98px
}

.car-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    background: linear-gradient(135deg, var(--orange), #ffb86b);
    border-radius: 45px 60px 18px 18px
}

.car-glass {
    position: absolute;
    left: 60px;
    top: 0;
    width: 145px;
    height: 58px;
    background: #172033;
    border-radius: 42px 42px 8px 8px
}

.wheel {
    position: absolute;
    bottom: -16px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111827;
    border: 8px solid #374151
}

.wheel.left {
    left: 45px
}

.wheel.right {
    right: 45px
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0
}

.service-tags span {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 900
}

.quick-request {
    background: #111827;
    color: #fff;
    border-radius: 22px;
    padding: 20px
}

.quick-request small {
    color: #cbd5e1
}

.quick-request strong {
    display: block;
    font-size: 22px;
    margin: 6px 0 14px
}

.progress {
    height: 8px;
    background: #334155;
    border-radius: 999px;
    overflow: hidden
}

.progress i {
    display: block;
    width: 72%;
    height: 100%;
    background: var(--orange)
}

.floating-note {
    position: absolute;
    background: #111827;
    color: #fff;
    padding: 12px 15px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 11px;
    box-shadow: var(--shadow)
}

.note-one {
    top: 22px;
    right: -10px
}

.note-two {
    bottom: 38px;
    left: -26px;
    background: var(--green)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg)
    }

    50% {
        transform: translateY(-14px) rotate(1deg)
    }
}

.trust-strip {
    max-width: 1180px;
    margin: -54px auto 80px;
    position: relative;
    z-index: 3;
    background: #111827;
    color: #fff;
    border-radius: 26px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    box-shadow: var(--shadow)
}

.trust-item {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .07)
}

.trust-item strong {
    display: block;
    font-size: 30px;
    color: #ffb86b
}

.trust-item span {
    color: #d1d5db
}

.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 22px
}

.section-head {
    max-width: 760px;
    margin-bottom: 38px
}

.section-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.service-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 28px;
    padding: 30px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(17, 24, 39, .06);
    transition: .22s
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, .12), transparent 42%);
    opacity: 0;
    transition: .22s
}

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

.service-card:hover::before {
    opacity: 1
}

.service-number {
    font-size: 14px;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: .18em
}

.service-card h3 {
    font-size: 26px;
    margin: 45px 0 12px
}

.service-card p {
    color: var(--muted);
    line-height: 1.65
}

.service-card a {
    font-weight: 900;
    color: var(--orange-dark)
}

.split-section {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 45px;
    align-items: center;
    border-radius: 36px;
    padding: 60px;
    margin-top: 30px
}

.dark-panel {
    background: #111827;
    color: #fff
}

.dark-panel p,
.dark-panel li {
    color: #d1d5db
}

.check-list {
    padding: 0;
    margin: 26px 0;
    list-style: none
}

.check-list li {
    margin: 13px 0;
    padding-left: 30px;
    position: relative
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 900
}

.split-card {
    background: linear-gradient(135deg, #fff, #fff7ed);
    border-radius: 30px;
    padding: 24px;
    color: var(--ink)
}

.damage-card {
    display: grid;
    gap: 16px
}

.damage-row {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 4px 14px;
    align-items: center;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .08)
}

.damage-row span {
    grid-row: 1/3;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--soft-orange);
    display: grid;
    place-items: center;
    color: var(--orange-dark);
    font-weight: 900;
    font-size: 22px
}

.damage-row strong {
    font-size: 20px
}

.damage-row small {
    color: var(--muted)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.process-step {
    background: #fff;
    border-radius: 26px;
    padding: 26px;
    border: 1px solid rgba(17, 24, 39, .08);
    position: relative
}

.process-step b {
    font-size: 44px;
    color: #f1d1b9
}

.process-step p {
    color: var(--muted);
    line-height: 1.6
}

.benefits-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.benefit-card {
    background: linear-gradient(135deg, #10243d, #111827);
    color: #fff;
    border-radius: 28px;
    padding: 30px;
    min-height: 220px
}

.benefit-card:nth-child(2) {
    background: linear-gradient(135deg, var(--orange), #9a3412)
}

.benefit-card span {
    opacity: .75;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px
}

.benefit-card h3 {
    font-size: 28px;
    line-height: 1.15
}

.faq-list {
    display: grid;
    gap: 14px
}

.faq-list details {
    background: #fff;
    border-radius: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(17, 24, 39, .08)
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 18px
}

.faq-list p {
    color: var(--muted);
    line-height: 1.65
}

.cta-final {
    max-width: 1180px;
    margin: 40px auto 80px;
    background: linear-gradient(135deg, var(--orange), #111827);
    color: #fff;
    border-radius: 36px;
    padding: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow)
}

.cta-final p {
    color: #fff7ed;
    font-size: 18px
}

.site-footer {
    background: #0b1220;
    color: #fff;
    padding: 60px 22px 110px
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr;
    gap: 40px
}

.footer-main p {
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 460px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.footer-col h4 {
    margin: 0 0 8px
}

.footer-col a,
.footer-col span {
    color: #cbd5e1
}

.footer-bottom {
    max-width: 1180px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #94a3b8
}





.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .65s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .12s
}

.delay-2 {
    transition-delay: .22s
}

.delay-3 {
    transition-delay: .32s
}

@media(max-width:980px) {
    .nav-toggle {
        display: block
    }

    .nav-menu {
        position: absolute;
        top: 76px;
        left: 22px;
        right: 22px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        border-radius: 24px;
        padding: 22px;
        box-shadow: var(--shadow)
    }

    .nav-menu.is-open {
        display: flex
    }

    .hero-layout,
    .split-section {
        grid-template-columns: 1fr
    }

    .service-grid,
    .process-grid,
    .benefits-section,
    .trust-strip {
        grid-template-columns: 1fr 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .cta-final {
        flex-direction: column;
        align-items: flex-start
    }

    .hero {
        padding-top: 30px
    }
}

/* money */
.money-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.20);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.money-bar {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.money-bar.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(18px);
}

@media (max-width: 760px) {
    .money-bar {
        transform: none;
        transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    }

    .money-bar.is-hidden {
        transform: translateY(18px);
    }
}
.money {
    position: relative;
    overflow: hidden;
    min-width: 158px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px 12px 12px;
    border-radius: 22px;
    text-decoration: none;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.money::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .22s ease;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, .34), transparent 34%);
}

.money:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
    border-color: rgba(255, 107, 35, 0.25);
}

.money:hover::before {
    opacity: 1;
}

.money-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 19px;
    color: #fff;
}

.money-text {
    position: relative;
    z-index: 1;
    display: grid;
    line-height: 1.1;
}

.money-text small {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 4px;
}

.money-text strong {
    font-size: 15px;
    font-weight: 950;
    color: #0f172a;
}

.money-call .money-icon {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 10px 22px rgba(249, 115, 22, .28);
}

.money-wa .money-icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 10px 22px rgba(22, 163, 74, .28);
}

.money-form .money-icon {
    background: linear-gradient(135deg, #0f172a, #334155);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .24);
}

.money-wa {
    animation: moneyPulse 2.8s ease-in-out infinite;
}

@keyframes moneyPulse {
    0%, 100% {
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    }
    50% {
        box-shadow: 0 18px 42px rgba(22, 163, 74, 0.22);
    }
}

@media (max-width: 760px) {
    .money-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
        width: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 8px;
        border-radius: 22px;
    }

    .money {
        min-width: 0;
        justify-content: center;
        padding: 11px 8px;
        border-radius: 18px;
    }

    .money-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 15px;
    }

    .money-text small {
        display: none;
    }

    .money-text strong {
        font-size: 12px;
    }
}

@media (max-width: 430px) {
    .money {
        flex-direction: column;
        gap: 6px;
        padding: 9px 6px;
    }

    .money-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 17px;
    }

    .money-text strong {
        font-size: 11px;
    }
}

@media(max-width:640px) {
    h1 {
        font-size: 48px
    }

    .service-grid,
    .process-grid,
    .benefits-section,
    .trust-strip {
        grid-template-columns: 1fr
    }

  

    .footer-bottom {
        flex-direction: column
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .car-card {
        transform: none;
        animation: none
    }

    .floating-note {
        display: none
    }
}


/* animations - money */
.money.money-bounce {
    animation: moneyButtonBounce .65s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes moneyButtonBounce {
    0% {
        transform: translateY(0) scale(1);
    }

    25% {
        transform: translateY(-8px) scale(1.04);
    }

    45% {
        transform: translateY(0) scale(.98);
    }

    65% {
        transform: translateY(-4px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}


@media (max-width: 991px) {
    body.menu-open .nav-menu,
    .nav-menu.is-open {
        display: grid !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 88px !important;
        left: 12px !important;
        right: 12px !important;
        z-index: 999999 !important;

        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;

        max-height: calc(100vh - 110px) !important;
        overflow-y: auto !important;

        padding: 16px !important;
        border-radius: 24px !important;
        background: #ffffff !important;
        border: 1px solid rgba(15, 23, 42, .10) !important;
        box-shadow: 0 30px 80px rgba(15, 23, 42, .25) !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-12px) scale(.98) !important;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
    }

    .nav-menu a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        padding: 15px 16px !important;
        border-radius: 16px !important;

        background: #f8fafc !important;
        border: 1px solid rgba(15, 23, 42, .06) !important;
        color: #0f172a !important;

        font-size: 15px !important;
        font-weight: 900 !important;
        text-decoration: none !important;
    }

    .nav-menu a::after {
        display: none !important;
    }

    .nav-menu a.active {
        background: #fff1e8 !important;
        color: #ea580c !important;
        border-color: rgba(249, 115, 22, .22) !important;
    }

    .nav-menu .nav-cta {
        justify-content: center !important;
        background: linear-gradient(135deg, #f97316, #fb923c) !important;
        color: #fff !important;
    }

    .site-header,
    #topbar {
        z-index: 999998 !important;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1000000 !important;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 999990;
        background: rgba(15, 23, 42, .35);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
}
/* =========================
   FINAL HAMBURGER FIX
========================= */

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
    cursor: pointer;
    position: relative;
    z-index: 1000000;
    padding: 0;
}

.nav-toggle .nav-line {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
    transform: translateX(-50%);
    transition: transform .22s ease, opacity .22s ease, top .22s ease;
    margin: 0 !important;
}

.nav-toggle .nav-line-1 {
    top: 17px;
}

.nav-toggle .nav-line-2 {
    top: 25px;
}

.nav-toggle .nav-line-3 {
    top: 33px;
}

.nav-toggle.is-active .nav-line-1 {
    top: 25px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.is-active .nav-line-2 {
    opacity: 0;
}

.nav-toggle.is-active .nav-line-3 {
    top: 25px;
    transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block !important;
        flex: 0 0 52px;
    }
}

/* next section butoane mustang pe lateral */
/* =========================================================
   SUBTLE RIGHT RAIL - DESKTOP ONLY
========================================================= */

.section-rails {
    display: none;
}

@media (min-width: 1200px) {
    .section-rails {
        display: block;
    }

  .section-rail {
    position: fixed;
    z-index: 55;
    width: 64px;
    height: 360px; /* era 270px */
    border: 0;
    background: transparent;
    padding: 0;
    opacity: .38;
    cursor: pointer;
    transition:
        opacity .25s ease,
        transform .35s ease,
        visibility .35s ease;
}

    .section-rail:hover {
        opacity: .82;
    }

    .section-rail-down {
        right: 10px;
        top: 50%;
        transform: translate(18px, -50%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .section-rail-down.is-visible {
        transform: translate(0, -50%);
        opacity: .38;
        visibility: visible;
        pointer-events: auto;
    }

    .section-rail-down.is-visible:hover {
        opacity: .82;
    }

    .section-rail.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.rail-line {
    position: absolute;
    left: 50%;
    top: 30px;
    bottom: 42px;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        rgba(249, 115, 22, 0),
        rgba(249, 115, 22, .32),
        rgba(249, 115, 22, 0)
    );
}

    .rail-line::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 50%;
        width: 9px;
        height: 9px;
        transform: translateX(-50%) rotate(45deg);
        border-right: 1px solid rgba(249, 115, 22, .48);
        border-bottom: 1px solid rgba(249, 115, 22, .48);
    }

.rail-car {
    position: absolute;
    left: 50%;
    top: 10%;
    width: 34px;  /* era 26px */
    height: 34px; /* era 26px */
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    animation: railCarDownSubtle 3.2s ease-in-out infinite;
    will-change: top, transform;
}

.rail-car img {
    width: 34px; /* era 26px */
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(17, 24, 39, .15));
    user-select: none;
    -webkit-user-drag: none;
    opacity: .82;
}

   .rail-mini-label {
    position: absolute;
    right: 38px; /* era 30px */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(17, 24, 39, .50);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
    pointer-events: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.rail-mini-label strong {
    display: block;
    max-height: 230px; /* era 150px */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .rail-mini-label i {
        color: var(--orange);
        font-size: 15px;
        line-height: 1;
    }
}

@keyframes railCarDownSubtle {
    0%, 100% {
        top: 6%;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        top: 38%;
        transform: translateX(-50%) translateY(4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .rail-car {
        animation: none !important;
    }

    .section-rail {
        transition: none !important;
    }
}
/* =========================
   NAV DROPDOWN RCA
========================= */

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.nav-dropdown-arrow {
    font-size: 12px;
    line-height: 1;
    transition: transform .2s ease;
}

.mobile-dropdown-button {
    display: none;
    border: 0;
    background: transparent;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 270px;
    padding: 10px;
    border: 1px solid rgba(16, 36, 61, .10);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(17, 24, 39, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 999999;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #10243d;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: #fff0e5;
    color: #f97316;
}

@media (min-width: 992px) {
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-dropdown:hover .nav-dropdown-arrow,
    .nav-dropdown:focus-within .nav-dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown.active > .desktop-dropdown-link {
        color: #f97316;
    }
}


/* =========================
   MOBILE DROPDOWN RCA
========================= */

@media (max-width: 991px) {
    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .desktop-dropdown-link {
        display: none !important;
    }

    .mobile-dropdown-button {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        padding: 15px 16px !important;
        border-radius: 16px !important;

        background: #f8fafc !important;
        border: 1px solid rgba(15, 23, 42, .06) !important;
        color: #0f172a !important;

        font-size: 15px !important;
        font-weight: 900 !important;
        text-decoration: none !important;
        line-height: 1.2 !important;
    }

    .nav-dropdown.active .mobile-dropdown-button {
        background: #fff1e8 !important;
        color: #ea580c !important;
        border-color: rgba(249, 115, 22, .22) !important;
    }

    .nav-dropdown-menu {
        display: none;
        position: static;
        min-width: 100%;
        margin-top: 8px;
        padding: 8px;
        border-radius: 16px;
        background: rgba(249, 115, 22, .08);
        border: 1px solid rgba(249, 115, 22, .14);
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
        gap: 0;
    }

    .nav-dropdown.is-open .nav-dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        padding: 15px 16px !important;
        border-radius: 14px !important;
        background: #f8fafc !important;
        color: #0f172a !important;
        border: 1px solid rgba(15, 23, 42, .06) !important;
        white-space: normal !important;
    }

    .nav-dropdown-menu a:hover {
        background: #fff !important;
        color: #ea580c !important;
    }
}
@media (max-width: 991px) {
    .nav-menu .nav-dropdown > a.desktop-dropdown-link {
        display: none !important;
    }

    .nav-menu .nav-dropdown > button.mobile-dropdown-button {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .nav-menu .nav-dropdown > button.mobile-dropdown-button {
        display: none !important;
    }

    .nav-menu .nav-dropdown > a.desktop-dropdown-link {
        display: inline-flex !important;
    }
}
@media (max-width: 991px) {
    .nav-dropdown.active .mobile-dropdown-button,
    .nav-dropdown.is-open .mobile-dropdown-button {
        background: linear-gradient(135deg, #fff3ea, #fff8f3) !important;
        color: #ea580c !important;
        border: 1px solid rgba(249, 115, 22, .28) !important;
        box-shadow: 0 10px 24px rgba(249, 115, 22, .10) !important;
    }

    .nav-dropdown.is-open .mobile-dropdown-button {
        border-bottom-left-radius: 14px !important;
        border-bottom-right-radius: 14px !important;
    }
}
@media (max-width: 991px) {
    .nav-dropdown-menu {
        margin-top: 8px !important;
        padding: 10px 10px 10px 14px !important;
        border-radius: 18px !important;
        background: #fff7ed !important;
        border: 1px solid rgba(249, 115, 22, .18) !important;
        position: relative !important;
    }

    .nav-dropdown-menu::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 18px;
        bottom: 18px;
        width: 3px;
        border-radius: 999px;
        background: rgba(249, 115, 22, .35);
    }

    .nav-dropdown-menu a {
        margin-left: 10px !important;
        background: #ffffff !important;
        border: 1px solid rgba(15, 23, 42, .06) !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, .04) !important;
    }

    .nav-dropdown-menu a + a {
        margin-top: 7px !important;
    }
}
@media (max-width: 991px) {
    .nav-menu a,
    .mobile-dropdown-button {
        border-color: rgba(15, 23, 42, .055) !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, .035) !important;
    }

    .nav-menu a:hover,
    .mobile-dropdown-button:hover {
        background: #fff !important;
        transform: translateY(-1px);
    }
}
.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 70px;
    width: auto;
    max-width: 230px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 55px;
        max-width: 180px;
    }
}
.footer-anpc {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.footer-anpc a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    transition: transform .22s ease, opacity .22s ease;
}

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

.footer-anpc img {
    display: block;
    width: auto;
    height: 44px;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 640px) {
    .footer-anpc {
        justify-content: center;
    }

    .footer-anpc img {
        height: 38px;
        max-width: 150px;
    }
}
.nav-shell {
    gap: 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
}

.nav-menu > a,
.nav-dropdown-toggle {
    white-space: nowrap;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-arrow {
    display: inline-flex;
    line-height: 1;
    font-size: .75rem;
}

.brand-logo {
    max-width: 190px;
    height: auto;
}

@media (max-width: 1180px) {
    .nav-menu {
        gap: 16px;
    }

    .nav-menu > a,
    .nav-dropdown-toggle {
        font-size: 15px;
    }

    .brand-logo {
        max-width: 170px;
    }

    .nav-cta {
        padding-left: 16px;
        padding-right: 16px;
    }
}
.money-location .money-icon,
.money-icon-location {
    background: #2563eb;
    color: #fff;
}

.money-location .money-icon i,
.money-icon-location i {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}
/* Mustang random fly-by pe ecran */
.mustang-flyby {
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 82px;
    height: 82px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-140px, 0, 0);
    will-change: transform, opacity;
    display: grid;
    place-items: center;
}

.mustang-flyby img {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center;
    transform: rotate(var(--car-rotate, -90deg));
    filter: drop-shadow(0 10px 16px rgba(15, 23, 42, .28));
}

@media (max-width: 700px) {
    .mustang-flyby {
        width: 58px;
        height: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mustang-flyby {
        display: none;
    }
}
.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    max-width: 980px;
    margin: 0 auto;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #111827;
    color: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
}

.cookie-banner-text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

.cookie-banner-text p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-links {
    margin-top: 8px !important;
}

.cookie-banner-links a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
}

.cookie-btn-primary {
    background: #f97316;
    color: #fff;
}

.cookie-btn-light {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* nav suna acum button */
.nav-cta {
    min-width: 168px;
    text-align: center;
    transition: all .25s ease;
    white-space: nowrap;
}

.nav-cta.is-showing-phone {
    background: #111827;
    color: #fff;
    letter-spacing: .2px;
}
a[href^="tel:"].is-showing-phone {
    white-space: nowrap;
}

.phone-reveal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}
.reviews-section {
    background: linear-gradient(180deg, rgba(15, 124, 207, .06), rgba(255, 255, 255, 0));
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 28px;
    background: var(--white, #fff);
    border: 1px solid var(--line, #e7e5df);
    box-shadow: var(--shadow, 0 20px 60px rgba(0,0,0,.08));
    margin-bottom: 24px;
}

.reviews-score {
    display: grid;
    gap: 4px;
}

.reviews-score strong {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    color: var(--ink, #111827);
}

.reviews-score span,
.review-top span {
    color: #f59e0b;
    letter-spacing: 2px;
}

.reviews-score small {
    color: var(--muted, #667085);
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    padding: 22px;
    border-radius: 24px;
    background: var(--white, #fff);
    border: 1px solid var(--line, #e7e5df);
    box-shadow: 0 14px 40px rgba(17, 24, 39, .08);
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.review-card p {
    color: var(--muted, #667085);
    line-height: 1.7;
}

.review-card small {
    color: var(--muted, #667085);
    font-weight: 700;
}

@media (max-width: 900px) {
    .reviews-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}