:root {
    --orange: #ff6b00;
    --orange-2: #ff8a34;
    --ink: #0c1118;
    --ink-2: #151b24;
    --muted: #697386;
    --muted-2: #98a1b1;
    --line: #e6e9ee;
    --soft: #f5f6f8;
    --white: #fff;
    --green: #0d9b65;
    --yellow: #d99210;
    --red: #d9463e;
    --blue: #246bdb;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(15,23,42,.09)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

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

body.menu-open,body.sidebar-open {
    overflow: hidden
}

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

button,input,select,textarea {
    font: inherit
}

button {
    cursor: pointer
}

img {
    max-width: 100%
}

.public-shell {
    width: min(1220px,calc(100% - 40px));
    margin: auto
}

.public-header {
    height: 84px;
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(12,17,24,.07)
}

.header-row {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

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

.brand>img,.admin-brand>img {
    width: 142px;
    max-height: 54px;
    object-fit: contain;
    object-position: left center
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 12px 28px rgba(12,17,24,.16)
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.brand-copy strong {
    font-size: 15px;
    letter-spacing: -.02em
}

.brand-copy small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    color: var(--muted)
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    font-weight: 750
}

.desktop-nav>a {
    color: #3d4654;
    transition: .2s
}

.desktop-nav>a:hover {
    color: var(--orange)
}

.desktop-nav .nav-query {
    padding: 13px 17px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px
}

.desktop-nav .nav-query:hover {
    background: var(--orange);
    color: #fff
}

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 13px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px
}

.menu-toggle i {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 15px 20px 24px;
    box-shadow: 0 30px 60px rgba(15,23,42,.12);
    z-index: 79
}

.mobile-menu a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 800
}

.public-flash {
    width: min(1180px,calc(100% - 40px));
    margin: 16px auto;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700
}

.public-flash.error {
    background: #fff0ef;
    color: #a92c26
}

.public-flash.success {
    background: #eaf8f2;
    color: #08784d
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    min-height: 700px
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 18%,rgba(255,107,0,.24),transparent 28%),linear-gradient(125deg,rgba(255,255,255,.02),transparent 45%)
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 60px;
    padding: 78px 0 84px
}

.hero-copy {
    max-width: 680px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    color: var(--orange)
}

.eyebrow:before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--orange)
}

.hero h1 {
    font-size: 66px;
    line-height: 1.02;
    letter-spacing: -.065em;
    margin: 21px 0
}

.hero h1 em {
    font-style: normal;
    color: var(--orange)
}

.hero-copy>p {
    font-size: 17px;
    line-height: 1.75;
    color: #aeb6c3;
    max-width: 600px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 32px
}

.btn {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 13px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 850;
    font-size: 13px;
    transition: .2s
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255,107,0,.22)
}

.btn-primary:hover {
    background: #e85f00;
    transform: translateY(-1px)
}

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

.btn-ghost-light {
    border-color: rgba(255,255,255,.18);
    color: #fff;
    background: rgba(255,255,255,.04)
}

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

.btn-danger {
    background: #fff0ef;
    color: #b42d27;
    border-color: #ffd4d1
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.11)
}

.hero-trust div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.hero-trust strong {
    font-size: 20px
}

.hero-trust span {
    font-size: 10px;
    color: #86909f;
    font-weight: 750
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center
}

.visual-orbit {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%
}

.visual-orbit:after,.visual-orbit:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06)
}

.visual-orbit:before {
    inset: 38px
}

.visual-orbit:after {
    inset: 90px
}

.hero-card {
    position: relative;
    width: 390px;
    background: rgba(255,255,255,.97);
    color: var(--ink);
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 35px 100px rgba(0,0,0,.35);
    transform: rotate(-2deg)
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 17px
}

.hero-card-top span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    color: var(--muted)
}

.hero-card-top b {
    font-size: 11px;
    color: var(--green);
    background: #e8f8f1;
    padding: 7px 10px;
    border-radius: 99px
}

.hero-car {
    background: #f2f4f7;
    border-radius: 22px;
    padding: 10px;
    max-height: 290px;
    overflow: hidden
}

.hero-car .vehicle-blueprint {
    height: 275px
}

.hero-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px
}

.hero-card-foot div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.hero-card-foot strong {
    font-size: 17px
}

.hero-card-foot small {
    font-size: 9px;
    color: var(--muted)
}

.score-mini {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--orange) 0 86%,#e8ebef 86%);
    position: relative;
    font-weight: 900
}

.score-mini:before {
    content: "";
    position: absolute;
    inset: 6px;
    background: #fff;
    border-radius: 50%
}

.score-mini span {
    position: relative
}

.floating-chip {
    position: absolute;
    background: #fff;
    color: var(--ink);
    padding: 12px 15px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
    font-size: 11px;
    font-weight: 850
}

.chip-1 {
    left: 0;
    top: 110px
}

.chip-2 {
    right: -20px;
    bottom: 95px
}

.floating-chip i {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    margin-right: 7px
}

.query-band {
    position: relative;
    margin-top: -34px;
    z-index: 5
}

.query-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 25px;
    padding: 25px 27px;
    box-shadow: var(--shadow)
}

.query-copy {
    display: flex;
    align-items: center;
    gap: 17px
}

.query-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: #fff2e9;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 23px
}

.query-copy h3 {
    font-size: 16px;
    margin: 0 0 5px
}

.query-copy p {
    font-size: 11px;
    color: var(--muted);
    margin: 0
}

.query-form {
    display: flex;
    gap: 9px
}

.query-form input {
    width: 300px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 0 15px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800
}

.query-form input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,107,0,.1)
}

.section {
    padding: 100px 0
}

.section-soft {
    background: var(--soft)
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 40px
}

.section-head>div {
    max-width: 650px
}

.section-head h2 {
    font-size: 42px;
    letter-spacing: -.05em;
    margin: 13px 0 0
}

.section-head p {
    max-width: 480px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 0
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 27px;
    transition: .25s
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: #ffd7ba
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-weight: 900
}

.service-card h3 {
    font-size: 17px;
    margin: 23px 0 10px
}

.service-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0
}

.service-card span {
    display: inline-block;
    margin-top: 22px;
    font-size: 10px;
    font-weight: 900;
    color: var(--orange)
}

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

.process-card {
    position: relative;
    padding: 25px 22px 0;
    border-top: 2px solid var(--line)
}

.process-card:before {
    content: attr(data-step);
    position: absolute;
    top: -17px;
    left: 0;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(255,107,0,.2)
}

.process-card h3 {
    font-size: 15px;
    margin: 24px 0 8px
}

.process-card p {
    font-size: 11px;
    line-height: 1.7;
    color: var(--muted)
}

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

.recent-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    background: #fff
}

.recent-head {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.recent-head b {
    font-size: 11px;
    padding: 7px 9px;
    border-radius: 9px;
    background: #e9f8f2;
    color: var(--green)
}

.recent-head span {
    font-size: 10px;
    color: var(--muted)
}

.recent-card h3 {
    font-size: 17px;
    margin: 19px 0 6px
}

.recent-card>p {
    font-size: 11px;
    color: var(--muted)
}

.recent-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 17px;
    font-size: 10px
}

.recent-meta strong {
    color: var(--orange)
}

.cta {
    padding: 0 0 100px
}

.cta-box {
    background: linear-gradient(120deg,var(--ink),#1d2633);
    border-radius: 30px;
    color: #fff;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative
}

.cta-box:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,107,0,.15);
    right: -80px;
    top: -110px
}

.cta-box h2 {
    font-size: 34px;
    letter-spacing: -.045em;
    margin: 0 0 9px
}

.cta-box p {
    margin: 0;
    color: #aeb6c3;
    font-size: 13px
}

.cta-box .btn {
    position: relative;
    z-index: 1
}

.public-footer {
    background: #090d13;
    color: #fff;
    padding: 65px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .8fr;
    gap: 60px
}

.footer-brand .brand-mark {
    background: var(--orange)
}

.footer-grid p {
    font-size: 12px;
    color: #8f98a8;
    line-height: 1.7;
    max-width: 390px;
    margin-top: 20px
}

.footer-grid h4 {
    font-size: 11px;
    letter-spacing: .12em;
    color: #747f90;
    margin: 0 0 17px
}

.footer-grid>div>a,.footer-grid>div>span {
    display: block;
    font-size: 12px;
    color: #c3c9d2;
    margin: 11px 0
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 22px;
    margin-top: 48px;
    font-size: 10px;
    color: #687386
}

/* Vehicle blueprint */
.vehicle-blueprint {
    width: 100%;
    height: auto;
    display: block;
    color: #667085
}

.blueprint-grid {
    color: #64748b
}

.dimension-lines line {
    stroke: #94a3b8;
    stroke-width: 1.4;
    stroke-dasharray: 5 6
}

.dimension-lines text {
    fill: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em
}

.vehicle-shadow ellipse {
    fill: #0f172a;
    opacity: .13
}

.wheel-set rect {
    fill: #111827
}

.car-outline {
    fill: #dfe4ea;
    stroke: #8b95a4;
    stroke-width: 3
}

.vehicle-panel {
    stroke: #fff;
    stroke-width: 5;
    vector-effect: non-scaling-stroke;
    transition: .18s;
    outline: none
}

.vehicle-blueprint.is-interactive .vehicle-panel {
    cursor: pointer
}

.vehicle-blueprint.is-interactive .vehicle-panel:hover,.vehicle-panel.is-selected {
    filter: brightness(.94);
    stroke: var(--orange);
    stroke-width: 8
}

.status-original {
    fill: #e6e9ee
}

.status-local-painted {
    fill: #f2c94c
}

.status-painted {
    fill: #f2994a
}

.status-removed {
    fill: #56a8e9
}

.status-replaced {
    fill: #df5353
}

.status-damaged {
    fill: #9b6bd8
}

.vehicle-glass path {
    fill: url(#glassGradient);
    stroke: #0f172a;
    stroke-width: 4
}

.vehicle-details path,.vehicle-details ellipse,.vehicle-details rect {
    fill: none;
    stroke: #788493;
    stroke-width: 3
}

.orientation-label path {
    fill: var(--orange)
}

.orientation-label text {
    fill: #64748b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em
}

/* Report public */
.report-public-body {
    background: #eef1f5
}

.report-toolbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(12,17,24,.95);
    backdrop-filter: blur(15px);
    color: #fff
}

.report-toolbar-inner {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.report-toolbar .brand-copy small {
    color: #8c96a5
}

.report-actions {
    display: flex;
    gap: 9px
}

.report-document {
    width: min(1120px,calc(100% - 32px));
    margin: 28px auto 60px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(15,23,42,.14);
    overflow: hidden
}

.report-cover {
    background: linear-gradient(120deg,var(--ink),#202a38);
    color: #fff;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center
}

.report-company {
    display: flex;
    align-items: center;
    gap: 16px
}

.report-company img {
    max-width: 160px;
    max-height: 64px;
    object-fit: contain
}

.report-company .brand-mark {
    background: var(--orange)
}

.report-company h1 {
    font-size: 20px;
    margin: 0 0 6px
}

.report-company p {
    font-size: 11px;
    color: #aab2bf;
    margin: 0
}

.report-id {
    text-align: right
}

.report-id small {
    display: block;
    font-size: 9px;
    color: #8791a1;
    letter-spacing: .15em
}

.report-id strong {
    font-size: 19px;
    display: block;
    margin-top: 6px
}

.report-body {
    padding: 34px 40px
}

.report-summary-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 20px
}

.vehicle-identity {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px
}

.vehicle-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px
}

.vehicle-title h2 {
    font-size: 26px;
    letter-spacing: -.04em;
    margin: 0
}

.vehicle-title span {
    padding: 8px 11px;
    border-radius: 10px;
    background: #f1f3f6;
    font-size: 11px;
    font-weight: 900
}

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

.detail-item small {
    font-size: 9px;
    color: var(--muted);
    display: block;
    margin-bottom: 5px;
    font-weight: 750
}

.detail-item strong {
    font-size: 12px
}

.score-card {
    border-radius: 22px;
    background: #fff7f1;
    border: 1px solid #ffd9bd;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.score-ring {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin: auto;
    display: grid;
    place-items: center;
    position: relative;
    background: conic-gradient(var(--orange) calc(var(--score)*1%),#e6e8ec 0)
}

.score-ring:before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: #fff
}

.score-ring strong {
    position: relative;
    font-size: 38px;
    letter-spacing: -.06em
}

.score-card {
    text-align: center
}

.score-card h3 {
    font-size: 17px;
    margin: 14px 0 4px
}

.score-card p {
    font-size: 10px;
    color: var(--muted);
    margin: 0
}

.report-section {
    margin-top: 30px
}

.report-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px
}

.report-section-head div {
    display: flex;
    align-items: center;
    gap: 11px
}

.report-section-head i {
    width: 31px;
    height: 31px;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 10px;
    font-weight: 900
}

.report-section-head h2 {
    font-size: 17px;
    margin: 0
}

.report-section-head span {
    font-size: 10px;
    color: var(--muted)
}

.body-report-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px
}

.body-schema-wrap {
    background: #f4f6f8;
    border-radius: 19px;
    padding: 8px
}

.body-schema-wrap .vehicle-blueprint {
    height: 570px
}

.panel-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    align-content: start
}

.panel-result {
    padding: 12px;
    border-radius: 13px;
    background: #f7f8fa;
    border-left: 4px solid #c8ced7
}

.panel-result.status-local-painted {
    border-left-color: #d1a900
}

.panel-result.status-painted {
    border-left-color: #ef7d20
}

.panel-result.status-removed {
    border-left-color: #388fd1
}

.panel-result.status-replaced {
    border-left-color: #d63b3b
}

.panel-result.status-damaged {
    border-left-color: #8950c9
}

.panel-result small {
    font-size: 9px;
    color: var(--muted);
    display: block
}

.panel-result strong {
    font-size: 11px;
    display: block;
    margin: 4px 0
}

.panel-result p {
    font-size: 9px;
    color: var(--muted);
    margin: 3px 0 0;
    line-height: 1.4
}

.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px
}

.legend span {
    font-size: 9px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    background: #f5f6f8;
    border-radius: 9px
}

.legend i {
    width: 9px;
    height: 9px;
    border-radius: 3px
}

.legend .original i {
    background: #dfe3e8
}

.legend .local-painted i {
    background: #f2c94c
}

.legend .painted i {
    background: #f2994a
}

.legend .removed i {
    background: #56a8e9
}

.legend .replaced i {
    background: #df5353
}

.legend .damaged i {
    background: #9b6bd8
}

.inspection-public-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.inspection-public-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden
}

.inspection-public-card h3 {
    font-size: 12px;
    margin: 0;
    padding: 14px 16px;
    background: #f5f6f8
}

.inspection-public-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 11px 16px;
    border-top: 1px solid var(--line);
    align-items: center
}

.inspection-public-row strong {
    font-size: 10px
}

.inspection-public-row p {
    font-size: 9px;
    color: var(--muted);
    margin: 4px 0 0
}

.status-pill {
    display: inline-flex;
    padding: 6px 8px;
    border-radius: 99px;
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap
}

.status-pill.ok {
    background: #e8f8f1;
    color: #087a4d
}

.status-pill.minor {
    background: #fff7dd;
    color: #9b6900
}

.status-pill.major {
    background: #fff0e4;
    color: #b64e00
}

.status-pill.critical {
    background: #fff0ef;
    color: #b42f29
}

.status-pill.unchecked {
    background: #eef1f5;
    color: #687386
}

.report-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.note-box {
    padding: 20px;
    border-radius: 18px;
    background: #f5f6f8
}

.note-box.orange {
    background: #fff5ed;
    border: 1px solid #ffd7ba
}

.note-box small {
    font-size: 9px;
    font-weight: 900;
    color: var(--muted);
    letter-spacing: .1em
}

.note-box p {
    font-size: 11px;
    line-height: 1.75;
    margin: 9px 0 0
}

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

.photo-grid figure {
    margin: 0;
    border-radius: 17px;
    overflow: hidden;
    background: #f4f5f7
}

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

.photo-grid figcaption {
    padding: 9px 11px;
    font-size: 9px;
    font-weight: 800
}

.report-footer-block {
    border-top: 1px solid var(--line);
    margin-top: 30px;
    padding-top: 25px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 25px;
    align-items: center
}

.report-footer-block p {
    font-size: 9px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 560px
}

.stamp-box {
    text-align: center
}

.stamp-box img {
    max-width: 120px;
    max-height: 75px;
    object-fit: contain
}

.stamp-box span,.qr-box span {
    display: block;
    font-size: 8px;
    color: var(--muted);
    margin-top: 5px
}

.qr-box {
    text-align: center
}

.qr-box img {
    width: 80px;
    height: 80px
}

/* Admin */
.admin-body {
    background: #f2f4f7;
    min-height: 100vh
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: #0b1017;
    color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 100
}

.sidebar-head {
    height: 83px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.07)
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0
}

.admin-brand>span {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: var(--orange);
    display: grid;
    place-items: center;
    font-weight: 900
}

.admin-brand>img {
    width: 105px;
    filter: brightness(0) invert(1)
}

.admin-brand div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0
}

.admin-brand strong {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px
}

.admin-brand small {
    font-size: 8px;
    color: #758091;
    letter-spacing: .11em
}

.sidebar-head>button {
    display: none;
    color: #fff;
    background: none;
    border: 0;
    font-size: 24px
}

.sidebar-nav {
    padding: 23px 14px;
    flex: 1;
    overflow: auto
}

.sidebar-nav>small {
    display: block;
    font-size: 8px;
    color: #596475;
    letter-spacing: .16em;
    font-weight: 900;
    margin: 13px 12px 9px
}

.sidebar-nav>a {
    height: 47px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border-radius: 12px;
    color: #9099a8;
    font-size: 11px;
    font-weight: 750;
    margin-bottom: 4px;
    position: relative
}

.sidebar-nav>a i {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 13px
}

.sidebar-nav>a b {
    margin-left: auto;
    font-size: 7px;
    background: var(--orange);
    color: #fff;
    padding: 4px 6px;
    border-radius: 5px
}

.sidebar-nav>a:hover,.sidebar-nav>a.active {
    background: rgba(255,255,255,.075);
    color: #fff
}

.sidebar-nav>a.active:before {
    content: "";
    position: absolute;
    left: -14px;
    width: 3px;
    height: 23px;
    background: var(--orange);
    border-radius: 0 4px 4px 0
}

.sidebar-nav>a.active i {
    background: var(--orange)
}

.sidebar-bottom {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px
}

.sidebar-user>span {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: #252d39;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--orange)
}

.sidebar-user div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.sidebar-user strong {
    font-size: 10px
}

.sidebar-user small {
    font-size: 8px;
    color: #707b8b
}

.sidebar-bottom>a {
    width: 33px;
    height: 33px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: grid;
    place-items: center;
    color: #9aa3b1
}

.admin-main {
    grid-column: 2;
    min-width: 0
}

.admin-topbar {
    height: 83px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 50
}

.admin-topbar>div {
    display: flex;
    align-items: center;
    gap: 13px
}

.sidebar-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff
}

.page-heading small {
    display: block;
    font-size: 8px;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .08em
}

.page-heading h1 {
    font-size: 18px;
    margin: 3px 0 0;
    letter-spacing: -.025em
}

.topbar-actions {
    display: flex;
    gap: 9px
}

.topbar-site,.primary-action {
    height: 41px;
    padding: 0 14px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 850
}

.topbar-site {
    border: 1px solid var(--line);
    background: #fff
}

.primary-action {
    background: var(--orange);
    color: #fff
}

.admin-content {
    padding: 25px 30px 70px;
    max-width: 1580px;
    margin: auto
}

.admin-flash {
    padding: 14px 16px;
    border-radius: 13px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 750;
    display: flex;
    gap: 10px;
    align-items: center
}

.admin-flash span {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    display: grid;
    place-items: center
}

.admin-flash.success {
    background: #e9f8f1;
    color: #087a4d
}

.admin-flash.success span {
    background: #0d9b65;
    color: #fff
}

.admin-flash.error {
    background: #fff0ef;
    color: #a42b25
}

.admin-flash.error span {
    background: #d9463e;
    color: #fff
}

.dashboard-welcome {
    background: linear-gradient(120deg,#101720,#202b3a);
    color: #fff;
    border-radius: 24px;
    padding: 27px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative
}

.dashboard-welcome:after {
    content: "MX";
    position: absolute;
    right: 25px;
    top: -31px;
    font-size: 135px;
    font-weight: 950;
    color: rgba(255,255,255,.035)
}

.dashboard-welcome h2 {
    font-size: 22px;
    margin: 0 0 7px
}

.dashboard-welcome p {
    font-size: 11px;
    color: #9aa5b5;
    margin: 0
}

.dashboard-welcome .btn {
    position: relative;
    z-index: 1
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 13px;
    margin-top: 16px
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 19px
}

.stat-head {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.stat-head span {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: #fff2e9;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-weight: 900
}

.stat-head small {
    font-size: 8px;
    color: var(--muted);
    font-weight: 800
}

.stat-card strong {
    font-size: 28px;
    display: block;
    margin-top: 16px;
    letter-spacing: -.055em
}

.stat-card p {
    font-size: 9px;
    color: var(--muted);
    margin: 5px 0 0
}

.admin-grid {
    display: grid;
    grid-template-columns: 1.55fr .75fr;
    gap: 16px;
    margin-top: 16px
}

.panel-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px
}

.panel-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.panel-head h2 {
    font-size: 13px;
    margin: 0
}

.panel-head p {
    font-size: 8px;
    color: var(--muted);
    margin: 4px 0 0
}

.panel-head a {
    font-size: 9px;
    color: var(--orange);
    font-weight: 900
}

.table-wrap {
    overflow: auto
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px
}

.data-table th {
    font-size: 8px;
    color: var(--muted);
    font-weight: 900;
    letter-spacing: .07em;
    text-align: left;
    padding: 11px 18px;
    background: #fafbfc;
    border-bottom: 1px solid var(--line)
}

.data-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
    vertical-align: middle
}

.data-table tr:last-child td {
    border-bottom: 0
}

.table-vehicle {
    display: flex;
    align-items: center;
    gap: 10px
}

.table-vehicle span {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: #f2f4f7;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--orange)
}

.table-vehicle div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.table-vehicle strong {
    font-size: 10px
}

.table-vehicle small {
    font-size: 8px;
    color: var(--muted)
}

.workflow-badge {
    display: inline-flex;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 900
}

.workflow-badge.completed,.workflow-badge.paid {
    background: #e9f8f1;
    color: #087a4d
}

.workflow-badge.draft,.workflow-badge.waiting {
    background: #fff6df;
    color: #9a6800
}

.workflow-badge.planned {
    background: #eaf2ff;
    color: #205fb7
}

.workflow-badge.cancelled,.workflow-badge.unpaid {
    background: #fff0ef;
    color: #a72e28
}

.row-actions {
    display: flex;
    gap: 5px
}

.row-actions a,.row-actions button {
    width: 29px;
    height: 29px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 11px
}

.row-actions a:hover {
    border-color: var(--orange);
    color: var(--orange)
}

.activity-list {
    padding: 4px 19px 13px
}

.activity-item {
    display: grid;
    grid-template-columns: 9px 1fr auto;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    align-items: start
}

.activity-item:last-child {
    border: 0
}

.activity-item>i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 4px
}

.activity-item strong {
    font-size: 9px;
    display: block
}

.activity-item p {
    font-size: 8px;
    color: var(--muted);
    line-height: 1.5;
    margin: 4px 0 0
}

.activity-item time {
    font-size: 7px;
    color: var(--muted)
}

.filters {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px
}

.filters form {
    display: flex;
    gap: 9px;
    flex: 1
}

.filters input,.filters select {
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 11px;
    padding: 0 12px;
    font-size: 10px;
    outline: none
}

.filters input {
    min-width: 260px;
    flex: 1
}

.filters .btn {
    min-height: 42px
}

.empty-state {
    text-align: center;
    padding: 55px 20px
}

.empty-state span {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #fff2e9;
    color: var(--orange);
    display: grid;
    place-items: center;
    margin: auto;
    font-size: 23px
}

.empty-state h3 {
    font-size: 15px
}

.empty-state p {
    font-size: 10px;
    color: var(--muted)
}

/* Wizard form */
.wizard-shell {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    align-items: start
}

.wizard-nav {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 13px;
    position: sticky;
    top: 108px
}

.wizard-progress {
    height: 4px;
    background: #edf0f3;
    border-radius: 99px;
    margin: 7px 7px 15px;
    overflow: hidden
}

.wizard-progress i {
    display: block;
    height: 100%;
    width: 20%;
    background: var(--orange);
    border-radius: 99px;
    transition: .25s
}

.wizard-step {
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 13px;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: var(--muted);
    margin-bottom: 4px
}

.wizard-step>span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #f1f3f6;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900
}

.wizard-step div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.wizard-step strong {
    font-size: 9px
}

.wizard-step small {
    font-size: 7px;
    color: #9aa3b1
}

.wizard-step.active {
    background: #fff3ea;
    color: var(--ink)
}

.wizard-step.active>span {
    background: var(--orange);
    color: #fff
}

.wizard-step.done>span {
    background: #e8f8f1;
    color: var(--green)
}

.wizard-content {
    min-width: 0
}

.wizard-panel {
    display: none
}

.wizard-panel.active {
    display: block;
    animation: panelIn .24s ease
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    margin-bottom: 14px;
    overflow: hidden
}

.form-card-head {
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.form-card-head div {
    display: flex;
    align-items: center;
    gap: 12px
}

.form-card-head>div>span {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900
}

.form-card-head h2 {
    font-size: 14px;
    margin: 0
}

.form-card-head p {
    font-size: 8px;
    color: var(--muted);
    margin: 4px 0 0
}

.form-card-body {
    padding: 22px
}

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

.form-grid.cols-2 {
    grid-template-columns: repeat(2,1fr)
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.field.span-2 {
    grid-column: span 2
}

.field.span-3 {
    grid-column: 1/-1
}

.field>span {
    font-size: 9px;
    font-weight: 850;
    color: #3c4654
}

.field>span small {
    font-weight: 500;
    color: var(--muted)
}

.field input,.field select,.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfcfd;
    outline: none;
    font-size: 11px;
    color: var(--ink)
}

.field input,.field select {
    height: 45px;
    padding: 0 12px
}

.field textarea {
    padding: 12px;
    resize: vertical;
    min-height: 90px;
    line-height: 1.6
}

.field input:focus,.field select:focus,.field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,107,0,.09);
    background: #fff
}

.switch-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px
}

.switch-field div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.switch-field strong {
    font-size: 9px
}

.switch-field small {
    font-size: 8px;
    color: var(--muted)
}

.switch {
    position: relative;
    width: 42px;
    height: 24px
}

.switch input {
    opacity: 0;
    position: absolute
}

.switch i {
    position: absolute;
    inset: 0;
    border-radius: 99px;
    background: #d9dee5;
    transition: .2s
}

.switch i:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    box-shadow: 0 2px 8px #0002;
    transition: .2s
}

.switch input:checked+i {
    background: var(--orange)
}

.switch input:checked+i:after {
    transform: translateX(18px)
}

.wizard-actions {
    position: sticky;
    bottom: 14px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 17px;
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 18px 50px rgba(15,23,42,.12);
    z-index: 20
}

.wizard-actions>div {
    display: flex;
    gap: 8px
}

.wizard-actions small {
    font-size: 8px;
    color: var(--muted);
    margin-left: 8px
}

.schema-editor {
    display: grid;
    grid-template-columns: minmax(380px,1fr) 340px;
    gap: 17px
}

.schema-stage {
    background: #f3f5f8;
    border-radius: 20px;
    padding: 10px;
    min-height: 640px
}

.schema-stage .vehicle-blueprint {
    height: 620px
}

.panel-editor {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    position: sticky;
    top: 108px;
    background: #fff
}

.panel-editor-empty {
    text-align: center;
    padding: 90px 20px
}

.panel-editor-empty span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #fff2e9;
    color: var(--orange);
    display: grid;
    place-items: center;
    margin: auto;
    font-size: 23px
}

.panel-editor-empty h3 {
    font-size: 13px
}

.panel-editor-empty p {
    font-size: 9px;
    color: var(--muted);
    line-height: 1.6
}

.panel-editor-active {
    display: none
}

.panel-editor.has-selection .panel-editor-empty {
    display: none
}

.panel-editor.has-selection .panel-editor-active {
    display: block
}

.panel-editor-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px
}

.panel-editor-title div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.panel-editor-title small {
    font-size: 8px;
    color: var(--muted);
    font-weight: 850
}

.panel-editor-title strong {
    font-size: 15px
}

.selected-status {
    font-size: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    background: #f1f3f6;
    font-weight: 900
}

.status-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0
}

.status-option {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 800;
    text-align: left
}

.status-option i {
    width: 13px;
    height: 13px;
    border-radius: 4px
}

.status-option.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,107,0,.08)
}

.status-option[data-status="Orijinal"] i {
    background: #dfe3e8
}

.status-option[data-status="Lokal Boyalı"] i {
    background: #f2c94c
}

.status-option[data-status="Boyalı"] i {
    background: #f2994a
}

.status-option[data-status="Sök Tak"] i {
    background: #56a8e9
}

.status-option[data-status="Değişen"] i {
    background: #df5353
}

.status-option[data-status="Ezik / Çizik"] i {
    background: #9b6bd8
}

.panel-note textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px;
    font-size: 10px;
    resize: vertical;
    outline: none
}

.panel-note span {
    font-size: 9px;
    font-weight: 850;
    display: block;
    margin-bottom: 7px
}

.panel-summary {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-top: 15px
}

.panel-summary div {
    padding: 10px;
    border-radius: 11px;
    background: #f5f6f8;
    text-align: center
}

.panel-summary strong {
    display: block;
    font-size: 15px
}

.panel-summary small {
    font-size: 7px;
    color: var(--muted)
}

.inspection-accordion {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 10px
}

.inspection-category-head {
    width: 100%;
    height: 58px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    text-align: left
}

.inspection-category-head div {
    display: flex;
    align-items: center;
    gap: 11px
}

.inspection-category-head span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f1f3f6;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900
}

.inspection-category-head strong {
    font-size: 11px
}

.inspection-category-head small {
    font-size: 8px;
    color: var(--muted);
    display: block;
    margin-top: 3px
}

.inspection-category-body {
    display: none;
    border-top: 1px solid var(--line)
}

.inspection-accordion.open .inspection-category-body {
    display: block
}

.inspection-row {
    display: grid;
    grid-template-columns: 1.2fr 160px 160px;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    align-items: center
}

.inspection-row:last-child {
    border: 0
}

.inspection-row>div>strong {
    font-size: 10px
}

.inspection-row input,.inspection-row select {
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 9px;
    font-size: 9px;
    background: #fbfcfd
}

.inspection-note {
    grid-column: 1/-1;
    display: none
}

.inspection-row.has-note .inspection-note {
    display: block
}

.inspection-note input {
    width: 100%
}

.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px
}

.photo-drop {
    border: 1.5px dashed #cfd5dd;
    border-radius: 17px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #fafbfc;
    cursor: pointer;
    padding: 20px
}

.photo-drop:hover {
    border-color: var(--orange);
    background: #fff8f2
}

.photo-drop input {
    display: none
}

.photo-drop i {
    width: 41px;
    height: 41px;
    border-radius: 13px;
    background: #fff2e9;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 21px
}

.photo-drop strong {
    font-size: 10px;
    margin-top: 10px
}

.photo-drop small {
    font-size: 8px;
    color: var(--muted);
    margin-top: 5px
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
    margin-top: 10px
}

.photo-preview figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #f1f3f6
}

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

.existing-photo {
    position: relative
}

.existing-photo label {
    position: absolute;
    right: 6px;
    top: 6px;
    background: #fff;
    color: var(--red);
    padding: 5px 7px;
    border-radius: 7px;
    font-size: 8px;
    font-weight: 900
}

.existing-photo input {
    vertical-align: middle
}

.score-control {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 18px;
    align-items: center
}

.score-control input[type=range] {
    width: 100%;
    accent-color: var(--orange)
}

.score-output {
    height: 80px;
    border-radius: 18px;
    background: #fff2e9;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 950
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 16px
}

.logo-uploader {
    border: 1.5px dashed #cdd3db;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    background: #fafbfc
}

.logo-uploader img {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 14px
}

.logo-uploader input {
    width: 100%;
    font-size: 9px
}

.mobile-admin-nav {
    display: none
}

@media(max-width: 1100px) {
    .hero h1 {
        font-size:54px
    }

    .hero-grid {
        gap: 25px
    }

    .service-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .admin-grid {
        grid-template-columns: 1fr
    }

    .schema-editor {
        grid-template-columns: 1fr
    }

    .panel-editor {
        position: static
    }

    .body-report-grid {
        grid-template-columns: 340px 1fr
    }

    .form-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .field.span-3 {
        grid-column: 1/-1
    }
}

@media(max-width: 820px) {
    .public-shell {
        width:min(100% - 28px,1220px)
    }

    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: flex
    }

    .mobile-menu.open {
        display: block
    }

    .public-header {
        height: 72px
    }

    .mobile-menu {
        top: 72px
    }

    .brand-copy strong {
        font-size: 13px
    }

    .hero {
        min-height: auto
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 55px 0 85px
    }

    .hero h1 {
        font-size: 45px
    }

    .hero-copy>p {
        font-size: 14px
    }

    .hero-visual {
        min-height: 430px
    }

    .hero-card {
        width: min(350px,90%)
    }

    .chip-1 {
        left: 3px
    }

    .chip-2 {
        right: 3px
    }

    .query-box {
        grid-template-columns: 1fr
    }

    .query-form {
        width: 100%
    }

    .query-form input {
        width: auto;
        flex: 1
    }

    .section {
        padding: 75px 0
    }

    .section-head {
        display: block
    }

    .section-head h2 {
        font-size: 34px
    }

    .section-head p {
        margin-top: 15px
    }

    .process-grid {
        grid-template-columns: repeat(2,1fr);
        row-gap: 35px
    }

    .recent-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-box {
        display: block;
        padding: 35px
    }

    .cta-box .btn {
        margin-top: 22px
    }

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

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }

    .admin-layout {
        display: block
    }

    .sidebar {
        transform: translateX(-100%);
        transition: .25s
    }

    .sidebar.open {
        transform: none
    }

    .sidebar-head>button {
        display: block
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: #0b101799;
        z-index: 90
    }

    .sidebar-overlay.open {
        display: block
    }

    .admin-main {
        grid-column: auto
    }

    .sidebar-toggle {
        display: block
    }

    .admin-topbar {
        padding: 0 18px
    }

    .topbar-site {
        display: none
    }

    .admin-content {
        padding: 18px 18px 90px
    }

    .wizard-shell {
        grid-template-columns: 1fr
    }

    .wizard-nav {
        position: static;
        display: flex;
        overflow-x: auto;
        padding: 8px
    }

    .wizard-progress {
        display: none
    }

    .wizard-step {
        min-width: 155px;
        margin: 0
    }

    .wizard-step small {
        display: none
    }

    .body-report-grid {
        grid-template-columns: 1fr
    }

    .body-schema-wrap .vehicle-blueprint {
        height: 500px
    }

    .report-summary-grid {
        grid-template-columns: 1fr
    }

    .inspection-public-grid {
        grid-template-columns: 1fr
    }

    .report-document {
        margin-top: 14px
    }

    .report-cover,.report-body {
        padding: 25px
    }

    .detail-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .report-toolbar .brand-copy {
        display: none
    }

    .mobile-admin-nav {
        display: grid;
        grid-template-columns: repeat(5,1fr);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 70px;
        background: #fff;
        border-top: 1px solid var(--line);
        z-index: 70;
        padding-bottom: env(safe-area-inset-bottom)
    }

    .mobile-admin-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        font-size: 7px;
        color: var(--muted)
    }

    .mobile-admin-nav i {
        font-style: normal;
        font-size: 16px
    }

    .mobile-admin-nav .mobile-new i {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        background: var(--orange);
        color: #fff;
        display: grid;
        place-items: center;
        margin-top: -22px;
        font-size: 25px;
        box-shadow: 0 12px 25px rgba(255,107,0,.3)
    }
}

@media(max-width: 600px) {
    .hero h1 {
        font-size:39px
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch
    }

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

    .hero-trust {
        gap: 18px
    }

    .hero-trust strong {
        font-size: 17px
    }

    .hero-visual {
        min-height: 390px
    }

    .hero-card {
        width: 315px;
        padding: 17px
    }

    .hero-car .vehicle-blueprint {
        height: 240px
    }

    .floating-chip {
        font-size: 9px
    }

    .query-band {
        margin-top: -45px
    }

    .query-box {
        padding: 20px
    }

    .query-copy {
        align-items: flex-start
    }

    .query-icon {
        width: 45px;
        height: 45px
    }

    .query-form {
        display: grid
    }

    .query-form input {
        width: 100%
    }

    .service-grid,.recent-grid,.process-grid {
        grid-template-columns: 1fr
    }

    .section-head h2 {
        font-size: 30px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-grid>div:first-child {
        grid-column: auto
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 6px
    }

    .dashboard-welcome {
        display: block;
        padding: 23px
    }

    .dashboard-welcome .btn {
        margin-top: 18px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-card {
        padding: 15px
    }

    .stat-card strong {
        font-size: 24px
    }

    .topbar-actions .primary-action {
        width: 40px;
        padding: 0;
        font-size: 0
    }

    .topbar-actions .primary-action:first-letter {
        font-size: 18px
    }

    .page-heading h1 {
        font-size: 15px
    }

    .admin-content {
        padding-left: 12px;
        padding-right: 12px
    }

    .filters form {
        display: grid;
        width: 100%
    }

    .filters input {
        min-width: 0
    }

    .wizard-nav {
        border-radius: 15px
    }

    .wizard-step {
        min-width: 130px;
        padding: 9px 7px
    }

    .wizard-step>span {
        width: 27px;
        height: 27px
    }

    .form-card-head,.form-card-body {
        padding: 17px
    }

    .form-grid,.form-grid.cols-2 {
        grid-template-columns: 1fr
    }

    .field.span-2,.field.span-3 {
        grid-column: auto
    }

    .wizard-actions small {
        display: none
    }

    .schema-stage {
        min-height: 460px;
        padding: 3px
    }

    .schema-stage .vehicle-blueprint {
        height: 450px
    }

    .status-options {
        grid-template-columns: 1fr 1fr
    }

    .inspection-row {
        grid-template-columns: 1fr 1fr
    }

    .inspection-row>div:first-child {
        grid-column: 1/-1
    }

    .photo-upload-grid {
        grid-template-columns: 1fr
    }

    .photo-preview {
        grid-template-columns: repeat(2,1fr)
    }

    .settings-grid {
        grid-template-columns: 1fr
    }

    .report-cover {
        grid-template-columns: 1fr
    }

    .report-id {
        text-align: left
    }

    .report-body {
        padding: 18px
    }

    .report-document {
        width: calc(100% - 16px);
        border-radius: 18px
    }

    .vehicle-title {
        display: block
    }

    .vehicle-title span {
        display: inline-block;
        margin-top: 10px
    }

    .detail-grid {
        grid-template-columns: 1fr 1fr
    }

    .body-schema-wrap .vehicle-blueprint {
        height: 430px
    }

    .panel-list {
        grid-template-columns: 1fr
    }

    .report-notes {
        grid-template-columns: 1fr
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr
    }

    .report-footer-block {
        grid-template-columns: 1fr;
        text-align: center
    }

    .report-actions .btn span {
        display: none
    }

    .report-actions .btn {
        padding: 0 12px;
        min-height: 40px;
        font-size: 9px
    }

    .report-company h1 {
        font-size: 16px
    }
}

@media print {
    body {
        background: #fff
    }

    .report-toolbar,.public-header,.public-footer,.mobile-admin-nav {
        display: none!important
    }

    .report-document {
        width: 100%;
        margin: 0;
        box-shadow: none;
        border-radius: 0
    }

    .report-cover {
        padding: 24px 28px
    }

    .report-body {
        padding: 24px 28px
    }

    .body-report-grid,.inspection-public-card,.note-box,.photo-grid figure {
        break-inside: avoid
    }

    .body-schema-wrap .vehicle-blueprint {
        height: 480px
    }

    .report-section {
        margin-top: 20px
    }

    .photo-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

/* ========================================================================
   MOBİL EKSPERTİZ V4 — KURUMSAL OPERASYON LAYER
   ======================================================================== */
:root {
    --orange: #ff6a00;
    --orange-deep: #e95200;
    --orange-soft: #fff3e9;
    --ink: #0b1018;
    --ink-2: #131b26;
    --panel: #ffffff;
    --canvas: #f2f5f8;
    --line: #e3e8ee;
    --muted: #697586;
    --shadow-soft: 0 12px 34px rgba(15,23,42,.07);
    --shadow-premium: 0 30px 80px rgba(15,23,42,.12);
}

.admin-body {
    background: radial-gradient(circle at 92% -5%,rgba(255,106,0,.075),transparent 27%),#f2f4f7
}

.sidebar {
    background: linear-gradient(180deg,#080c12 0%,#0c121b 52%,#080c12 100%);
    box-shadow: 18px 0 60px rgba(5,10,18,.08)
}

.sidebar-head {
    height: 88px;
    background: linear-gradient(180deg,rgba(255,255,255,.025),transparent)
}

.sidebar-nav>a {
    height: 50px;
    border: 1px solid transparent;
    border-radius: 14px
}

.sidebar-nav>a:hover {
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.04)
}

.sidebar-nav>a.active {
    background: linear-gradient(90deg,rgba(255,106,0,.16),rgba(255,106,0,.035));
    border-color: rgba(255,106,0,.16)
}

.sidebar-nav>a.active i {
    box-shadow: 0 9px 24px rgba(255,106,0,.24)
}

.admin-topbar {
    height: 88px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px)
}

.admin-content {
    padding: 28px 30px 100px
}

.page-heading h1 {
    letter-spacing: -.035em
}

.panel-card,.form-card,.wizard-nav {
    border-color: rgba(225,230,237,.92);
    box-shadow: var(--shadow-soft)
}

.form-card {
    border-radius: 26px
}

.form-card-head {
    padding: 23px 25px;
    background: linear-gradient(180deg,#fff,#fdfefe)
}

.form-card-head>div>span {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    box-shadow: 0 10px 24px rgba(11,16,24,.13)
}

.form-card-head h2 {
    font-size: 15px;
    letter-spacing: -.025em
}

.form-card-head p {
    font-size: 9px;
    line-height: 1.45
}

.form-card-body {
    padding: 25px
}

.field>span {
    font-size: 10px;
    color: #303a48
}

.field-help {
    font-size: 8px;
    line-height: 1.45;
    color: var(--muted);
    margin-top: -2px
}

.field input,.field select,.field textarea {
    border-color: #dfe5ec;
    background: #f9fbfc;
    transition: border-color .18s,box-shadow .18s,background .18s
}

.field input,.field select {
    height: 49px;
    border-radius: 13px
}

.field textarea {
    border-radius: 14px
}

.field input:hover,.field select:hover,.field textarea:hover {
    border-color: #cbd3dd;
    background: #fff
}

.field input:focus,.field select:focus,.field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,106,0,.10)
}

.wizard-shell {
    grid-template-columns: 236px minmax(0,1fr);
    gap: 20px
}

.wizard-nav {
    border-radius: 24px;
    padding: 15px;
    top: 108px
}

.wizard-step {
    min-height: 59px;
    border-radius: 15px;
    padding: 11px
}

.wizard-step>span {
    width: 34px;
    height: 34px;
    border-radius: 11px
}

.wizard-step strong {
    font-size: 10px
}

.wizard-step small {
    font-size: 8px
}

.wizard-step.active {
    background: linear-gradient(135deg,#fff1e6,#fff8f3);
    box-shadow: inset 0 0 0 1px rgba(255,106,0,.08)
}

.wizard-progress {
    height: 5px
}

.wizard-actions {
    bottom: 16px;
    border-radius: 20px;
    padding: 12px 14px;
    box-shadow: 0 22px 60px rgba(15,23,42,.15)
}

.autosave-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #647183;
    font-weight: 750
}

.autosave-indicator i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #17a46b;
    box-shadow: 0 0 0 4px rgba(23,164,107,.10)
}

.autosave-indicator.saving i {
    background: #f0a11e;
    animation: autosavePulse 1s infinite
}

.autosave-indicator.saved i {
    background: #17a46b
}

@keyframes autosavePulse {
    50% {
        opacity: .35
    }
}

/* Body-type selector */
.bodymap-card {
    overflow: visible
}

.bodymap-head {
    border-radius: 26px 26px 0 0
}

.bodymap-head-meta {
    display: grid!important;
    grid-template-columns: auto auto;
    column-gap: 8px;
    align-items: center!important;
    text-align: right
}

.bodymap-head-meta .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #19a66d;
    box-shadow: 0 0 0 5px rgba(25,166,109,.10);
    grid-row: 1/3
}

.bodymap-head-meta strong {
    font-size: 10px;
    letter-spacing: .08em
}

.bodymap-head-meta small {
    font-size: 7px;
    color: var(--muted);
    letter-spacing: .12em
}

.bodymap-body {
    background: linear-gradient(180deg,#fbfcfd 0,#fff 280px)
}

.vehicle-type-switcher {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    padding: 7px;
    background: #eef2f6;
    border: 1px solid #e2e7ed;
    border-radius: 18px;
    margin-bottom: 18px
}

.vehicle-type-option {
    height: 55px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    color: #657181;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 850;
    transition: .2s
}

.vehicle-type-option:hover {
    background: rgba(255,255,255,.65);
    color: var(--ink)
}

.vehicle-type-option.active {
    background: #fff;
    color: var(--ink);
    border-color: #e3e7ec;
    box-shadow: 0 7px 18px rgba(15,23,42,.08)
}

.vehicle-type-option.active:after {
    content: "✓";
    width: 18px;
    height: 18px;
    border-radius: 7px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 9px
}

.vehicle-type-icon {
    position: relative;
    width: 28px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 7px 7px 4px 4px;
    opacity: .72
}

.vehicle-type-icon:before,.vehicle-type-icon:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    bottom: -5px
}

.vehicle-type-icon:before {
    left: 3px
}

.vehicle-type-icon:after {
    right: 3px
}

.vehicle-type-option:nth-child(2) .vehicle-type-icon {
    width: 25px;
    border-radius: 8px 5px 4px 4px
}

.vehicle-type-option:nth-child(3) .vehicle-type-icon {
    height: 16px;
    width: 29px;
    border-radius: 6px 8px 4px 4px
}

.vehicle-type-option:nth-child(4) .vehicle-type-icon {
    height: 17px;
    width: 31px;
    border-radius: 4px
}

/* Premium schema workspace */
.schema-editor-premium {
    grid-template-columns: minmax(480px,1fr) 365px;
    gap: 18px;
    align-items: start
}

.schema-workspace {
    border: 1px solid #dfe5eb;
    border-radius: 25px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(15,23,42,.07)
}

.schema-toolbar {
    height: 67px;
    padding: 0 18px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e7ebef;
    background: linear-gradient(180deg,#fff,#fafbfd)
}

.schema-toolbar>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.schema-toolbar-kicker {
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .17em;
    color: var(--orange)
}

.schema-toolbar strong {
    font-size: 13px;
    letter-spacing: -.02em
}

.schema-tools {
    display: flex;
    gap: 7px
}

.schema-tools button {
    height: 34px;
    border: 1px solid #e1e6ec;
    border-radius: 10px;
    background: #fff;
    color: #556172;
    padding: 0 10px;
    font-size: 9px;
    font-weight: 850;
    display: flex;
    align-items: center;
    gap: 6px
}

.schema-tools button:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: #fff8f3
}

.schema-stage-premium {
    position: relative;
    min-height: 690px;
    padding: 13px;
    background: radial-gradient(circle at 50% 42%,#fff 0,#f5f7fa 48%,#eef2f6 100%);
    overflow: hidden
}

.schema-stage-premium:before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(112,125,142,.10);
    border-radius: 26px;
    pointer-events: none
}

.vehicle-schema-variant {
    display: none;
    width: 100%;
    height: 660px;
    position: relative;
    z-index: 2
}

.vehicle-schema-variant.active {
    display: block;
    animation: schemaAppear .3s ease
}

.vehicle-schema-variant .vehicle-blueprint {
    width: 100%;
    height: 100%;
    object-fit: contain
}

@keyframes schemaAppear {
    from {
        opacity: 0;
        transform: scale(.985)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.schema-hint {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,15,23,.88);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 9px 13px;
    border-radius: 99px;
    box-shadow: 0 12px 30px rgba(11,16,24,.18);
    font-size: 8px;
    font-weight: 800;
    white-space: nowrap;
    pointer-events: none;
    transition: .2s
}

.schema-hint i {
    font-style: normal;
    color: var(--orange)
}

.schema-stage-premium.has-selection .schema-hint {
    opacity: 0;
    transform: translate(-50%,8px)
}

.bodymap-legend {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 0;
    border-top: 1px solid #e8ecf0;
    background: #fff
}

.bodymap-legend button {
    min-height: 60px;
    border: 0;
    border-right: 1px solid #edf0f3;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    font-size: 7px;
    font-weight: 850;
    color: #667385
}

.bodymap-legend button:last-child {
    border-right: 0
}

.bodymap-legend button:hover {
    background: #fafbfc;
    color: var(--ink)
}

.bodymap-legend i {
    width: 18px;
    height: 7px;
    border-radius: 99px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.05)
}

.bodymap-legend .original i {
    background: #e5e9ee
}

.bodymap-legend .local-painted i {
    background: #f4c84a
}

.bodymap-legend .painted i {
    background: #f28b38
}

.bodymap-legend .removed i {
    background: #459fe2
}

.bodymap-legend .replaced i {
    background: #df4d48
}

.bodymap-legend .damaged i {
    background: #9360d0
}

/* SVG premium vehicle drawing */
.vehicle-blueprint {
    color: #536173;
    overflow: visible
}

.vehicle-blueprint .schema-canvas {
    fill: #f8fafc;
    stroke: #dce3ea;
    stroke-width: 2
}

.vehicle-blueprint .schema-grid {
    color: #64748b;
    pointer-events: none
}

.vehicle-blueprint .schema-axis path {
    fill: none;
    stroke: #a9b4c1;
    stroke-width: 1.2;
    stroke-dasharray: 5 11;
    opacity: .44
}

.vehicle-blueprint .schema-axis circle {
    fill: var(--orange);
    opacity: .6
}

.vehicle-blueprint .dimension-lines path {
    fill: none;
    stroke: #9ba8b7;
    stroke-width: 1.3;
    stroke-dasharray: 5 6;
    opacity: .65
}

.vehicle-blueprint .dimension-lines text {
    fill: #8996a7;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em
}

.vehicle-blueprint .schema-headline rect {
    fill: #101722
}

.vehicle-blueprint .schema-headline text {
    fill: #758295;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em
}

.vehicle-blueprint .schema-headline rect+text {
    fill: #fff;
    font-size: 9px
}

.vehicle-blueprint .schema-headline path {
    fill: var(--orange)
}

.vehicle-ground-shadow {
    fill: #0a1220;
    opacity: .13;
    filter: blur(2px)
}

.vehicle-shell>path:first-child {
    stroke: #667386;
    stroke-width: 4
}

.vehicle-shell .shell-inset {
    fill: none;
    stroke: #fff;
    stroke-opacity: .72;
    stroke-width: 3
}

.wheel-set rect {
    fill: #0a0f17;
    stroke: #303b4a;
    stroke-width: 4
}

.vehicle-panel {
    stroke: #f8fafc;
    stroke-width: 5;
    vector-effect: non-scaling-stroke;
    transition: filter .15s,stroke .15s,opacity .15s;
    outline: none;
    paint-order: stroke fill;
    stroke-linejoin: round
}

.vehicle-blueprint.is-interactive .vehicle-panel {
    cursor: pointer
}

.vehicle-blueprint.is-interactive .vehicle-panel:hover {
    filter: brightness(.97) drop-shadow(0 5px 8px rgba(15,23,42,.13));
    stroke: #ff9b53;
    stroke-width: 7
}

.vehicle-panel.is-selected {
    stroke: var(--orange)!important;
    stroke-width: 9!important;
    filter: drop-shadow(0 0 9px rgba(255,106,0,.72)) brightness(1.02)!important
}

.status-original {
    fill: #e6ebf0
}

.status-local-painted {
    fill: #f3c845
}

.status-painted {
    fill: #f28a38
}

.status-removed {
    fill: #4b9fdf
}

.status-replaced {
    fill: #df4e49
}

.status-damaged {
    fill: #9363ce
}

.vehicle-glass path {
    stroke: #536173;
    stroke-width: 4;
    pointer-events: none
}

.vehicle-glass .glass-shine {
    stroke: none;
    opacity: .82
}

.vehicle-trim path,.vehicle-trim ellipse {
    fill: none;
    stroke: #7b8796;
    stroke-width: 3;
    opacity: .75;
    pointer-events: none
}

.vehicle-lights path {
    stroke-width: 2.5;
    pointer-events: none
}

.vehicle-lights .front-light {
    fill: #edf8ff;
    stroke: #7fbfe6
}

.vehicle-lights .rear-light {
    fill: #ff615b;
    stroke: #a92e2b
}

.mirror-set path {
    fill: #cbd3dc;
    stroke: #626f7e;
    stroke-width: 3;
    pointer-events: none
}

.schema-corner-markers path {
    fill: none;
    stroke: #8895a5;
    stroke-width: 2;
    opacity: .35
}

/* Premium panel editor */
.panel-editor-premium {
    padding: 0;
    border-radius: 25px;
    border-color: #dfe5eb;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(15,23,42,.07);
    top: 108px
}

.panel-editor-premium .panel-editor-empty {
    padding: 66px 28px 35px;
    min-height: 585px;
    background: linear-gradient(180deg,#fff,#fafbfd)
}

.empty-radar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin: 0 auto 26px;
    display: grid;
    place-items: center;
    position: relative;
    background: radial-gradient(circle,rgba(255,106,0,.12) 0 4px,transparent 5px),repeating-radial-gradient(circle,rgba(255,106,0,.11) 0 1px,transparent 2px 16px)
}

.empty-radar:after {
    content: "";
    position: absolute;
    width: 46%;
    height: 46%;
    left: 50%;
    top: 4%;
    transform-origin: 0 100%;
    background: linear-gradient(45deg,rgba(255,106,0,.24),transparent 70%);
    clip-path: polygon(0 100%,100% 0,100% 100%);
    animation: radar 3s linear infinite
}

.empty-radar>span {
    position: relative;
    z-index: 2;
    width: 42px!important;
    height: 42px!important;
    margin: 0!important;
    border-radius: 14px!important;
    background: #fff!important;
    box-shadow: 0 10px 25px rgba(255,106,0,.18);
    font-size: 18px!important
}

@keyframes radar {
    to {
        transform: rotate(360deg)
    }
}

.panel-editor-empty>small {
    display: block;
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .18em;
    color: var(--orange);
    margin-bottom: 7px
}

.panel-editor-empty h3 {
    font-size: 17px;
    letter-spacing: -.035em;
    margin: 8px 0 9px
}

.panel-editor-empty p {
    font-size: 9px;
    line-height: 1.75;
    max-width: 275px;
    margin: 0 auto;
    color: #768294
}

.empty-shortcuts {
    display: grid;
    gap: 8px;
    margin-top: 26px;
    text-align: left
}

.empty-shortcuts span {
    display: flex!important;
    align-items: center;
    gap: 10px;
    width: auto!important;
    height: auto!important;
    border-radius: 11px!important;
    background: #f4f6f8!important;
    color: #657181!important;
    padding: 9px!important;
    margin: 0!important;
    font-size: 8px!important
}

.empty-shortcuts b {
    width: 21px;
    height: 21px;
    border-radius: 7px;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--orange);
    box-shadow: 0 4px 12px rgba(15,23,42,.06)
}

.panel-editor-premium .panel-editor-active {
    padding: 20px 20px 15px;
    background: #fff
}

.panel-editor-title {
    padding-bottom: 16px
}

.panel-editor-title small {
    letter-spacing: .12em
}

.panel-editor-title strong {
    font-size: 17px;
    letter-spacing: -.03em
}

.selected-status {
    padding: 8px 10px;
    border-radius: 10px;
    background: #eef2f6;
    color: #3c4755
}

.panel-selection-preview {
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff7f1;
    margin-top: 13px;
    border: 1px solid #ffe0c8
}

.panel-selection-preview p {
    font-size: 8px;
    color: #87522d;
    margin: 0;
    line-height: 1.45
}

.selection-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(255,106,0,.12);
    flex: none
}

.status-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 17px 0 9px
}

.status-section-title strong {
    font-size: 9px
}

.status-section-title small {
    font-size: 7px;
    color: var(--muted)
}

.status-options-premium {
    gap: 7px;
    margin: 0
}

.status-options-premium .status-option {
    min-height: 44px;
    border-radius: 12px;
    padding: 9px 10px;
    position: relative
}

.status-option span {
    flex: 1
}

.status-option b {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--orange);
    color: #fff;
    place-items: center;
    font-size: 9px
}

.status-option.active {
    border-color: rgba(255,106,0,.55);
    background: #fff8f3;
    box-shadow: 0 0 0 3px rgba(255,106,0,.07)
}

.status-option.active b {
    display: grid
}

.panel-note-premium {
    display: block;
    margin-top: 16px;
    position: relative
}

.panel-note-premium textarea {
    min-height: 104px;
    background: #f9fbfc;
    border-color: #dfe5eb;
    line-height: 1.55;
    padding: 12px 12px 25px
}

.panel-note-premium>small {
    position: absolute;
    right: 9px;
    bottom: 8px;
    font-size: 7px;
    color: #8b96a4
}

.panel-editor-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px
}

.panel-editor-actions .btn {
    padding: 0 8px;
    min-height: 42px;
    font-size: 9px
}

.panel-summary-premium {
    margin: 0;
    border-top: 1px solid #e8ecf0;
    padding: 14px;
    background: #fafbfd;
    gap: 0
}

.panel-summary-premium div {
    background: transparent;
    border-right: 1px solid #e5e9ee;
    padding: 7px
}

.panel-summary-premium div:last-child {
    border-right: 0
}

.panel-summary-premium strong {
    font-size: 18px;
    line-height: 1
}

.panel-summary-premium small {
    font-size: 6px;
    letter-spacing: .10em;
    margin-top: 5px;
    display: block
}

.summary-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 5px
}

.summary-dot.original {
    background: #9da8b5
}

.summary-dot.processed {
    background: #ed8b33
}

.summary-dot.critical {
    background: #df4e49
}

/* Public/admin report body map refinement */
.body-schema-wrap {
    background: linear-gradient(145deg,#f9fbfc,#eef2f6);
    border: 1px solid #e1e6ec;
    padding: 10px;
    border-radius: 22px
}

.body-schema-wrap .vehicle-blueprint {
    height: 610px
}

.body-report-grid {
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15,23,42,.05)
}

.panel-result {
    border-radius: 14px;
    border: 1px solid #e5e9ee;
    border-left-width: 4px;
    background: #fafbfc;
    padding: 13px
}

.panel-result strong {
    font-size: 11px
}

.panel-result p {
    line-height: 1.55
}

.legend span {
    border: 1px solid #e6eaef;
    background: #fff;
    border-radius: 99px;
    padding: 7px 10px
}

@media(max-width: 1180px) {
    .schema-editor-premium {
        grid-template-columns:minmax(420px,1fr) 335px
    }

    .schema-stage-premium {
        min-height: 620px
    }

    .vehicle-schema-variant {
        height: 590px
    }
}

@media(max-width: 980px) {
    .schema-editor-premium {
        grid-template-columns:1fr
    }

    .panel-editor-premium {
        position: static
    }

    .panel-editor-premium .panel-editor-empty {
        min-height: auto;
        padding: 35px
    }

    .vehicle-type-switcher {
        grid-template-columns: repeat(2,1fr)
    }

    .schema-stage-premium {
        min-height: 680px
    }

    .vehicle-schema-variant {
        height: 650px
    }
}

@media(max-width: 820px) {
    .admin-content {
        padding:16px 14px 94px
    }

    .wizard-shell {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .bodymap-body {
        padding: 14px
    }

    .bodymap-head-meta {
        display: none!important
    }

    .vehicle-type-switcher {
        gap: 6px;
        border-radius: 15px;
        padding: 5px
    }

    .vehicle-type-option {
        height: 47px;
        padding: 0 7px;
        font-size: 8px;
        gap: 6px
    }

    .vehicle-type-option.active:after {
        display: none
    }

    .vehicle-type-icon {
        width: 23px
    }

    .schema-workspace {
        border-radius: 20px
    }

    .schema-toolbar {
        height: 58px;
        padding: 0 13px
    }

    .schema-tools button span {
        display: none
    }

    .schema-tools button {
        width: 34px;
        padding: 0;
        justify-content: center
    }

    .schema-stage-premium {
        min-height: 590px;
        padding: 5px
    }

    .vehicle-schema-variant {
        height: 575px
    }

    .bodymap-legend {
        grid-template-columns: repeat(3,1fr)
    }

    .bodymap-legend button {
        min-height: 49px;
        border-bottom: 1px solid #edf0f3
    }

    .panel-editor-premium {
        display: none;
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 78px;
        top: auto;
        z-index: 145;
        max-height: 75vh;
        overflow: auto;
        border-radius: 23px;
        box-shadow: 0 25px 80px rgba(5,10,18,.32)
    }

    .panel-editor-premium.has-selection {
        display: block;
        animation: bottomSheetIn .22s ease
    }

    .panel-editor-premium .panel-editor-empty {
        display: none!important
    }

    .panel-editor-premium .panel-editor-active {
        display: block!important;
        padding: 17px
    }

    .panel-summary-premium {
        position: sticky;
        bottom: 0
    }

    @keyframes bottomSheetIn {
        from {
            opacity: 0;
            transform: translateY(35px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    .schema-stage-premium .vehicle-blueprint .dimension-lines,.schema-stage-premium .vehicle-blueprint .schema-corner-markers {
        display: none
    }

    .schema-hint {
        bottom: 16px
    }

    .wizard-actions {
        left: 10px;
        right: 10px;
        bottom: 76px;
        margin-top: 12px
    }
}

@media(max-width: 560px) {
    .form-card {
        border-radius:20px
    }

    .form-card-head,.form-card-body {
        padding: 16px
    }

    .form-card-head h2 {
        font-size: 13px
    }

    .form-card-head p {
        font-size: 8px
    }

    .vehicle-type-switcher {
        grid-template-columns: 1fr 1fr
    }

    .vehicle-type-option {
        justify-content: flex-start;
        padding: 0 11px
    }

    .schema-toolbar-kicker {
        font-size: 6px
    }

    .schema-toolbar strong {
        font-size: 11px
    }

    .schema-stage-premium {
        min-height: 510px
    }

    .vehicle-schema-variant {
        height: 500px
    }

    .schema-stage-premium:before {
        inset: 12px
    }

    .schema-hint {
        font-size: 7px;
        max-width: 85%;
        white-space: normal;
        text-align: center
    }

    .status-options-premium {
        grid-template-columns: 1fr 1fr
    }

    .panel-editor-actions {
        grid-template-columns: 1fr
    }

    .panel-summary-premium strong {
        font-size: 16px
    }

    .body-schema-wrap .vehicle-blueprint {
        height: 460px
    }
}

@media print {
    .vehicle-blueprint .schema-grid,.vehicle-blueprint .dimension-lines,.vehicle-blueprint .schema-corner-markers {
        display: none
    }

    .vehicle-blueprint .schema-canvas {
        fill: #fff
    }

    .vehicle-panel {
        stroke-width: 3
    }

    .body-schema-wrap .vehicle-blueprint {
        height: 520px
    }
}

.photo-drop {
    position: relative;
    transition: .2s
}

.photo-drop.is-processing {
    pointer-events: none;
    opacity: .72;
    border-color: var(--orange)
}

.photo-drop.is-processing:after {
    content: "Fotoğraflar optimize ediliyor…";
    position: absolute;
    inset: auto 12px 12px;
    background: #0b1018;
    color: #fff;
    padding: 8px;
    border-radius: 9px;
    font-size: 8px;
    font-weight: 850
}

.selected-status.status-original {
    background: #eef2f6;
    color: #536173
}

.selected-status.status-local-painted {
    background: #fff7d8;
    color: #856c00
}

.selected-status.status-painted {
    background: #fff0e3;
    color: #a94b0a
}

.selected-status.status-removed {
    background: #eaf5fd;
    color: #17679f
}

.selected-status.status-replaced {
    background: #fff0ef;
    color: #a82e2a
}

.selected-status.status-damaged {
    background: #f5edff;
    color: #6d3aa6
}

/* ===========================
   Mobil Ekspertiz V4 Kurumsal
   =========================== */
:root {
    --v4-orange: #ff6b00;
    --v4-orange-dark: #df5600;
    --v4-ink: #090d13;
    --v4-ink-2: #151b24;
    --v4-soft: #f3f5f8;
    --v4-line: #e6e9ee;
    --v4-muted: #687386;
    --v4-white: #fff;
    --v4-green: #0d9a63;
    --v4-red: #d4473b;
    --v4-yellow: #c88a00;
    --v4-radius: 22px;
    --v4-shadow: 0 24px 70px rgba(18,24,34,.09)
}

body.v4-admin {
    background: #f2f4f7;
    color: var(--v4-ink)
}

.v4-admin .sidebar {
    background: linear-gradient(180deg,#080b10 0%,#10151d 100%);
    border-right: 1px solid rgba(255,255,255,.06)
}

.v4-admin .admin-brand span {
    background: linear-gradient(145deg,var(--v4-orange),#ff9a4f);
    box-shadow: 0 13px 30px rgba(255,107,0,.28)
}

.v4-admin .sidebar-nav a {
    border-radius: 13px;
    color: #aeb7c5
}

.v4-admin .sidebar-nav a:hover,.v4-admin .sidebar-nav a.active {
    background: rgba(255,255,255,.08);
    color: #fff
}

.v4-admin .sidebar-nav a.active:before {
    background: var(--v4-orange)
}

.v4-admin .admin-topbar {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--v4-line)
}

.v4-admin .admin-content {
    max-width: 1540px;
    margin: auto;
    width: 100%;
    padding: 28px 30px 80px
}

.notification-button {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid var(--v4-line);
    border-radius: 13px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--v4-ink);
    background: #fff
}

.notification-button b {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--v4-orange);
    color: #fff;
    border-radius: 99px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    font-size: 9px;
    border: 2px solid #fff
}

.admin-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    color: var(--v4-muted);
    font-size: 11px;
    border-top: 1px solid var(--v4-line)
}

.admin-mobile-nav {
    display: none
}

.report-commandbar {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    background: linear-gradient(135deg,#0a0e14,#171e28);
    color: #fff;
    border-radius: 28px;
    padding: 28px 30px;
    margin-bottom: 22px;
    box-shadow: 0 24px 70px rgba(8,13,20,.2)
}

.report-commandbar .eyebrow {
    font-size: 10px;
    color: #ff9e5b;
    font-weight: 950;
    letter-spacing: .17em
}

.report-commandbar h2 {
    font-size: 29px;
    margin: 8px 0 5px;
    letter-spacing: -.04em
}

.report-commandbar p {
    margin: 0;
    color: #aeb8c7;
    font-size: 13px
}

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

.v4-card {
    background: #fff;
    border: 1px solid var(--v4-line);
    border-radius: 26px;
    box-shadow: var(--v4-shadow);
    margin-bottom: 22px;
    overflow: hidden
}

.v4-card-head {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--v4-line);
    background: linear-gradient(180deg,#fff,#fbfcfd)
}

.v4-card-head>div {
    display: flex;
    align-items: center;
    gap: 14px
}

.v4-card-head>div>span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff1e6;
    color: var(--v4-orange);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 950
}

.v4-card-head h3 {
    font-size: 17px;
    margin: 0 0 4px;
    letter-spacing: -.02em
}

.v4-card-head p {
    font-size: 12px;
    color: var(--v4-muted);
    margin: 0
}

.v4-card-head>a {
    font-size: 11px;
    font-weight: 850;
    color: var(--v4-orange);
    text-decoration: none
}

.v4-card-body {
    padding: 24px
}

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

.package-choice {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 20px;
    border: 1px solid var(--v4-line);
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    transition: .25s
}

.package-choice:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(15,23,42,.09)
}

.package-choice.selected {
    border-color: var(--v4-orange);
    box-shadow: 0 0 0 4px rgba(255,107,0,.09),0 20px 55px rgba(255,107,0,.12)
}

.package-choice input {
    position: absolute;
    opacity: 0
}

.package-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px
}

.package-top b {
    font-size: 9px;
    letter-spacing: .11em;
    color: var(--v4-orange);
    background: #fff2e8;
    padding: 7px 9px;
    border-radius: 99px
}

.package-top i {
    font-style: normal;
    font-size: 10px;
    color: var(--v4-muted)
}

.package-choice>strong {
    font-size: 20px;
    letter-spacing: -.03em
}

.package-choice>p {
    color: var(--v4-muted);
    font-size: 12px;
    line-height: 1.6;
    flex: 1
}

.package-price {
    font-size: 23px;
    font-weight: 950;
    color: var(--v4-ink);
    margin-bottom: 4px
}

.package-choice>small {
    color: var(--v4-muted);
    font-size: 10px
}

.form-grid.cols-3 {
    grid-template-columns: repeat(3,1fr)
}

.form-grid.cols-2 {
    grid-template-columns: repeat(2,1fr)
}

.form-grid .span-2 {
    grid-column: span 2
}

.v4-card .field input,.v4-card .field select,.v4-card .field textarea {
    border-radius: 13px;
    border: 1px solid var(--v4-line);
    background: #fbfcfd;
    min-height: 48px
}

.v4-card .field input:focus,.v4-card .field select:focus,.v4-card .field textarea:focus {
    border-color: var(--v4-orange);
    box-shadow: 0 0 0 4px rgba(255,107,0,.09)
}

.vehicle-identity-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px
}

.real-vehicle-card {
    border-radius: 22px;
    background: #0c1118;
    color: #fff;
    overflow: hidden;
    min-height: 100%
}

.real-vehicle-media {
    height: 360px;
    position: relative;
    background: radial-gradient(circle at 50% 45%,#2b3442,#0a0e14 70%);
    overflow: hidden
}

.real-vehicle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.real-vehicle-media:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(transparent,rgba(0,0,0,.72));
    pointer-events: none
}

.vehicle-image-empty,.vehicle-image-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px
}

.vehicle-image-empty span {
    font-size: 48px;
    color: var(--v4-orange)
}

.vehicle-image-empty strong {
    font-size: 17px
}

.vehicle-image-empty p {
    font-size: 12px;
    color: #aeb7c5;
    max-width: 300px;
    line-height: 1.6
}

.vehicle-image-loading {
    background: rgba(7,10,15,.84);
    z-index: 4
}

.vehicle-image-loading i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: var(--v4-orange);
    animation: v4spin .8s linear infinite;
    margin-bottom: 14px
}

@keyframes v4spin {
    to {
        transform: rotate(360deg)
    }
}

.real-vehicle-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px
}

.real-vehicle-meta small {
    display: block;
    color: #8692a4;
    font-size: 9px;
    letter-spacing: .13em
}

.real-vehicle-meta strong {
    display: block;
    margin-top: 4px;
    font-size: 16px
}

.vehicle-source {
    padding: 0 20px 18px;
    margin: 0;
    color: #8f9baa;
    font-size: 10px;
    line-height: 1.5
}

.vehicle-source a {
    color: #ff9b55
}

.btn-small {
    height: 40px;
    padding: 0 13px;
    font-size: 10px;
    white-space: nowrap
}

.real-bodymap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px
}

.bodymap-reference {
    position: sticky;
    top: 100px;
    align-self: start
}

.bodymap-image {
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg,#111821,#06090d);
    position: relative
}

.bodymap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.bodymap-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    padding: 30px
}

.bodymap-fallback span {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: var(--v4-orange);
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    font-size: 25px;
    font-weight: 950
}

.bodymap-fallback strong {
    font-size: 14px;
    color: #b7c0cf
}

.real-bodymap .bodymap-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px
}

.real-bodymap .bodymap-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border-radius: 99px;
    background: #f7f8fa;
    font-size: 9px;
    color: var(--v4-muted)
}

.real-bodymap .bodymap-legend i {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.body-parts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px
}

.body-part-card {
    border: 1px solid var(--v4-line);
    border-radius: 15px;
    overflow: hidden;
    background: #fff
}

.body-part-card>button {
    width: 100%;
    border: 0;
    background: #fff;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    text-align: left;
    padding: 12px;
    cursor: pointer
}

.body-part-card>button>span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #f4f6f8;
    color: #6b7687;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900
}

.body-part-card>button strong {
    display: block;
    font-size: 12px
}

.body-part-card>button small {
    font-size: 9px;
    color: var(--v4-muted)
}

.body-part-card>button b {
    font-size: 14px;
    transition: .2s
}

.body-part-card.open>button b {
    transform: rotate(180deg)
}

.body-part-editor {
    display: none;
    padding: 0 12px 13px
}

.body-part-card.open .body-part-editor {
    display: block
}

.body-status-buttons {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 6px;
    margin-bottom: 8px
}

.body-status-buttons button {
    border: 1px solid var(--v4-line);
    background: #fff;
    border-radius: 10px;
    min-height: 36px;
    font-size: 9px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center
}

.body-status-buttons button i {
    width: 7px;
    height: 7px;
    border-radius: 50%
}

.body-status-buttons button.active {
    box-shadow: 0 0 0 2px currentColor
}

.body-part-editor textarea {
    width: 100%;
    border: 1px solid var(--v4-line);
    border-radius: 10px;
    padding: 10px;
    resize: vertical;
    min-height: 68px;
    font: inherit;
    font-size: 11px
}

.body-part-card.original {
    border-left: 4px solid #28a36a
}

.body-part-card.local-painted {
    border-left: 4px solid #f4c542
}

.body-part-card.painted {
    border-left: 4px solid #3498db
}

.body-part-card.removed {
    border-left: 4px solid #8e67c7
}

.body-part-card.replaced {
    border-left: 4px solid #df4c3f
}

.body-part-card.damaged {
    border-left: 4px solid #f18323
}

.original i {
    background: #28a36a
}

.local-painted i {
    background: #f4c542
}

.painted i {
    background: #3498db
}

.removed i {
    background: #8e67c7
}

.replaced i {
    background: #df4c3f
}

.damaged i {
    background: #f18323
}

.package-lock-summary {
    font-size: 10px;
    font-weight: 900;
    color: var(--v4-orange);
    background: #fff2e8;
    padding: 8px 10px;
    border-radius: 99px
}

.inspection-v4 {
    display: grid;
    gap: 12px
}

.inspection-group-v4 {
    border: 1px solid var(--v4-line);
    border-radius: 18px;
    overflow: hidden
}

.inspection-group-head {
    width: 100%;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    text-align: left;
    border: 0;
    background: #fbfcfd;
    padding: 13px 15px;
    cursor: pointer
}

.inspection-group-head>span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #10151d;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900
}

.inspection-group-head strong {
    font-size: 13px
}

.inspection-group-head small {
    display: block;
    color: var(--v4-muted);
    font-size: 9px;
    margin-top: 3px
}

.inspection-group-body {
    display: none;
    padding: 10px
}

.inspection-group-v4.open .inspection-group-body {
    display: grid;
    gap: 7px
}

.inspection-group-v4.open .inspection-group-head b {
    transform: rotate(180deg)
}

.inspection-item-v4 {
    display: grid;
    grid-template-columns: minmax(210px,1.4fr) minmax(125px,.7fr) minmax(120px,.6fr) minmax(200px,1fr);
    gap: 8px;
    align-items: center;
    padding: 9px;
    border: 1px solid #edf0f3;
    border-radius: 12px;
    background: #fff
}

.item-identity {
    display: flex;
    align-items: center;
    gap: 10px
}

.item-identity i {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #eaf8f1;
    color: #0d9a63;
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 10px
}

.item-identity strong {
    display: block;
    font-size: 11px
}

.item-identity small {
    display: block;
    font-size: 8px;
    color: #0d9a63;
    margin-top: 2px
}

.inspection-item-v4 select,.inspection-item-v4 input {
    height: 38px;
    border: 1px solid var(--v4-line);
    border-radius: 9px;
    padding: 0 9px;
    font-size: 10px;
    background: #fff
}

.inspection-item-v4.package-disabled {
    opacity: .48;
    background: #f3f4f6
}

.inspection-item-v4.package-disabled .item-identity i {
    background: #e5e7eb;
    color: #687386
}

.inspection-item-v4.package-disabled .item-identity small {
    color: #687386
}

.inspection-item-v4.package-disabled select,.inspection-item-v4.package-disabled input {
    cursor: not-allowed
}

.photo-drop-v4 {
    min-height: 145px;
    border: 1.5px dashed #d5dae1;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: #fbfcfd;
    padding: 14px
}

.photo-drop-v4:hover {
    border-color: var(--v4-orange);
    background: #fff8f2
}

.photo-drop-v4 input {
    display: none
}

.photo-drop-v4 span {
    font-size: 25px;
    color: var(--v4-orange)
}

.photo-drop-v4 strong {
    font-size: 11px
}

.photo-drop-v4 small {
    font-size: 9px;
    color: var(--v4-muted);
    margin-top: 4px
}

.existing-photo-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
    margin-top: 18px
}

.existing-photo-grid figure {
    margin: 0;
    border: 1px solid var(--v4-line);
    border-radius: 12px;
    overflow: hidden
}

.existing-photo-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover
}

.existing-photo-grid label {
    display: block;
    padding: 7px;
    font-size: 9px
}

.signature-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--v4-line)
}

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--v4-line);
    border-radius: 13px;
    background: #fbfcfd;
    font-size: 11px;
    color: var(--v4-muted)
}

.consent-field input {
    margin-top: 2px;
    accent-color: var(--v4-orange)
}

.sticky-form-submit {
    position: sticky;
    bottom: 16px;
    z-index: 20;
    background: rgba(9,13,19,.94);
    backdrop-filter: blur(16px);
    color: #fff;
    border-radius: 20px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 55px rgba(5,8,12,.28)
}

.sticky-form-submit>div {
    display: flex;
    align-items: center;
    gap: 9px
}

.sticky-form-submit>div:first-child i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #30d188;
    box-shadow: 0 0 0 5px rgba(48,209,136,.13)
}

.sticky-form-submit span {
    font-size: 10px;
    color: #aeb8c7
}

.score-control {
    display: flex;
    align-items: center;
    gap: 15px
}

.score-control input {
    flex: 1
}

.score-control output {
    width: 58px;
    height: 52px;
    border-radius: 15px;
    background: #10151d;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 950
}

/* V4 public site */
.public-v4 {
    background: #fff;
    color: #0a0e14
}

.public-v4 .public-header {
    background: rgba(8,11,16,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.public-v4 .public-brand strong,.public-v4 .public-nav a {
    color: #fff
}

.public-v4 .public-brand small {
    color: #8f9baa
}

.public-v4 .public-nav .header-cta {
    background: var(--v4-orange);
    color: #fff
}

.public-hero-v4 {
    min-height: 760px;
    background: radial-gradient(circle at 78% 20%,rgba(255,107,0,.2),transparent 30%),linear-gradient(135deg,#070a0f 0%,#111824 70%,#080b10 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 145px 0 80px
}

.public-hero-v4:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom,#000,transparent 85%)
}

.hero-v4-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center
}

.hero-v4-copy .eyebrow {
    color: #ff9a55;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .18em
}

.hero-v4-copy h1 {
    font-size: clamp(46px,6vw,78px);
    line-height: .98;
    letter-spacing: -.06em;
    margin: 18px 0 22px;
    max-width: 850px
}

.hero-v4-copy h1 span {
    color: var(--v4-orange)
}

.hero-v4-copy>p {
    font-size: 17px;
    line-height: 1.75;
    color: #aeb8c7;
    max-width: 630px
}

.hero-v4-actions {
    display: flex;
    gap: 11px;
    margin-top: 30px
}

.hero-v4-actions a {
    height: 56px;
    padding: 0 20px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 12px
}

.hero-v4-actions .primary {
    background: var(--v4-orange);
    color: #fff
}

.hero-v4-actions .secondary {
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    background: rgba(255,255,255,.05)
}

.hero-trust {
    display: flex;
    gap: 25px;
    margin-top: 38px
}

.hero-trust div {
    border-left: 1px solid rgba(255,255,255,.16);
    padding-left: 14px
}

.hero-trust strong {
    display: block;
    font-size: 20px
}

.hero-trust small {
    color: #8f9baa;
    font-size: 9px
}

.report-search-console {
    background: #fff;
    color: #0a0e14;
    border-radius: 28px;
    padding: 25px;
    box-shadow: 0 35px 110px rgba(0,0,0,.38);
    position: relative
}

.report-search-console:before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 29px;
    padding: 1px;
    background: linear-gradient(135deg,rgba(255,107,0,.8),transparent 35%,rgba(255,255,255,.22));
    -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none
}

.console-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px
}

.console-head span {
    font-size: 9px;
    font-weight: 950;
    color: var(--v4-orange);
    letter-spacing: .14em
}

.console-head i {
    font-style: normal;
    font-size: 9px;
    color: #0d9a63;
    background: #eaf8f1;
    padding: 7px 9px;
    border-radius: 99px
}

.report-search-console h2 {
    font-size: 27px;
    letter-spacing: -.04em;
    margin: 0 0 8px
}

.report-search-console p {
    color: var(--v4-muted);
    font-size: 12px;
    line-height: 1.6
}

.report-search-console form {
    display: grid;
    gap: 10px;
    margin-top: 20px
}

.report-search-console input {
    height: 58px;
    border: 1px solid var(--v4-line);
    border-radius: 15px;
    padding: 0 16px;
    font-size: 14px;
    text-transform: uppercase
}

.report-search-console button {
    height: 56px;
    border: 0;
    border-radius: 15px;
    background: #0b0f15;
    color: #fff;
    font-weight: 950
}

.console-security {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 7px;
    margin-top: 17px
}

.console-security span {
    background: #f5f6f8;
    border-radius: 11px;
    padding: 10px;
    text-align: center;
    font-size: 8px;
    font-weight: 850;
    color: #5f6b7b
}

.public-section-v4 {
    padding: 90px 0
}

.public-section-v4.soft {
    background: #f5f7f9
}

.section-title-v4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 35px
}

.section-title-v4 .eyebrow {
    color: var(--v4-orange);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .16em
}

.section-title-v4 h2 {
    font-size: 43px;
    letter-spacing: -.05em;
    margin: 10px 0 0;
    max-width: 700px
}

.section-title-v4>p {
    max-width: 430px;
    color: var(--v4-muted);
    font-size: 13px;
    line-height: 1.7
}

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

.service-v4 {
    border: 1px solid var(--v4-line);
    border-radius: 22px;
    padding: 24px;
    background: #fff;
    min-height: 210px
}

.service-v4>span {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #10151d;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900
}

.service-v4 h3 {
    font-size: 17px;
    margin: 22px 0 9px
}

.service-v4 p {
    color: var(--v4-muted);
    font-size: 12px;
    line-height: 1.65
}

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

.public-package-card {
    border: 1px solid var(--v4-line);
    border-radius: 25px;
    padding: 25px;
    background: #fff;
    position: relative
}

.public-package-card.featured {
    background: #0b0f15;
    color: #fff;
    border-color: #0b0f15;
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(8,12,18,.18)
}

.public-package-card .badge {
    display: inline-flex;
    background: #fff2e8;
    color: var(--v4-orange);
    padding: 8px 10px;
    border-radius: 99px;
    font-size: 9px;
    font-weight: 950
}

.public-package-card h3 {
    font-size: 23px;
    margin: 18px 0 8px
}

.public-package-card p {
    font-size: 12px;
    line-height: 1.65;
    color: var(--v4-muted);
    min-height: 60px
}

.public-package-card.featured p {
    color: #9ca8b8
}

.public-package-card .price {
    font-size: 30px;
    font-weight: 950;
    margin: 20px 0
}

.public-package-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0
}

.public-package-card li {
    font-size: 11px;
    padding: 8px 0;
    border-top: 1px solid var(--v4-line)
}

.public-package-card.featured li {
    border-color: rgba(255,255,255,.09)
}

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

.process-v4 article {
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--v4-line);
    padding: 21px
}

.process-v4 article span {
    font-size: 10px;
    color: var(--v4-orange);
    font-weight: 950
}

.process-v4 article h3 {
    font-size: 15px;
    margin: 16px 0 8px
}

.process-v4 article p {
    font-size: 11px;
    color: var(--v4-muted);
    line-height: 1.6
}

.recent-report-grid-v4 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

.recent-report-v4 {
    border: 1px solid var(--v4-line);
    border-radius: 20px;
    padding: 18px;
    background: #fff
}

.recent-report-v4 .top {
    display: flex;
    justify-content: space-between;
    gap: 12px
}

.recent-report-v4 .top span {
    font-size: 9px;
    font-weight: 900;
    color: var(--v4-orange)
}

.recent-report-v4 .top i {
    font-style: normal;
    font-size: 9px;
    color: #0d9a63
}

.recent-report-v4 h3 {
    font-size: 16px;
    margin: 20px 0 7px
}

.recent-report-v4 p {
    font-size: 10px;
    color: var(--v4-muted)
}

.public-cta-v4 {
    background: linear-gradient(135deg,#ff6b00,#f15400);
    color: #fff;
    border-radius: 30px;
    padding: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px
}

.public-cta-v4 h2 {
    font-size: 35px;
    letter-spacing: -.04em;
    margin: 0 0 9px
}

.public-cta-v4 p {
    margin: 0;
    color: #ffe1cc
}

.public-cta-v4 a {
    background: #0a0e14;
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 900;
    white-space: nowrap
}

/* Utility admin page layouts */
.admin-two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px
}

.admin-three-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin-bottom: 20px
}

.compact-stat {
    background: #fff;
    border: 1px solid var(--v4-line);
    border-radius: 18px;
    padding: 18px
}

.compact-stat small {
    font-size: 9px;
    color: var(--v4-muted)
}

.compact-stat strong {
    display: block;
    font-size: 24px;
    margin-top: 8px
}

.crud-form {
    display: grid;
    gap: 12px
}

.crud-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.crud-form input,.crud-form select,.crud-form textarea {
    width: 100%;
    border: 1px solid var(--v4-line);
    border-radius: 12px;
    min-height: 46px;
    padding: 10px 12px;
    font: inherit
}

.crud-form label span {
    display: block;
    font-size: 10px;
    font-weight: 850;
    margin-bottom: 6px
}

.package-admin-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.package-admin-card {
    background: #fff;
    border: 1px solid var(--v4-line);
    border-radius: 22px;
    overflow: hidden
}

.package-admin-card .head {
    padding: 20px;
    background: #0d1219;
    color: #fff
}

.package-admin-card .head input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    width: 100%;
    padding: 5px 0
}

.package-admin-card .body {
    padding: 18px
}

.package-item-checks {
    max-height: 440px;
    overflow: auto;
    display: grid;
    gap: 6px;
    margin-top: 14px
}

.package-item-checks label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 10px;
    padding: 8px;
    border: 1px solid var(--v4-line);
    border-radius: 10px
}

.vehicle-catalog-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 18px
}

.catalog-list {
    max-height: 720px;
    overflow: auto
}

.model-visual-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

.model-visual {
    border: 1px solid var(--v4-line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff
}

.model-visual img {
    width: 100%;
    height: 160px;
    object-fit: cover
}

.model-visual .meta {
    padding: 12px
}

.model-visual .meta strong {
    display: block;
    font-size: 12px
}

.model-visual .meta small {
    color: var(--v4-muted);
    font-size: 9px
}

@media(max-width: 1180px) {
    .vehicle-identity-layout,.real-bodymap {
        grid-template-columns:1fr
    }

    .bodymap-reference {
        position: relative;
        top: auto
    }

    .inspection-item-v4 {
        grid-template-columns: minmax(180px,1.2fr) repeat(2,minmax(110px,.6fr));
    }

    .inspection-item-v4>input:last-child {
        grid-column: 1/-1
    }

    .package-admin-grid {
        grid-template-columns: 1fr
    }

    .admin-two-col {
        grid-template-columns: 1fr
    }

    .vehicle-catalog-layout {
        grid-template-columns: 1fr
    }

    .catalog-list {
        max-height: 340px
    }
}

@media(max-width: 900px) {
    .v4-admin .admin-content {
        padding:18px 14px 95px
    }

    .admin-mobile-nav {
        position: fixed;
        z-index: 80;
        left: 10px;
        right: 10px;
        bottom: max(8px,env(safe-area-inset-bottom));
        height: 66px;
        border-radius: 20px;
        background: rgba(9,13,19,.96);
        backdrop-filter: blur(18px);
        display: grid;
        grid-template-columns: repeat(5,1fr);
        align-items: center;
        padding: 5px 8px;
        box-shadow: 0 20px 55px rgba(4,7,11,.35)
    }

    .admin-mobile-nav a {
        color: #8995a7;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        font-size: 8px
    }

    .admin-mobile-nav i {
        font-style: normal;
        font-size: 17px
    }

    .admin-mobile-nav .mobile-create {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: var(--v4-orange);
        color: #fff;
        justify-self: center;
        margin-top: -22px;
        box-shadow: 0 12px 28px rgba(255,107,0,.35)
    }

    .report-commandbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 23px
    }

    .command-actions {
        width: 100%
    }

    .command-actions .btn {
        flex: 1
    }

    .package-selector {
        grid-template-columns: 1fr
    }

    .package-choice {
        min-height: auto
    }

    .form-grid.cols-3 {
        grid-template-columns: 1fr 1fr
    }

    .hero-v4-grid {
        grid-template-columns: 1fr
    }

    .public-hero-v4 {
        padding-top: 120px
    }

    .service-grid-v4,.public-package-grid,.recent-report-grid-v4 {
        grid-template-columns: 1fr 1fr
    }

    .process-v4 {
        grid-template-columns: 1fr 1fr
    }

    .section-title-v4 {
        align-items: flex-start;
        flex-direction: column
    }

    .public-package-card.featured {
        transform: none
    }

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

@media(max-width: 640px) {
    .v4-admin .admin-topbar {
        padding-left:13px;
        padding-right: 13px
    }

    .v4-admin .topbar-actions .topbar-site,.v4-admin .topbar-actions .primary-action {
        display: none
    }

    .report-commandbar h2 {
        font-size: 24px
    }

    .v4-card {
        border-radius: 20px
    }

    .v4-card-head {
        padding: 17px
    }

    .v4-card-head>div>span {
        width: 34px;
        height: 34px
    }

    .v4-card-head h3 {
        font-size: 14px
    }

    .v4-card-head p {
        font-size: 10px
    }

    .v4-card-body {
        padding: 16px
    }

    .package-selector {
        padding: 15px
    }

    .form-grid.cols-3,.form-grid.cols-2 {
        grid-template-columns: 1fr
    }

    .form-grid .span-2 {
        grid-column: auto
    }

    .real-vehicle-media {
        height: 285px
    }

    .real-vehicle-meta {
        align-items: flex-start;
        flex-direction: column
    }

    .real-vehicle-meta .btn {
        width: 100%
    }

    .bodymap-image {
        height: 300px
    }

    .body-status-buttons {
        grid-template-columns: 1fr 1fr
    }

    .inspection-item-v4 {
        grid-template-columns: 1fr
    }

    .inspection-item-v4>input:last-child {
        grid-column: auto
    }

    .inspection-group-body {
        padding: 7px
    }

    .photo-upload-grid {
        grid-template-columns: 1fr 1fr
    }

    .existing-photo-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .sticky-form-submit {
        bottom: 82px;
        align-items: flex-start;
        flex-direction: column
    }

    .sticky-form-submit>div:last-child {
        width: 100%
    }

    .sticky-form-submit .btn {
        flex: 1
    }

    .public-hero-v4 {
        min-height: auto;
        padding: 110px 0 62px
    }

    .hero-v4-copy h1 {
        font-size: 44px
    }

    .hero-v4-copy>p {
        font-size: 14px
    }

    .hero-v4-actions {
        flex-direction: column
    }

    .hero-trust {
        gap: 14px;
        flex-wrap: wrap
    }

    .console-security {
        grid-template-columns: 1fr
    }

    .public-section-v4 {
        padding: 60px 0
    }

    .section-title-v4 h2 {
        font-size: 32px
    }

    .service-grid-v4,.public-package-grid,.recent-report-grid-v4,.process-v4 {
        grid-template-columns: 1fr
    }

    .public-cta-v4 {
        padding: 28px
    }

    .public-cta-v4 h2 {
        font-size: 27px
    }

    .admin-three-stats {
        grid-template-columns: 1fr
    }

    .crud-form .row {
        grid-template-columns: 1fr
    }

    .model-visual-grid {
        grid-template-columns: 1fr
    }
}

@media print {
    .admin-mobile-nav,.sticky-form-submit,.report-commandbar .command-actions {
        display: none!important
    }
}

.v4-report-document {
    max-width: 1160px
}

.v4-report-summary {
    grid-template-columns: 1fr 210px
}

.report-id span {
    display: block;
    font-size: 8px;
    color: var(--v4-orange);
    font-weight: 900;
    margin-top: 6px;
    letter-spacing: .12em
}

.report-real-vehicle {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 390px;
    border-radius: 22px;
    overflow: hidden;
    background: #0b0f15;
    color: #fff
}

.report-real-vehicle>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 390px
}

.report-real-vehicle>div {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.report-real-vehicle small {
    color: #ff9c59;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .15em
}

.report-real-vehicle h3 {
    font-size: 28px;
    letter-spacing: -.04em;
    margin: 12px 0
}

.report-real-vehicle p {
    font-size: 12px;
    color: #aeb8c7;
    line-height: 1.7
}

.report-vehicle-views {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 12px
}

.report-vehicle-views figure {
    margin: 0;
    border: 1px solid var(--v4-line);
    border-radius: 14px;
    overflow: hidden
}

.report-vehicle-views img {
    width: 100%;
    height: 130px;
    object-fit: cover
}

.report-vehicle-views figcaption {
    padding: 8px;
    text-align: center;
    font-size: 8px;
    font-weight: 900;
    color: var(--v4-muted)
}

.report-panel-matrix {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px
}

.report-panel-cell {
    padding: 13px;
    border-radius: 13px;
    border: 1px solid var(--v4-line);
    border-left-width: 4px;
    background: #fff
}

.report-panel-cell span {
    display: block;
    font-size: 9px;
    color: var(--v4-muted)
}

.report-panel-cell strong {
    display: block;
    font-size: 12px;
    margin-top: 4px
}

.report-panel-cell p {
    margin: 5px 0 0;
    font-size: 9px;
    color: var(--v4-muted);
    line-height: 1.5
}

.report-panel-cell.original {
    border-left-color: #28a36a
}

.report-panel-cell.local-painted {
    border-left-color: #f4c542
}

.report-panel-cell.painted {
    border-left-color: #3498db
}

.report-panel-cell.removed {
    border-left-color: #8e67c7
}

.report-panel-cell.replaced {
    border-left-color: #df4c3f
}

.report-panel-cell.damaged {
    border-left-color: #f18323
}

.report-matrix-legend {
    margin-top: 14px
}

.report-approval-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.report-approval-grid>div {
    border: 1px solid var(--v4-line);
    border-radius: 15px;
    padding: 18px
}

.report-approval-grid small {
    font-size: 8px;
    color: var(--v4-orange);
    font-weight: 950
}

.report-approval-grid strong {
    display: block;
    font-size: 15px;
    margin-top: 7px
}

.report-approval-grid p {
    font-size: 10px;
    color: var(--v4-muted)
}

.report-approval-grid img {
    max-width: 180px;
    max-height: 90px;
    object-fit: contain
}

.admin-report-preview .report-document {
    margin: 0 auto
}

.admin-report-preview .report-cover {
    border-radius: 24px 24px 0 0
}

@media(max-width: 760px) {
    .v4-report-summary {
        grid-template-columns:1fr
    }

    .report-real-vehicle {
        grid-template-columns: 1fr
    }

    .report-real-vehicle>img {
        min-height: 260px;
        height: 260px
    }

    .report-real-vehicle>div {
        padding: 24px
    }

    .report-vehicle-views {
        grid-template-columns: 1fr 1fr
    }

    .report-panel-matrix {
        grid-template-columns: 1fr 1fr
    }

    .report-approval-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width: 480px) {
    .report-panel-matrix {
        grid-template-columns:1fr
    }

    .report-vehicle-views {
        grid-template-columns: 1fr
    }
}

.catalog-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--v4-ink);
    border-bottom: 1px solid var(--v4-line);
    font-size: 11px
}

.catalog-row:hover,.catalog-row.active {
    background: #fff3e9;
    color: var(--v4-orange)
}

.catalog-row span {
    font-size: 13px
}

.activity-item.unread {
    background: #fff7f0;
    border-radius: 13px;
    padding-left: 12px;
    padding-right: 12px
}

.detail-list {
    display: grid;
    gap: 13px
}

.detail-list>div {
    border-bottom: 1px solid var(--v4-line);
    padding-bottom: 11px
}

.detail-list span {
    display: block;
    font-size: 9px;
    color: var(--v4-muted)
}

.detail-list strong {
    display: block;
    font-size: 11px;
    margin-top: 4px
}

.admin-report-preview {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--v4-shadow)
}

/* V4 public booking */
.booking-page-v4 {
    min-height: calc(100vh - 82px);
    padding: 54px 0 90px;
    background: radial-gradient(circle at 8% 5%,rgba(255,107,0,.12),transparent 30%),linear-gradient(180deg,#0a0e14 0,#0a0e14 340px,#f3f5f8 340px,#f3f5f8 100%)
}

.booking-layout-v4 {
    display: grid;
    grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr);
    gap: 28px;
    align-items: start
}

.booking-intro-v4 {
    position: sticky;
    top: 110px;
    color: #fff;
    padding: 30px 12px 30px 0
}

.booking-intro-v4 h1 {
    font-size: clamp(34px,4.1vw,61px);
    line-height: 1.02;
    letter-spacing: -.06em;
    margin: 17px 0
}

.booking-intro-v4>p {
    max-width: 590px;
    color: #99a4b4;
    font-size: 14px;
    line-height: 1.8
}

.booking-benefits-v4 {
    display: grid;
    gap: 12px;
    margin: 34px 0
}

.booking-benefits-v4 article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.035);
    border-radius: 18px
}

.booking-benefits-v4 article>b {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #ff6b00;
    color: #fff;
    font-size: 10px
}

.booking-benefits-v4 strong {
    display: block;
    font-size: 13px
}

.booking-benefits-v4 small {
    display: block;
    color: #8792a2;
    font-size: 10px;
    line-height: 1.6;
    margin-top: 4px
}

.booking-contact-v4 {
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    color: #0a0e14;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.booking-contact-v4 span {
    font-size: 8px;
    color: #ff6b00;
    font-weight: 950;
    letter-spacing: .16em
}

.booking-contact-v4 strong {
    font-size: 17px
}

.booking-contact-v4 small {
    color: #687386;
    font-size: 10px
}

.booking-form-card-v4 {
    background: #fff;
    border: 1px solid #e7eaf0;
    border-radius: 30px;
    box-shadow: 0 35px 100px rgba(12,18,28,.18);
    overflow: hidden
}

.booking-form-head-v4 {
    padding: 29px 32px;
    border-bottom: 1px solid #e9ecf1
}

.booking-form-head-v4>span {
    font-size: 9px;
    color: #ff6b00;
    font-weight: 950;
    letter-spacing: .18em
}

.booking-form-head-v4 h2 {
    font-size: 28px;
    letter-spacing: -.04em;
    margin: 8px 0 7px
}

.booking-form-head-v4 p {
    color: #6b7586;
    font-size: 12px;
    line-height: 1.65;
    margin: 0
}

.booking-error-v4 {
    margin: 18px 30px 0;
    padding: 13px 15px;
    border-radius: 13px;
    background: #fff0ef;
    color: #a32e28;
    font-size: 11px;
    font-weight: 800
}

.booking-form-v4 {
    padding: 8px 31px 32px
}

.booking-form-v4>section {
    padding: 25px 0;
    border-bottom: 1px solid #eceff3
}

.booking-step-v4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px
}

.booking-step-v4>b {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #0a0e14;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 9px
}

.booking-step-v4 strong {
    font-size: 13px
}

.booking-step-v4 small {
    display: block;
    color: #7b8594;
    font-size: 9px;
    margin-top: 3px
}

.booking-fields-v4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.booking-fields-v4.cols-3 {
    grid-template-columns: 1fr 1.2fr .8fr
}

.booking-fields-v4 label {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.booking-fields-v4 label.wide {
    grid-column: 1/-1
}

.booking-fields-v4 label>span {
    font-size: 10px;
    font-weight: 900;
    color: #303846
}

.booking-fields-v4 input,.booking-fields-v4 select,.booking-fields-v4 textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #e1e5eb;
    background: #fafbfc;
    border-radius: 14px;
    padding: 12px 14px;
    color: #0a0e14;
    font: inherit;
    font-size: 12px;
    outline: none
}

.booking-fields-v4 textarea {
    resize: vertical
}

.booking-fields-v4 input:focus,.booking-fields-v4 select:focus,.booking-fields-v4 textarea:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 4px rgba(255,107,0,.09);
    background: #fff
}

.booking-package-options-v4 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px
}

.booking-package-options-v4 label {
    cursor: pointer
}

.booking-package-options-v4 input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.booking-package-options-v4 label>span {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 1px solid #e4e8ed;
    border-radius: 17px;
    background: #fafbfc;
    transition: .18s
}

.booking-package-options-v4 label>span>b {
    font-size: 12px
}

.booking-package-options-v4 label>span>small {
    color: #7a8493;
    font-size: 9px;
    line-height: 1.55;
    margin: 7px 0 14px;
    flex: 1
}

.booking-package-options-v4 label>span>strong {
    font-size: 17px;
    letter-spacing: -.03em
}

.booking-package-options-v4 input:checked+span {
    border-color: #ff6b00;
    background: #fff5ed;
    box-shadow: 0 0 0 3px rgba(255,107,0,.08)
}

.booking-consent-v4 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    color: #687386;
    font-size: 9px;
    line-height: 1.6
}

.booking-consent-v4 input {
    margin-top: 2px;
    accent-color: #ff6b00
}

.booking-submit-v4 {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg,#ff6b00,#ed5200);
    box-shadow: 0 17px 38px rgba(255,107,0,.23);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer
}

.booking-submit-v4:hover {
    transform: translateY(-1px)
}

.booking-hp {
    position: absolute!important;
    left: -99999px!important;
    width: 1px!important;
    height: 1px!important;
    opacity: 0!important
}

.booking-success-v4 {
    padding: 80px 35px;
    text-align: center
}

.booking-success-v4 i {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 25px;
    background: #e7f8ef;
    color: #087a4d;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-style: normal
}

.booking-success-v4>span {
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .18em;
    color: #ff6b00
}

.booking-success-v4 h2 {
    font-size: 31px;
    letter-spacing: -.045em;
    margin: 10px 0
}

.booking-success-v4 p {
    color: #6c7685;
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto 24px
}

.booking-success-v4 a,.booking-closed-v4 a {
    display: inline-flex;
    padding: 15px 21px;
    border-radius: 14px;
    background: #0a0e14;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 12px
}

.booking-closed-v4 {
    max-width: 700px;
    margin: 70px auto;
    padding: 52px;
    border-radius: 30px;
    background: #fff;
    text-align: center;
    box-shadow: 0 30px 100px rgba(8,12,18,.2)
}

.booking-closed-v4>span {
    font-size: 9px;
    color: #ff6b00;
    font-weight: 950;
    letter-spacing: .18em
}

.booking-closed-v4 h1 {
    font-size: 35px;
    letter-spacing: -.05em
}

.booking-closed-v4 p {
    color: #697386;
    line-height: 1.7
}

@media(max-width: 920px) {
    .booking-page-v4 {
        padding:22px 0 70px;
        background: linear-gradient(180deg,#0a0e14 0,#0a0e14 370px,#f3f5f8 370px)
    }

    .booking-layout-v4 {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .booking-intro-v4 {
        position: static;
        padding: 20px 4px 12px
    }

    .booking-intro-v4 h1 {
        font-size: 39px
    }

    .booking-benefits-v4 {
        grid-template-columns: repeat(3,1fr);
        gap: 8px
    }

    .booking-benefits-v4 article {
        display: block;
        padding: 13px
    }

    .booking-benefits-v4 article>b {
        margin-bottom: 10px
    }

    .booking-form-card-v4 {
        border-radius: 24px
    }

    .booking-package-options-v4 {
        grid-template-columns: 1fr
    }
}

@media(max-width: 620px) {
    .booking-page-v4 {
        padding-top:10px;
        background: linear-gradient(180deg,#0a0e14 0,#0a0e14 500px,#f3f5f8 500px)
    }

    .booking-layout-v4 {
        width: min(100% - 20px,1180px)
    }

    .booking-intro-v4 h1 {
        font-size: 34px
    }

    .booking-intro-v4>p {
        font-size: 12px
    }

    .booking-benefits-v4 {
        grid-template-columns: 1fr
    }

    .booking-benefits-v4 article {
        display: grid
    }

    .booking-contact-v4 {
        display: none
    }

    .booking-form-head-v4 {
        padding: 24px 20px
    }

    .booking-form-head-v4 h2 {
        font-size: 24px
    }

    .booking-form-v4 {
        padding: 4px 19px 23px
    }

    .booking-fields-v4,.booking-fields-v4.cols-3 {
        grid-template-columns: 1fr
    }

    .booking-fields-v4 label.wide {
        grid-column: auto
    }

    .booking-form-v4>section {
        padding: 21px 0
    }

    .booking-success-v4 {
        padding: 60px 22px
    }

    .booking-success-v4 h2 {
        font-size: 27px
    }
}

.vehicle-view-tabs-v4 {
    display: flex;
    gap: 7px;
    padding: 0 15px 14px;
    overflow-x: auto;
    scrollbar-width: none
}

.vehicle-view-tabs-v4::-webkit-scrollbar {
    display: none
}

.vehicle-view-tabs-v4 button {
    flex: 0 0 76px;
    padding: 5px;
    border: 1px solid #e2e6ec;
    border-radius: 11px;
    background: #fff;
    cursor: pointer;
    color: #566172
}

.vehicle-view-tabs-v4 button.active {
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255,107,0,.09);
    color: #ff6b00
}

.vehicle-view-tabs-v4 img {
    display: block;
    width: 100%;
    height: 44px;
    object-fit: cover;
    border-radius: 7px;
    background: #eef1f4
}

.vehicle-view-tabs-v4 span {
    display: block;
    margin-top: 4px;
    font-size: 8px;
    font-weight: 900;
    text-align: center
}

.vehicle-view-tabs-v4 {
    display: flex;
    gap: 7px;
    padding: 0 15px 14px;
    overflow-x: auto;
    scrollbar-width: none
}

.vehicle-view-tabs-v4::-webkit-scrollbar {
    display: none
}

.vehicle-view-tabs-v4 button {
    flex: 0 0 76px;
    padding: 5px;
    border: 1px solid #e2e6ec;
    border-radius: 11px;
    background: #fff;
    cursor: pointer;
    color: #566172
}

.vehicle-view-tabs-v4 button.active {
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255,107,0,.09);
    color: #ff6b00
}

.vehicle-view-tabs-v4 img {
    display: block;
    width: 100%;
    height: 44px;
    object-fit: cover;
    border-radius: 7px;
    background: #eef1f4
}

.vehicle-view-tabs-v4 span {
    display: block;
    margin-top: 4px;
    font-size: 8px;
    font-weight: 900;
    text-align: center
}

.analytics-filter-v4 {
    display: flex;
    align-items: end;
    gap: 9px;
    flex-wrap: wrap
}

.analytics-filter-v4 label {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.analytics-filter-v4 label span {
    font-size: 8px;
    font-weight: 900;
    color: #737e8d
}

.analytics-filter-v4 input {
    height: 38px;
    border: 1px solid #dde2e8;
    border-radius: 10px;
    padding: 0 10px;
    background: #fff
}

.analytics-ranking-v4 {
    padding: 18px 20px;
    display: grid;
    gap: 18px
}

.analytics-ranking-v4 article>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px
}

.analytics-ranking-v4 strong {
    font-size: 11px
}

.analytics-ranking-v4 small {
    font-size: 9px;
    color: #747f8f
}

.analytics-ranking-v4 article>span {
    display: block;
    height: 7px;
    border-radius: 99px;
    background: #edf0f3;
    margin-top: 8px;
    overflow: hidden
}

.analytics-ranking-v4 article>span i {
    display: block;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg,#ff6b00,#ff9b50)
}

@media(max-width: 650px) {
    .analytics-filter-v4 {
        width:100%
    }

    .analytics-filter-v4 label {
        flex: 1
    }

    .analytics-filter-v4 input {
        width: 100%
    }
}

/* ============================================================
   V4.2 CORPORATE PUBLIC SITE + EXPLODED VEHICLE SCHEMA
   ============================================================ */
:root {
    --mx41-orange: #ff6a00;
    --mx41-orange-dark: #d95600;
    --mx41-ink: #0b0d10;
    --mx41-ink-2: #15191f;
    --mx41-muted: #6f7783;
    --mx41-line: #e5e7eb;
    --mx41-soft: #f5f6f7;
    --mx41-white: #fff
}

.site-v41 {
    background: #fff;
    color: var(--mx41-ink);
    font-family: Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    overflow-x: hidden
}

.site-v41 * {
    box-sizing: border-box
}

.site-v41 a {
    text-decoration: none
}

.site-shell {
    width: min(1200px,calc(100% - 40px));
    margin-inline:auto}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(11,13,16,.08);
    backdrop-filter: blur(18px)
}

.site-header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--mx41-ink);
    min-width: 0
}

.site-brand>span,.site-brand>img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    object-fit: contain;
    background: var(--mx41-ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 950;
    font-size: 16px
}

.site-brand>img {
    padding: 5px
}

.site-brand strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px
}

.site-brand small {
    display: block;
    font-size: 8px;
    letter-spacing: .18em;
    color: var(--mx41-muted);
    font-weight: 850;
    margin-top: 4px
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.site-nav>a {
    font-size: 12px;
    font-weight: 750;
    color: #343a43
}

.site-nav>a:hover {
    color: var(--mx41-orange)
}

.site-nav .nav-booking {
    border-left: 1px solid var(--mx41-line);
    padding-left: 28px
}

.site-nav .nav-report {
    background: var(--mx41-ink);
    color: #fff;
    border-radius: 12px;
    padding: 13px 17px
}

.site-nav .nav-report:hover {
    background: var(--mx41-orange);
    color: #fff
}

.site-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--mx41-line);
    border-radius: 12px;
    background: #fff;
    padding: 11px
}

.site-menu-button i {
    display: block;
    height: 2px;
    background: var(--mx41-ink);
    margin: 4px 0;
    border-radius: 4px
}

.site-mobile-menu {
    display: none
}

.site-hero {
    position: relative;
    padding: 96px 0 78px;
    background: linear-gradient(180deg,#fff 0%,#f7f8f9 100%);
    overflow: hidden
}

.site-hero:before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle,#ff6a0012,transparent 68%);
    right: -180px;
    top: -260px
}

.site-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1.02fr) minmax(430px,.98fr);
    gap: 76px;
    align-items: center
}

.site-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 900;
    color: var(--mx41-orange)
}

.site-kicker i {
    width: 28px;
    height: 2px;
    background: var(--mx41-orange)
}

.site-hero-copy h1 {
    font-size: clamp(43px,5.3vw,74px);
    line-height: 1.02;
    letter-spacing: -.058em;
    margin: 21px 0 24px;
    max-width: 760px
}

.site-hero-copy h1 span {
    display: block;
    color: var(--mx41-orange)
}

.site-hero-copy>p {
    font-size: 16px;
    line-height: 1.85;
    color: #626b77;
    max-width: 680px;
    margin: 0
}

.site-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap
}

.site-btn {
    min-height: 56px;
    padding: 0 22px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 900
}

.site-btn.primary {
    background: var(--mx41-orange);
    color: #fff;
    box-shadow: 0 18px 40px #ff6a0028
}

.site-btn.primary:hover {
    background: var(--mx41-orange-dark)
}

.site-btn.secondary {
    border: 1px solid #d9dde2;
    color: var(--mx41-ink);
    background: #fff
}

.site-proof-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 42px
}

.site-proof-row>div {
    padding: 0 27px;
    border-left: 1px solid #dce0e4
}

.site-proof-row>div:first-child {
    padding-left: 0;
    border-left: 0
}

.site-proof-row strong {
    display: block;
    font-size: 22px;
    letter-spacing: -.03em
}

.site-proof-row span {
    display: block;
    color: #7a828e;
    font-size: 9px;
    font-weight: 750;
    margin-top: 5px
}

.site-hero-panel {
    position: relative;
    background: var(--mx41-ink);
    border-radius: 30px;
    padding: 22px;
    color: #fff;
    box-shadow: 0 38px 80px #1118272a;
    min-height: 490px
}

.hero-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em
}

.hero-panel-head b {
    color: #74d9a5;
    font-size: 9px;
    letter-spacing: 0
}

.hero-car-visual {
    position: relative;
    height: 340px;
    margin-top: 20px;
    border-radius: 22px;
    background: linear-gradient(145deg,#171b22,#0d1015);
    display: grid;
    place-items: center;
    overflow: hidden
}

.hero-car-visual:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size: 32px 32px
}

.hero-car-visual svg {
    position: relative;
    width: 92%;
    height: auto;
    overflow: visible
}

.hero-car-visual .car-line {
    fill: #181d25;
    stroke: #f8fafc;
    stroke-width: 3
}

.hero-car-visual .car-window {
    fill: #303846;
    stroke: #7f8998;
    stroke-width: 2
}

.hero-car-visual circle {
    fill: #0b0e12;
    stroke: #ff6a00;
    stroke-width: 7
}

.hero-car-visual .car-detail {
    fill: none;
    stroke: #7b8490;
    stroke-width: 2
}

.hero-status-card {
    position: absolute;
    background: #fff;
    color: var(--mx41-ink);
    padding: 13px 15px;
    border-radius: 13px;
    box-shadow: 0 16px 35px #0005;
    min-width: 126px
}

.hero-status-card.one {
    left: 18px;
    top: 26px
}

.hero-status-card.two {
    right: 18px;
    bottom: 22px
}

.hero-status-card i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mx41-orange);
    margin-right: 6px
}

.hero-status-card span {
    font-size: 9px;
    color: #767f8c
}

.hero-status-card strong {
    display: block;
    font-size: 12px;
    margin-top: 5px
}

.hero-panel-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px
}

.hero-panel-foot>div {
    border: 1px solid #282e37;
    border-radius: 14px;
    padding: 13px
}

.hero-panel-foot small {
    display: block;
    color: #747d8b;
    font-size: 8px;
    font-weight: 850
}

.hero-panel-foot strong {
    display: block;
    font-size: 11px;
    margin-top: 5px
}

.site-report-strip {
    background: var(--mx41-orange);
    color: #fff;
    padding: 34px 0
}

.site-report-strip>.site-shell {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 60px
}

.site-report-strip span,.site-section-head span,.site-final-cta span {
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .18em
}

.site-report-strip h2 {
    font-size: 26px;
    letter-spacing: -.035em;
    margin: 7px 0
}

.site-report-strip p {
    margin: 0;
    color: #ffe2cf;
    font-size: 12px
}

.site-report-strip form>div {
    display: flex;
    padding: 6px;
    background: #fff;
    border-radius: 15px
}

.site-report-strip input {
    flex: 1;
    height: 48px;
    border: 0;
    outline: 0;
    padding: 0 14px;
    font: inherit;
    font-size: 13px;
    min-width: 0
}

.site-report-strip button {
    border: 0;
    border-radius: 11px;
    background: var(--mx41-ink);
    color: #fff;
    padding: 0 20px;
    font-weight: 900;
    cursor: pointer
}

.site-report-strip form small {
    display: block;
    margin-top: 8px;
    color: #ffe4d2;
    font-size: 9px
}

.site-section {
    padding: 105px 0
}

.site-section-soft {
    background: var(--mx41-soft)
}

.site-section-dark {
    background: var(--mx41-ink);
    color: #fff
}

.site-section-head {
    display: grid;
    grid-template-columns: minmax(0,1fr) 380px;
    gap: 50px;
    align-items: end;
    margin-bottom: 46px
}

.site-section-head span {
    color: var(--mx41-orange)
}

.site-section-head h2 {
    font-size: clamp(32px,4vw,52px);
    letter-spacing: -.05em;
    line-height: 1.08;
    margin: 12px 0 0;
    max-width: 760px
}

.site-section-head>p {
    color: #747d89;
    line-height: 1.75;
    font-size: 13px;
    margin: 0
}

.site-section-head.light>p {
    color: #9da5b1
}

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

.site-service-card {
    position: relative;
    border: 1px solid var(--mx41-line);
    border-radius: 20px;
    padding: 26px;
    min-height: 224px;
    background: #fff;
    transition: .25s
}

.site-service-card:hover {
    transform: translateY(-4px);
    border-color: #ff6a0066;
    box-shadow: 0 20px 45px #1118270c
}

.site-service-card>span {
    color: var(--mx41-orange);
    font-size: 10px;
    font-weight: 950
}

.site-service-card h3 {
    font-size: 19px;
    margin: 34px 0 11px;
    letter-spacing: -.025em
}

.site-service-card p {
    font-size: 12px;
    color: #737c88;
    line-height: 1.7;
    margin: 0
}

.site-service-card>i {
    position: absolute;
    right: 23px;
    top: 23px;
    font-style: normal;
    color: #9ca3ad
}

.site-package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.site-package-card {
    position: relative;
    background: #15191f;
    border: 1px solid #292f37;
    border-radius: 22px;
    padding: 28px;
    color: #fff
}

.site-package-card.featured {
    background: #fff;
    color: var(--mx41-ink);
    border-color: #fff;
    transform: translateY(-12px)
}

.package-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px
}

.package-card-top span,.package-card-top b {
    font-size: 8px;
    letter-spacing: .13em;
    font-weight: 950
}

.package-card-top span {
    color: var(--mx41-orange)
}

.package-card-top b {
    background: var(--mx41-orange);
    color: #fff;
    padding: 7px 9px;
    border-radius: 99px
}

.site-package-card h3 {
    font-size: 25px;
    margin: 25px 0 10px
}

.site-package-card>p {
    font-size: 12px;
    line-height: 1.7;
    color: #a2aab5;
    min-height: 62px
}

.site-package-card.featured>p {
    color: #737b87
}

.package-price-v41 {
    display: block;
    font-size: 31px;
    margin: 22px 0 5px
}

.site-package-card>small {
    color: #818a96;
    font-size: 9px
}

.site-package-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 10px
}

.site-package-card li {
    font-size: 11px;
    color: #c8ced6
}

.site-package-card.featured li {
    color: #454b54
}

.site-package-card li i {
    font-style: normal;
    color: var(--mx41-orange);
    margin-right: 8px
}

.site-package-card>a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    background: #242a32;
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 900
}

.site-package-card.featured>a {
    background: var(--mx41-orange)
}

.site-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--mx41-line);
    border-left: 1px solid var(--mx41-line)
}

.site-process-grid article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 30px;
    border-right: 1px solid var(--mx41-line);
    border-bottom: 1px solid var(--mx41-line)
}

.site-process-grid article>span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fff2e9;
    color: var(--mx41-orange);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 950
}

.site-process-grid h3 {
    font-size: 18px;
    margin: 4px 0 9px
}

.site-process-grid p {
    margin: 0;
    color: #737c88;
    font-size: 12px;
    line-height: 1.7
}

.site-recent-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 13px
}

.site-recent-card {
    background: #fff;
    border: 1px solid var(--mx41-line);
    border-radius: 18px;
    padding: 21px
}

.site-recent-card>div {
    display: flex;
    justify-content: space-between;
    gap: 10px
}

.site-recent-card>div span,.site-recent-card>div b {
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .08em
}

.site-recent-card>div span {
    color: var(--mx41-orange)
}

.site-recent-card>div b {
    color: #0b8c57
}

.site-recent-card h3 {
    font-size: 17px;
    margin: 28px 0 8px
}

.site-recent-card p,.site-recent-card small {
    font-size: 10px;
    color: #77808c
}

.site-recent-card small {
    display: block;
    margin-top: 10px
}

.site-final-cta {
    background: var(--mx41-orange);
    color: #fff;
    padding: 64px 0
}

.site-final-cta>.site-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px
}

.site-final-cta h2 {
    font-size: clamp(28px,4vw,48px);
    max-width: 820px;
    letter-spacing: -.045em;
    line-height: 1.1;
    margin: 10px 0 0
}

.site-final-cta a {
    background: var(--mx41-ink);
    color: #fff;
    border-radius: 14px;
    padding: 19px 24px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap
}

.site-footer {
    background: #090b0e;
    color: #fff;
    padding-top: 58px
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3,1fr);
    gap: 48px;
    padding-bottom: 50px
}

.site-footer .site-brand {
    color: #fff
}

.site-footer .site-brand>span {
    background: var(--mx41-orange)
}

.site-footer .site-brand small {
    color: #7f8792
}

.site-footer-brand p {
    font-size: 11px;
    color: #858e9b;
    line-height: 1.7;
    max-width: 310px
}

.site-footer-grid>div>b {
    display: block;
    font-size: 9px;
    letter-spacing: .15em;
    color: #6f7782;
    margin-bottom: 17px
}

.site-footer-grid>div>a,.site-footer-grid>div>span {
    display: block;
    color: #c9ced6;
    font-size: 11px;
    line-height: 1.8;
    margin-bottom: 6px
}

.site-footer-grid>div>a:hover {
    color: var(--mx41-orange)
}

.site-footer-bottom {
    border-top: 1px solid #20242b;
    padding: 18px 0;
    color: #69717d;
    font-size: 9px
}

.site-footer-bottom>.site-shell {
    display: flex;
    justify-content: space-between
}

/* Simple vehicle schema */
.simple-bodymap-layout {
    display: grid;
    grid-template-columns: minmax(300px,.72fr) minmax(420px,1.28fr);
    gap: 22px;
    align-items: start
}

.simple-bodymap-stage {
    position: sticky;
    top: 95px;
    border: 1px solid var(--v4-line,#e5e8ed);
    border-radius: 22px;
    background: linear-gradient(180deg,#fafbfc,#f2f4f6);
    padding: 22px
}

.simple-vehicle-schema {
    width: min(100%,430px);
    margin: auto
}

.simple-vehicle-schema svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible
}

.simple-vehicle-schema .schema-shell {
    fill: #eceff2;
    stroke: #cbd1d8;
    stroke-width: 4
}

.simple-vehicle-schema .schema-part {
    fill: #f8f9fa;
    stroke: #aeb6c0;
    stroke-width: 2.3;
    transition: .18s;
    outline: none
}

.simple-vehicle-schema.is-interactive .schema-part {
    cursor: pointer
}

.simple-vehicle-schema.is-interactive .schema-part:hover,.simple-vehicle-schema.is-interactive .schema-part:focus {
    stroke: #ff6a00;
    stroke-width: 4;
    filter: brightness(.98)
}

.simple-vehicle-schema .schema-wheel-set rect {
    fill: #161a20
}

.simple-vehicle-schema .schema-glass path {
    fill: #303945;
    stroke: #7b8795;
    stroke-width: 1.5
}

.simple-vehicle-schema .schema-glass .schema-center-line {
    fill: none;
    stroke: #aab2bc;
    stroke-dasharray: 5 6
}

.simple-vehicle-schema .schema-light-set path {
    fill: #f6c65c;
    stroke: #9a7623;
    stroke-width: 1
}

.simple-vehicle-schema .schema-direction path {
    fill: #ff6a00
}

.simple-vehicle-schema .schema-direction text {
    font-size: 8px;
    fill: #ff6a00;
    font-weight: 900;
    letter-spacing: .12em
}

.simple-vehicle-schema .status-original {
    fill: #f7f8f9
}

.simple-vehicle-schema .status-local-painted {
    fill: #ffe6bf
}

.simple-vehicle-schema .status-painted {
    fill: #ffd166
}

.simple-vehicle-schema .status-removed {
    fill: #b8d9ff
}

.simple-vehicle-schema .status-replaced {
    fill: #ff8b84
}

.simple-vehicle-schema .status-damaged {
    fill: #d8c4ff
}

.bodymap-legend.compact {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 16px
}

.bodymap-legend.compact span {
    font-size: 8px;
    padding: 7px 9px;
    border-radius: 99px;
    background: #fff;
    border: 1px solid #e4e7eb
}

.bodymap-legend.compact i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px
}

.bodymap-legend .original i {
    background: #d8dde3
}

.bodymap-legend .local-painted i {
    background: #ffc46d
}

.bodymap-legend .painted i {
    background: #e8aa16
}

.bodymap-legend .removed i {
    background: #65aef8
}

.bodymap-legend .replaced i {
    background: #ff6760
}

.bodymap-legend .damaged i {
    background: #9b72e7
}

.body-parts-grid.compact {
    grid-template-columns: 1fr 1fr;
    gap: 9px
}

.body-part-card.schema-selected {
    box-shadow: 0 0 0 3px #ff6a0030;
    border-color: #ff6a00
}

.vehicle-data-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 280px;
    gap: 22px
}

.vehicle-data-summary {
    border-radius: 20px;
    background: #0d1117;
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.vehicle-data-summary>span {
    color: #ff8a38;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .15em
}

.vehicle-data-summary>strong {
    font-size: 22px;
    line-height: 1.25;
    margin: 16px 0
}

.vehicle-data-summary>p {
    font-size: 11px;
    color: #98a2af;
    line-height: 1.7
}

.vehicle-data-summary>div {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #272d36;
    width: 100%;
    padding-top: 13px;
    margin-top: 13px
}

.vehicle-data-summary b {
    font-size: 22px;
    color: #ff6a00
}

.vehicle-data-summary small {
    font-size: 10px;
    color: #a6aeba
}

.schema-help {
    font-size: 9px;
    color: #7a8491;
    font-weight: 800
}

.report-schema-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 34px;
    align-items: center;
    border: 1px solid #e5e8ed;
    border-radius: 18px;
    padding: 22px;
    background: #fafbfc
}

.report-schema-layout .simple-vehicle-schema {
    max-width: 240px
}

.report-schema-layout h3 {
    font-size: 22px;
    margin: 0 0 8px
}

.report-schema-layout>div>p {
    color: #6f7884;
    font-size: 11px;
    line-height: 1.7
}

.report-schema-layout .legend {
    margin-top: 20px
}

@media(max-width: 1050px) {
    .site-nav {
        display:none
    }

    .site-menu-button {
        display: block
    }

    .site-mobile-menu {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 92px;
        background: #fff;
        border: 1px solid var(--mx41-line);
        border-radius: 18px;
        box-shadow: 0 25px 70px #0f172a24;
        padding: 10px;
        z-index: 80
    }

    .site-mobile-menu.open {
        display: grid
    }

    .site-mobile-menu a {
        padding: 14px;
        color: var(--mx41-ink);
        font-size: 12px;
        font-weight: 800;
        border-bottom: 1px solid #edf0f2
    }

    .site-mobile-menu a:last-child {
        border-bottom: 0;
        background: var(--mx41-ink);
        color: #fff;
        border-radius: 10px
    }

    .site-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .site-hero-panel {
        max-width: 720px;
        width: 100%;
        margin: auto
    }

    .site-service-grid,.site-package-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .site-package-card.featured {
        transform: none
    }

    .site-footer-grid {
        grid-template-columns: 1.5fr 1fr
    }

    .simple-bodymap-layout {
        grid-template-columns: 1fr
    }

    .simple-bodymap-stage {
        position: relative;
        top: auto
    }

    .vehicle-data-layout {
        grid-template-columns: 1fr
    }

    .vehicle-data-summary {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .vehicle-data-summary>span,.vehicle-data-summary>strong,.vehicle-data-summary>p {
        grid-column: 1/-1
    }

    .vehicle-data-summary>div {
        margin: 0
    }

    .report-schema-layout {
        grid-template-columns: 260px 1fr
    }
}

@media(max-width: 720px) {
    .site-shell {
        width:min(100% - 28px,1200px)
    }

    .site-header-inner {
        height: 70px
    }

    .site-brand>span,.site-brand>img {
        width: 42px;
        height: 42px;
        border-radius: 12px
    }

    .site-brand strong {
        max-width: 180px;
        font-size: 13px
    }

    .site-brand small {
        font-size: 7px
    }

    .site-mobile-menu {
        top: 79px;
        left: 14px;
        right: 14px
    }

    .site-hero {
        padding: 58px 0 45px
    }

    .site-hero-grid {
        gap: 32px
    }

    .site-hero-copy h1 {
        font-size: 39px;
        line-height: 1.04
    }

    .site-hero-copy>p {
        font-size: 14px;
        line-height: 1.75
    }

    .site-hero-actions {
        display: grid;
        grid-template-columns: 1fr
    }

    .site-btn {
        width: 100%
    }

    .site-proof-row {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        margin-top: 30px
    }

    .site-proof-row>div {
        padding: 0 10px
    }

    .site-proof-row>div:first-child {
        padding-left: 0
    }

    .site-proof-row strong {
        font-size: 19px
    }

    .site-proof-row span {
        font-size: 8px
    }

    .site-hero-panel {
        min-height: auto;
        border-radius: 22px;
        padding: 15px
    }

    .hero-car-visual {
        height: 255px
    }

    .hero-status-card {
        padding: 10px;
        min-width: 106px
    }

    .hero-panel-foot {
        grid-template-columns: 1fr
    }

    .site-report-strip {
        padding: 27px 0
    }

    .site-report-strip>.site-shell {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .site-report-strip h2 {
        font-size: 23px
    }

    .site-report-strip form>div {
        display: grid;
        gap: 6px
    }

    .site-report-strip button {
        height: 46px
    }

    .site-section {
        padding: 72px 0
    }

    .site-section-head {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px
    }

    .site-section-head h2 {
        font-size: 33px
    }

    .site-service-grid,.site-package-grid,.site-recent-grid {
        grid-template-columns: 1fr
    }

    .site-service-card {
        min-height: 190px
    }

    .site-package-card {
        padding: 23px
    }

    .site-process-grid {
        grid-template-columns: 1fr
    }

    .site-final-cta>.site-shell {
        display: grid;
        gap: 28px
    }

    .site-final-cta a {
        text-align: center
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .site-footer-bottom>.site-shell {
        display: grid;
        gap: 7px
    }

    .simple-bodymap-stage {
        padding: 14px
    }

    .body-parts-grid.compact {
        grid-template-columns: 1fr
    }

    .vehicle-data-summary {
        display: flex
    }

    .report-schema-layout {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 16px
    }

    .report-schema-layout .legend {
        justify-content: center
    }

    .report-schema-layout .simple-vehicle-schema {
        max-width: 210px
    }

    .site-v41 input,.site-v41 button,.site-v41 select {
        font-size: 16px
    }
}

@media print {
    .report-schema-layout {
        break-inside: avoid
    }

    .simple-vehicle-schema .schema-part {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact
    }
}

/* =========================================================
   V4.2 — sade patlatılmış araç şeması ve sabit parça editörü
   ========================================================= */
.bodymap-v42 {
    display: grid;
    grid-template-columns: minmax(360px,1.25fr) minmax(270px,.75fr);
    gap: 22px;
    align-items: start
}

.bodymap-card-v42 {
    overflow: visible
}

.bodymap-v42 .simple-bodymap-stage {
    position: sticky;
    top: 92px;
    background: #fff;
    border: 1px solid #e5e8ed;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(15,23,42,.05)
}

.exploded-schema {
    width: min(100%,690px);
    margin: auto
}

.exploded-schema svg {
    width: 100%;
    height: auto;
    display: block
}

.exploded-schema .schema-part {
    fill: #f8f9fa;
    stroke: #cfd4da;
    stroke-width: 3;
    stroke-linejoin: round;
    transition: fill .16s,stroke .16s,filter .16s,transform .16s;
    transform-box: fill-box;
    transform-origin: center;
    outline: none
}

.exploded-schema.is-interactive .schema-part {
    cursor: pointer
}

.exploded-schema.is-interactive .schema-part:hover,.exploded-schema.is-interactive .schema-part:focus {
    stroke: #ff6a00;
    stroke-width: 5;
    filter: drop-shadow(0 6px 8px rgba(255,106,0,.17));
    transform: scale(1.012)
}

.exploded-schema .schema-outline {
    fill: #fbfbfc;
    stroke: #d4d8dd;
    stroke-width: 4
}

.exploded-schema .schema-window path,.exploded-schema .schema-glass path {
    fill: #d8dade;
    stroke: #c8ccd1;
    stroke-width: 2;
    pointer-events: none
}

.exploded-schema .schema-mirrors path {
    fill: #f5f6f7;
    stroke: #d0d4d9;
    stroke-width: 3
}

.exploded-schema .schema-detail path {
    fill: #d6d8dc;
    stroke: none;
    pointer-events: none
}

.exploded-schema .schema-guide text {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .18em;
    fill: #9ca3ad
}

.exploded-schema .schema-guide path {
    fill: none;
    stroke: #b9bec5;
    stroke-width: 2
}

.exploded-schema .status-original {
    fill: #f8f9fa
}

.exploded-schema .status-local-painted {
    fill: #ffe4b5
}

.exploded-schema .status-painted {
    fill: #ffc95b
}

.exploded-schema .status-removed {
    fill: #b8d8fb
}

.exploded-schema .status-replaced {
    fill: #ff928b
}

.exploded-schema .status-damaged {
    fill: #d5c1f7
}

.schema-tap-hint {
    text-align: center;
    color: #7d8794;
    font-size: 10px;
    margin: 12px 0 0
}

.bodymap-summary-v42 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    max-height: 720px;
    overflow: auto;
    padding-right: 3px
}

.bodymap-summary-row {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    border: 1px solid #e6e9ed;
    border-radius: 14px;
    background: #fff;
    padding: 8px 11px;
    text-align: left;
    color: #151b24;
    cursor: pointer
}

.bodymap-summary-row:hover {
    border-color: #ff6a00;
    background: #fffaf6
}

.bodymap-summary-row>span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #f1f3f5;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 950;
    color: #6e7783
}

.bodymap-summary-row strong {
    font-size: 10px
}

.bodymap-summary-row small {
    font-size: 8px;
    font-weight: 850;
    padding: 6px 8px;
    border-radius: 99px;
    background: #f0f2f4;
    color: #69727e;
    white-space: nowrap
}

.bodymap-summary-row.local-painted small {
    background: #fff1da;
    color: #a86500
}

.bodymap-summary-row.painted small {
    background: #fff0bd;
    color: #8b6200
}

.bodymap-summary-row.removed small {
    background: #e5f1ff;
    color: #286da8
}

.bodymap-summary-row.replaced small {
    background: #ffe4e1;
    color: #b2342d
}

.bodymap-summary-row.damaged small {
    background: #eee6ff;
    color: #6e46ac
}

.bodymap-sheet {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.bodymap-sheet.open {
    display: flex
}

.bodymap-sheet-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8,12,18,.66);
    backdrop-filter: blur(5px)
}

.bodymap-sheet>section {
    position: relative;
    width: min(560px,calc(100vw - 28px));
    max-height: min(720px,calc(100vh - 40px));
    overflow: auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 35px 90px rgba(0,0,0,.32);
    animation: v42SheetIn .18s ease
}

.bodymap-sheet header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid #e8ebef
}

.bodymap-sheet header small {
    font-size: 8px;
    letter-spacing: .16em;
    font-weight: 950;
    color: #ff6a00
}

.bodymap-sheet header h3 {
    font-size: 20px;
    margin: 5px 0 0
}

.bodymap-sheet header>button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #f1f3f5;
    font-size: 22px;
    cursor: pointer
}

.bodymap-sheet-content {
    padding: 20px 22px
}

.sheet-status-buttons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 9px;
    margin: 0 0 18px
}

.sheet-status-buttons button {
    min-height: 48px;
    border: 1px solid #e2e6eb;
    border-radius: 13px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    font-size: 10px;
    font-weight: 850;
    text-align: left
}

.sheet-status-buttons button i {
    width: 15px;
    height: 15px;
    border-radius: 5px;
    background: #e1e4e8
}

.sheet-status-buttons button.local-painted i {
    background: #ffc46d
}

.sheet-status-buttons button.painted i {
    background: #e8aa16
}

.sheet-status-buttons button.removed i {
    background: #65aef8
}

.sheet-status-buttons button.replaced i {
    background: #ff6760
}

.sheet-status-buttons button.damaged i {
    background: #9b72e7
}

.sheet-status-buttons button.active {
    border-color: #ff6a00;
    box-shadow: 0 0 0 3px rgba(255,106,0,.1);
    background: #fff9f4
}

.bodymap-sheet-content label span {
    display: block;
    font-size: 10px;
    font-weight: 850;
    margin-bottom: 7px
}

.bodymap-sheet-content textarea {
    width: 100%;
    min-height: 110px;
    border: 1px solid #dfe3e8;
    border-radius: 13px;
    padding: 12px;
    font-size: 12px;
    resize: vertical;
    outline: none
}

.bodymap-sheet-content textarea:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 4px rgba(255,106,0,.09)
}

.bodymap-sheet footer {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    padding: 15px 22px 20px;
    border-top: 1px solid #edf0f3
}

.bodymap-sheet-open {
    overflow: hidden
}

@keyframes v42SheetIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.logo-uploader [data-upload-state],.signature-box [data-upload-state] {
    display: block;
    margin-top: 8px;
    font-size: 9px;
    line-height: 1.45;
    color: #707a87
}

.logo-uploader input[type=file] {
    padding: 9px;
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: 11px
}

.logo-uploader {
    position: relative
}

@media(max-width: 1050px) {
    .bodymap-v42 {
        grid-template-columns:1fr
    }

    .bodymap-v42 .simple-bodymap-stage {
        position: relative;
        top: auto
    }

    .bodymap-summary-v42 {
        grid-template-columns: repeat(2,1fr);
        max-height: none
    }
}

@media(max-width: 700px) {
    .bodymap-v42 .simple-bodymap-stage {
        padding:10px;
        border-radius: 18px
    }

    .exploded-schema {
        width: 100%
    }

    .bodymap-summary-v42 {
        grid-template-columns: 1fr
    }

    .bodymap-summary-row {
        min-height: 46px
    }

    .bodymap-sheet {
        align-items: flex-end;
        padding: 0
    }

    .bodymap-sheet>section {
        width: 100%;
        max-height: 86vh;
        border-radius: 24px 24px 0 0;
        animation: v42SheetMobile .2s ease
    }

    .bodymap-sheet header {
        padding: 17px
    }

    .bodymap-sheet-content {
        padding: 17px
    }

    .bodymap-sheet footer {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 12px 17px calc(12px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .sheet-status-buttons {
        grid-template-columns: 1fr 1fr
    }

    .sheet-status-buttons button {
        min-height: 44px;
        font-size: 9px
    }

    @keyframes v42SheetMobile {
        from {
            transform: translateY(100%)
        }

        to {
            transform: none
        }
    }
}

@media print {
    .exploded-schema .schema-part,.exploded-schema .schema-window path,.exploded-schema .schema-glass path {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact
    }

    .bodymap-sheet {
        display: none!important
    }
}

/* ===========================
   Mobil Ekspertiz V4.3 Kurumsal
   =========================== */
body.site-v43 {
    background: #fff;
    color: #0e1420
}

.site-header-v43 {
    height: 88px;
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11,17,24,.08)
}

.site-header-v43 .site-header-inner {
    height: 88px
}

.site-header-v43 .site-nav a.active {
    color: var(--orange)
}

.v43-hero {
    background: radial-gradient(circle at top right,rgba(255,107,0,.18),transparent 26%),linear-gradient(145deg,#0b1018,#111925 58%,#0b1018);
    color: #fff;
    padding: 64px 0 76px
}

.v43-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
    gap: 28px;
    align-items: center
}

.v43-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    color: #ff9b52
}

.v43-kicker:before {
    content: "";
    width: 26px;
    height: 2px;
    background: #ff9b52
}

.v43-hero-copy h1 {
    font-size: 58px;
    line-height: 1.02;
    letter-spacing: -.06em;
    margin: 16px 0
}

.v43-hero-copy h1 em {
    font-style: normal;
    color: #ff8f3a
}

.v43-hero-copy p {
    color: #b5bfcb;
    font-size: 16px;
    line-height: 1.75;
    max-width: 640px
}

.v43-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.v43-proof-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
    margin-top: 28px;
    max-width: 560px
}

.v43-proof-grid div {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 16px
}

.v43-proof-grid strong {
    display: block;
    font-size: 26px;
    margin-bottom: 5px
}

.v43-proof-grid span {
    display: block;
    font-size: 12px;
    color: #bdc8d6
}

.v43-hero-card {
    background: #fff;
    color: #101722;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(0,0,0,.18)
}

.v43-hero-card small,.v43-side-card strong {
    font-size: 10px;
    letter-spacing: .16em;
    color: #ff6b00;
    font-weight: 900
}

.v43-hero-card h3 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.04em;
    margin: 12px 0
}

.v43-hero-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px
}

.v43-hero-card li {
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    line-height: 1.6
}

.v43-hero-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b00;
    font-weight: 900
}

.v43-hero-card a {
    margin-top: 20px;
    display: inline-flex;
    font-weight: 800;
    color: #0b1018
}

.v43-section {
    padding: 72px 0
}

.v43-section-soft {
    background: #f6f8fb
}

.v43-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 28px
}

.v43-head span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    color: #ff6b00;
    margin-bottom: 8px
}

.v43-head h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -.04em
}

.v43-head p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: #667285;
    margin: 0
}

.v43-card-grid {
    display: grid;
    gap: 18px
}

.v43-card-grid.cols-4 {
    grid-template-columns: repeat(4,minmax(0,1fr))
}

.v43-card-grid.cols-3 {
    grid-template-columns: repeat(3,minmax(0,1fr))
}

.v43-card-grid.cols-2 {
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.v43-card-grid article,.v43-side-card,.v43-recent-card,.v43-package-card {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(15,23,42,.04)
}

.v43-card-grid article strong,.v43-package-card h3,.v43-recent-card h3 {
    font-size: 22px;
    letter-spacing: -.03em
}

.v43-card-grid article p,.v43-package-card p,.v43-recent-card p,.v43-side-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #667285
}

.v43-card-grid article a {
    display: inline-flex;
    margin-top: 10px;
    font-weight: 800;
    color: #0d1320
}

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

.v43-package-grid.detailed .v43-package-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: #667285;
    display: grid;
    gap: 7px
}

.v43-package-card.featured {
    border-color: #ffbf93;
    box-shadow: 0 18px 45px rgba(255,107,0,.12)
}

.v43-package-card .top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
    color: #ff6b00
}

.v43-package-card .top b {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff0e6;
    color: #c74c00;
    font-size: 10px
}

.v43-package-card strong {
    display: block;
    font-size: 30px;
    margin-top: 12px
}

.v43-package-card small {
    display: block;
    margin-top: 5px;
    color: #8390a3
}

.v43-package-card a {
    margin-top: 15px;
    display: inline-flex;
    font-weight: 800;
    color: #0e1420
}

.v43-center {
    text-align: center;
    margin-top: 24px
}

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

.v43-recent-card span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff3e9;
    color: #c35507;
    font-size: 12px;
    font-weight: 900
}

.v43-recent-card small {
    display: block;
    margin-top: 10px;
    color: #8390a3
}

.v43-recent-card.empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

.v43-cta {
    padding: 0 0 78px
}

.v43-cta .site-shell {
    background: #0f151e;
    color: #fff;
    border-radius: 28px;
    padding: 32px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.v43-cta span {
    display: block;
    color: #ff9c53;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    margin-bottom: 8px
}

.v43-cta h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 0
}

.v43-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.v43-page-hero {
    background: #0f151d;
    color: #fff;
    padding: 54px 0 48px
}

.v43-page-hero span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    color: #ff9c53;
    margin-bottom: 8px
}

.v43-page-hero h1 {
    font-size: 48px;
    line-height: 1.03;
    letter-spacing: -.05em;
    margin: 0 0 14px
}

.v43-page-hero p {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
    color: #b5bfcb
}

.v43-two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: start
}

.v43-bullet-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px
}

.v43-bullet-list li {
    padding-left: 18px;
    position: relative;
    color: #526070
}

.v43-bullet-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b00;
    font-weight: 900
}

.v43-side-card {
    padding: 28px
}

.v43-side-card strong {
    display: block;
    margin-bottom: 10px
}

.v43-process-list {
    display: grid;
    gap: 16px
}

.v43-process-list article {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 22px
}

.v43-process-list span {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff2e8;
    color: #d25700;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
    flex: none
}

.v43-process-list strong {
    display: block;
    font-size: 22px;
    letter-spacing: -.03em;
    margin-bottom: 6px
}

.v43-process-list p {
    margin: 0;
    color: #697688;
    line-height: 1.7
}

/* Public mobile refinements */
@media(max-width: 1080px) {
    .v43-card-grid.cols-4,.v43-package-grid,.v43-recent-grid {
        grid-template-columns:repeat(2,minmax(0,1fr))
    }

    .v43-two-col,.v43-hero-grid {
        grid-template-columns: 1fr
    }

    .v43-head {
        flex-direction: column;
        align-items: flex-start
    }

    .v43-cta .site-shell {
        flex-direction: column;
        align-items: flex-start
    }

    .v43-proof-grid {
        max-width: none
    }
}

@media(max-width: 720px) {
    .v43-hero-copy h1 {
        font-size:40px
    }

    .v43-page-hero h1,.v43-head h2,.v43-cta h2 {
        font-size: 30px
    }

    .v43-card-grid.cols-4,.v43-card-grid.cols-3,.v43-card-grid.cols-2,.v43-package-grid,.v43-recent-grid {
        grid-template-columns: 1fr
    }

    .v43-section {
        padding: 54px 0
    }

    .v43-hero {
        padding: 42px 0 58px
    }

    .v43-page-hero {
        padding: 42px 0
    }

    .v43-proof-grid {
        grid-template-columns: 1fr
    }

    .site-header-v43 .site-nav {
        display: none
    }

    .site-header-v43 .site-menu-button,.site-mobile-menu {
        display: flex
    }

    .site-mobile-menu {
        display: none;
        flex-direction: column
    }
}

/* Admin simplification V4.3 */
body.v4-admin .admin-topbar {
    padding-bottom: 16px;
    border-bottom: 1px solid #e8edf3;
    background: linear-gradient(180deg,#fff,#f7f9fb)
}

body.v4-admin .sidebar {
    background: linear-gradient(180deg,#09111a,#0d1622)
}

body.v4-admin .sidebar-nav small {
    margin-top: 18px
}

body.v4-admin .sidebar-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 6px
}

body.v4-admin .sidebar-nav a b {
    display: none
}

body.v4-admin .topbar-actions .notification-button {
    display: none
}

body.v4-admin .topbar-actions {
    gap: 10px
}

body.v4-admin .topbar-site {
    background: #fff;
    border: 1px solid #e4e9ef;
    border-radius: 14px;
    padding: 0 16px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    font-weight: 800
}

body.v4-admin .primary-action {
    height: 42px;
    border-radius: 14px
}

body.v4-admin .admin-content {
    padding-top: 22px
}

body.v4-admin .dashboard-welcome {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center
}

body.v4-admin .stats-grid {
    grid-template-columns: repeat(4,minmax(0,1fr))
}

body.v4-admin .panel-card {
    border-radius: 22px
}

body.v4-admin .table-wrap {
    overflow: auto
}

@media(max-width: 900px) {
    body.v4-admin .stats-grid {
        grid-template-columns:repeat(2,minmax(0,1fr))
    }

    body.v4-admin .dashboard-welcome {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width: 640px) {
    body.v4-admin .stats-grid {
        grid-template-columns:1fr
    }
}

/* =========================================================
   V4.3 — kurumsal çok sayfalı site, sade yönetim ve yeni şema
   ========================================================= */
.marketplace-schema {
    width: min(100%,520px);
    margin: auto
}

.marketplace-schema svg {
    display: block;
    width: 100%;
    height: auto
}

.marketplace-schema .schema-body-outline {
    fill: #f7f8fa;
    stroke: #c7cdd5;
    stroke-width: 3.2;
    pointer-events: none
}

.marketplace-schema .schema-part {
    fill: #fff;
    stroke: #bfc6cf;
    stroke-width: 2.2;
    stroke-linejoin: round;
    transition: .15s;
    outline: none
}

.marketplace-schema.is-interactive .schema-part {
    cursor: pointer
}

.marketplace-schema.is-interactive .schema-part:hover,.marketplace-schema.is-interactive .schema-part:focus {
    stroke: #ff6800;
    stroke-width: 4;
    filter: drop-shadow(0 5px 7px rgba(255,104,0,.16))
}

.marketplace-schema .schema-glass {
    fill: #d9dde2;
    stroke: #bcc3cb;
    stroke-width: 2;
    pointer-events: none
}

.marketplace-schema .schema-wheels rect {
    fill: #313740
}

.marketplace-schema .schema-details path,.marketplace-schema .schema-details circle {
    fill: none;
    stroke: #d4d8de;
    stroke-width: 2;
    pointer-events: none
}

.marketplace-schema .direction-label {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .18em;
    fill: #8a939f
}

.marketplace-schema .direction-arrow {
    fill: none;
    stroke: #a8b0ba;
    stroke-width: 2
}

.marketplace-schema .status-original {
    fill: #fff
}

.marketplace-schema .status-local-painted {
    fill: #ffe3b2
}

.marketplace-schema .status-painted {
    fill: #ffca58
}

.marketplace-schema .status-removed {
    fill: #b9dafd
}

.marketplace-schema .status-replaced {
    fill: #ff9189
}

.marketplace-schema .status-damaged {
    fill: #d8c3fa
}

.marketplace-schema .schema-sill {
    stroke-width: 2.6
}

.bodymap-v42 {
    grid-template-columns: 1fr
}

.bodymap-v42 .simple-bodymap-stage {
    position: relative;
    top: auto;
    max-width: 760px;
    margin: auto
}

.bodymap-summary-v42 {
    grid-template-columns: repeat(5,minmax(0,1fr));
    max-height: none;
    margin-top: 16px
}

.bodymap-summary-row {
    grid-template-columns: 28px 1fr;
    min-height: 48px
}

.bodymap-summary-row small {
    grid-column: 1/-1;
    margin-left: 38px;
    justify-self: start;
    margin-top: -6px
}

.schema-help {
    display: none
}

.v43-admin .sidebar {
    width: 220px
}

.v43-admin .admin-main {
    margin-left: 220px
}

.simple-admin-nav .admin-more {
    margin: 5px 0
}

.simple-admin-nav .admin-more summary {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 12px;
    color: #aeb7c5;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer
}

.simple-admin-nav .admin-more summary::-webkit-details-marker {
    display: none
}

.simple-admin-nav .admin-more[open] summary {
    background: rgba(255,255,255,.06);
    color: #fff
}

.simple-admin-nav .admin-more>div {
    display: grid;
    padding: 6px 8px 8px 34px
}

.simple-admin-nav .admin-more>div a {
    padding: 8px 10px;
    font-size: 9px;
    border-radius: 8px
}

.v43-admin .admin-content {
    max-width: 1320px;
    padding: 24px 28px 80px
}

.v43-admin .report-commandbar {
    padding: 22px 24px;
    border-radius: 20px
}

.v43-admin .v4-card {
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(18,24,34,.055)
}

.site-v43 {
    background: #fff;
    color: #111722
}

.site-v43 .site-header {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #edf0f3;
    box-shadow: none
}

.site-v43 .site-nav a {
    color: #3a4350
}

.site-v43 .site-nav a.active {
    color: #ff6500
}

.site-v43 .site-nav a.active:after {
    content: "";
    height: 2px;
    background: #ff6500;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -22px
}

.v43-header .site-nav a {
    position: relative
}

.site-v43 .nav-report {
    border: 1px solid #dde2e8!important;
    background: #fff!important;
    color: #151b24!important
}

.site-v43 .nav-booking {
    background: #ff6500!important;
    color: #fff!important;
    border-color: #ff6500!important
}

.v43-hero {
    padding: 92px 0 76px;
    background: radial-gradient(circle at 88% 25%,#fff1e7 0,transparent 30%),linear-gradient(180deg,#fff,#f8f9fb)
}

.v43-hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 74px;
    align-items: center
}

.v43-eyebrow,.v43-page-hero span,.v43-section-head>span,.v43-query span,.v43-cta span {
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 950;
    color: #ff6500
}

.v43-hero h1 {
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -.055em;
    margin: 17px 0 24px;
    max-width: 760px
}

.v43-hero h1 em {
    font-style: normal;
    color: #ff6500
}

.v43-hero p {
    font-size: 16px;
    line-height: 1.8;
    color: #687383;
    max-width: 650px
}

.v43-actions {
    display: flex;
    gap: 10px;
    margin-top: 31px
}

.v43-btn {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid #dfe4e9;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #161c25;
    font-size: 12px;
    font-weight: 900;
    background: #fff
}

.v43-btn.primary {
    background: #ff6500;
    border-color: #ff6500;
    color: #fff
}

.v43-trust {
    display: flex;
    margin-top: 43px
}

.v43-trust>div {
    padding: 0 25px;
    border-right: 1px solid #e1e5e9
}

.v43-trust>div:first-child {
    padding-left: 0
}

.v43-trust>div:last-child {
    border: 0
}

.v43-trust strong {
    font-size: 28px;
    display: block
}

.v43-trust span {
    font-size: 9px;
    color: #7c8591
}

.v43-visual {
    background: #10151d;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 36px 90px rgba(13,18,26,.23);
    transform: rotate(1deg)
}

.v43-visual-top {
    display: flex;
    justify-content: space-between;
    color: #8e99a8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
    padding: 3px 5px 16px
}

.v43-visual-top b {
    color: #59d59a
}

.v43-phone {
    background: #f5f7f9;
    border-radius: 20px;
    padding: 18px;
    min-height: 440px
}

.v43-phone-head {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.v43-phone-head i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #ff6500
}

.v43-phone-head strong {
    font-size: 12px
}

.v43-phone-head span {
    font-size: 9px;
    color: #7a8491
}

.v43-phone-card {
    margin: 28px 0 15px;
    background: #111720;
    color: #fff;
    padding: 22px;
    border-radius: 17px
}

.v43-phone-card small {
    font-size: 8px;
    color: #ff914c
}

.v43-phone-card strong {
    display: block;
    font-size: 19px;
    margin: 9px 0
}

.v43-phone-card span {
    font-size: 9px;
    color: #aab3bf
}

.v43-checks {
    display: grid;
    gap: 8px
}

.v43-checks>div {
    display: grid;
    grid-template-columns: 31px 1fr auto;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e9ed;
    padding: 12px;
    border-radius: 13px
}

.v43-checks i {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #e9f7f0;
    color: #0d9a63;
    display: grid;
    place-items: center;
    font-style: normal;
    font-weight: 900
}

.v43-checks span {
    font-size: 10px;
    font-weight: 850
}

.v43-checks b {
    font-size: 8px;
    color: #0d9a63
}

.v43-report-code {
    background: #fff3e9;
    color: #b94b00;
    border: 1px solid #ffd7ba;
    margin-top: 13px;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .13em
}

.v43-query {
    background: #ff6500;
    color: #fff;
    padding: 30px 0
}

.v43-query>.site-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.v43-query span {
    color: #ffe3cf
}

.v43-query h2 {
    font-size: 25px;
    margin: 7px 0 0
}

.v43-query form {
    display: flex;
    background: #fff;
    padding: 5px;
    border-radius: 13px
}

.v43-query input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 14px;
    font-size: 13px;
    min-width: 0
}

.v43-query button {
    border: 0;
    background: #111720;
    color: #fff;
    border-radius: 10px;
    padding: 0 18px;
    font-weight: 900
}

.v43-section {
    padding: 92px 0
}

.v43-section.dark {
    background: #0d1219;
    color: #fff
}

.v43-section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 30px;
    margin-bottom: 38px
}

.v43-section-head>span {
    grid-column: 1/-1
}

.v43-section-head h2 {
    font-size: 43px;
    line-height: 1.08;
    letter-spacing: -.04em;
    max-width: 720px;
    margin: 0
}

.v43-section-head a {
    color: #ff6500;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900
}

.v43-feature-grid,.v43-detail-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

.v43-feature-grid article,.v43-detail-grid article {
    border: 1px solid #e5e9ed;
    border-radius: 18px;
    padding: 28px;
    min-height: 220px
}

.v43-feature-grid b,.v43-detail-grid b {
    font-size: 10px;
    color: #ff6500
}

.v43-feature-grid h3,.v43-detail-grid h2 {
    font-size: 21px;
    margin: 45px 0 12px
}

.v43-feature-grid p,.v43-detail-grid p {
    font-size: 12px;
    line-height: 1.7;
    color: #717b89
}

.v43-package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

.v43-package-grid article {
    background: #161d27;
    border: 1px solid #28313e;
    border-radius: 20px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    min-height: 390px
}

.v43-package-grid article.featured {
    border-color: #ff6500;
    background: linear-gradient(180deg,#211a16,#151b24)
}

.v43-package-grid article>span {
    font-size: 8px;
    color: #ff914c;
    font-weight: 950;
    letter-spacing: .15em
}

.v43-package-grid h3 {
    font-size: 24px;
    margin: 25px 0 9px
}

.v43-package-grid p {
    color: #9ca6b3;
    font-size: 11px;
    line-height: 1.65;
    min-height: 56px
}

.v43-package-grid strong {
    font-size: 28px;
    margin-top: 15px
}

.v43-package-grid small {
    color: #87919f;
    font-size: 9px;
    margin: 6px 0 20px
}

.v43-package-grid ul {
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: #c6ccd5;
    font-size: 10px
}

.v43-package-grid a {
    margin-top: auto;
    border-top: 1px solid #29323e;
    padding-top: 16px;
    color: #ff8540;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900
}

.v43-split,.v43-about,.v43-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start
}

.v43-split h2,.v43-about h2,.v43-contact h2 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 13px 0 18px
}

.v43-split p,.v43-about p,.v43-contact p {
    font-size: 13px;
    line-height: 1.8;
    color: #727c89
}

.v43-split ol {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid
}

.v43-split li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    border-bottom: 1px solid #e4e8ec;
    padding: 19px 0
}

.v43-split li>b {
    color: #ff6500
}

.v43-split li strong,.v43-split li span {
    display: block
}

.v43-split li strong {
    font-size: 15px
}

.v43-split li span {
    font-size: 10px;
    color: #7b8490;
    margin-top: 5px
}

.v43-cta {
    background: #f1f4f7;
    padding: 60px 0
}

.v43-cta>.site-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.v43-cta h2 {
    font-size: 34px;
    max-width: 760px;
    margin: 9px 0 0
}

.v43-cta a {
    background: #ff6500;
    color: #fff;
    text-decoration: none;
    padding: 17px 22px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 900
}

.v43-page-hero {
    padding: 105px 0 72px;
    background: linear-gradient(135deg,#0d1219,#1a222d);
    color: #fff
}

.v43-page-hero h1 {
    font-size: 54px;
    line-height: 1.05;
    max-width: 850px;
    letter-spacing: -.05em;
    margin: 17px 0
}

.v43-page-hero p {
    font-size: 14px;
    color: #aab3bf;
    line-height: 1.8;
    max-width: 700px
}

.v43-detail-grid article {
    min-height: 260px
}

.v43-values {
    display: grid;
    gap: 10px
}

.v43-values article {
    background: #f5f7f9;
    border-radius: 16px;
    padding: 22px
}

.v43-values b {
    color: #ff6500;
    font-size: 9px
}

.v43-values h3 {
    margin: 10px 0 5px
}

.v43-values p {
    margin: 0;
    font-size: 11px
}

.v43-contact>div>a,.v43-contact>div>div {
    display: block;
    border-bottom: 1px solid #e3e7eb;
    padding: 20px 0;
    text-decoration: none;
    color: #151b24
}

.v43-contact span {
    display: block;
    font-size: 9px;
    color: #88919d;
    margin-bottom: 7px
}

.v43-contact strong {
    font-size: 17px
}

.v43-contact aside {
    background: #111720;
    color: #fff;
    border-radius: 22px;
    padding: 34px
}

.v43-contact aside>span {
    color: #ff8740
}

.v43-contact aside p {
    color: #aab3bf
}

.v43-footer {
    background: #0b1017
}

@media(max-width: 1080px) {
    .v43-hero-grid {
        grid-template-columns:1fr;
        gap: 45px
    }

    .v43-visual {
        max-width: 690px
    }

    .v43-hero h1 {
        font-size: 56px
    }

    .v43-feature-grid,.v43-detail-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .bodymap-summary-v42 {
        grid-template-columns: repeat(3,1fr)
    }

    .v43-admin .sidebar {
        width: 250px
    }

    .v43-admin .admin-main {
        margin-left: 0
    }
}

@media(max-width: 720px) {
    .v43-hero {
        padding:55px 0 42px
    }

    .v43-hero h1 {
        font-size: 40px
    }

    .v43-hero p {
        font-size: 14px
    }

    .v43-actions {
        display: grid
    }

    .v43-trust {
        display: grid;
        grid-template-columns: repeat(3,1fr)
    }

    .v43-trust>div {
        padding: 0 9px
    }

    .v43-trust span {
        line-height: 1.35
    }

    .v43-visual {
        padding: 10px;
        border-radius: 20px
    }

    .v43-phone {
        min-height: 390px;
        padding: 13px
    }

    .v43-query>.site-shell {
        grid-template-columns: 1fr;
        gap: 17px
    }

    .v43-query form {
        height: 52px
    }

    .v43-section {
        padding: 65px 0
    }

    .v43-section-head {
        grid-template-columns: 1fr
    }

    .v43-section-head h2 {
        font-size: 34px
    }

    .v43-feature-grid,.v43-detail-grid,.v43-package-grid,.v43-split,.v43-about,.v43-contact {
        grid-template-columns: 1fr
    }

    .v43-feature-grid article {
        min-height: 180px
    }

    .v43-feature-grid h3,.v43-detail-grid h2 {
        margin-top: 30px
    }

    .v43-package-grid article {
        min-height: 350px
    }

    .v43-split,.v43-about,.v43-contact {
        gap: 35px
    }

    .v43-split h2,.v43-about h2,.v43-contact h2 {
        font-size: 34px
    }

    .v43-cta>.site-shell {
        display: grid
    }

    .v43-cta h2 {
        font-size: 29px
    }

    .v43-cta a {
        text-align: center
    }

    .v43-page-hero {
        padding: 70px 0 48px
    }

    .v43-page-hero h1 {
        font-size: 39px
    }

    .bodymap-summary-v42 {
        grid-template-columns: 1fr 1fr
    }

    .marketplace-schema {
        max-width: 390px
    }

    .v43-admin .admin-content {
        padding: 18px 14px 80px
    }
}

@media(max-width: 470px) {
    .bodymap-summary-v42 {
        grid-template-columns:1fr
    }

    .v43-query form {
        display: grid;
        height: auto;
        background: transparent;
        gap: 7px
    }

    .v43-query input,.v43-query button {
        height: 50px;
        border-radius: 11px
    }

    .v43-trust strong {
        font-size: 22px
    }
}

/* ===========================
   V4.4 Premium interface
   =========================== */
.site-v44 {
    background: #f5f6f8
}

.v44-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(245,246,248,.86);
    backdrop-filter: blur(20px);
    border: 0
}

.v44-header-inner {
    height: 68px;
    padding: 8px 10px 8px 12px;
    border: 1px solid rgba(18,24,34,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 45px rgba(16,24,40,.09);
    display: flex;
    align-items: center;
    gap: 18px
}

.v44-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #0b1017;
    box-shadow: 0 8px 22px rgba(11,16,23,.24);
    flex: 0 0 auto
}

.v44-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.v44-logo span {
    color: #fff;
    font-weight: 950
}

.v44-pill-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 999px;
    background: #f3f5f7;
    margin: auto
}

.v44-pill-nav a {
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #4d5665;
    transition: .2s
}

.v44-pill-nav a:hover,.v44-pill-nav a.active {
    background: #fff;
    color: #10151c;
    box-shadow: 0 5px 16px rgba(15,23,42,.08)
}

.v44-header-actions {
    display: flex;
    gap: 8px
}

.v44-header-actions a {
    min-height: 44px;
    padding: 0 17px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900
}

.v44-query-btn {
    border: 1px solid #dde2e8;
    background: #fff
}

.v44-book-btn {
    background: #ff6500;
    color: #fff;
    box-shadow: 0 10px 24px rgba(255,101,0,.22)
}

.v44-menu-button {
    display: none
}

.site-v44 .v43-hero {
    padding: 70px 0 82px;
    background: radial-gradient(circle at 80% 18%,rgba(255,101,0,.13),transparent 28%),linear-gradient(180deg,#f8f9fb,#fff)
}

.site-v44 .v43-hero-grid {
    align-items: center;
    gap: 70px
}

.site-v44 .v43-hero h1 {
    color: #0b1017!important;
    font-size: clamp(48px,5.3vw,82px);
    line-height: .98;
    letter-spacing: -.062em;
    max-width: 700px;
    text-shadow: none
}

.site-v44 .v43-hero h1 em {
    color: #ff6500;
    font-style: normal
}

.site-v44 .v43-hero p {
    font-size: 17px;
    line-height: 1.75;
    color: #626d7d;
    max-width: 630px
}

.site-v44 .v43-eyebrow {
    color: #ff6500;
    letter-spacing: .19em
}

.site-v44 .v43-visual {
    border-radius: 36px;
    transform: none;
    box-shadow: 0 35px 90px rgba(15,23,42,.18)
}

.site-v44 .v43-query {
    margin-top: 0;
    border-radius: 0;
    background: #0c1118
}

.site-v44 .v43-query h2,.site-v44 .v43-query span {
    color: #fff
}

.site-v44 .v43-query form {
    background: #fff;
    padding: 6px;
    border-radius: 999px
}

.site-v44 .v43-query button {
    border-radius: 999px;
    background: #ff6500
}

.site-v44 .v43-section {
    padding: 100px 0
}

.site-v44 .v43-feature-grid article,.site-v44 .v43-package-grid article {
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(15,23,42,.07)
}

.photo-vehicle-schema {
    width: 100%;
    max-width: 660px;
    margin: auto
}

.vehicle-photo-stage {
    position: relative;
    aspect-ratio: 760/1180;
    max-height: 720px;
    margin: auto;
    display: grid;
    place-items: center
}

.vehicle-photo-stage>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(15,23,42,.12));
    pointer-events: none;
    user-select: none
}

.vehicle-direction {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .18em;
    color: #8993a2
}

.vehicle-direction.rear {
    top: 1.5%
}

.vehicle-direction.front {
    bottom: 1.5%
}

.vehicle-hotspot {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%,-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #a9b2bd;
    box-shadow: 0 4px 14px rgba(15,23,42,.22);
    z-index: 5;
    transition: .18s
}

.vehicle-hotspot span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: currentColor
}

.vehicle-hotspot b {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 9px);
    transform: translateX(-50%) translateY(4px);
    padding: 7px 9px;
    border-radius: 8px;
    background: #111721;
    color: #fff;
    font-size: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .18s
}

.vehicle-hotspot:hover b,.vehicle-hotspot:focus b {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.vehicle-hotspot.status-original {
    color: #a9b2bd
}

.vehicle-hotspot.status-local-painted {
    color: #f3bc45
}

.vehicle-hotspot.status-painted {
    color: #ef8a19
}

.vehicle-hotspot.status-removed {
    color: #3d8ed8
}

.vehicle-hotspot.status-replaced {
    color: #e64d49
}

.vehicle-hotspot.status-damaged {
    color: #8e5dca
}

.photo-vehicle-schema.is-interactive .vehicle-hotspot {
    cursor: pointer
}

.photo-vehicle-schema.is-interactive .vehicle-hotspot:hover,.photo-vehicle-schema.is-interactive .vehicle-hotspot:focus {
    transform: translate(-50%,-50%) scale(1.22);
    outline: none
}

.vehicle-schema-help {
    text-align: center;
    color: #7d8796;
    font-size: 10px;
    margin: 8px 0 0
}

.simple-vehicle-schema svg {
    display: none!important
}

@media(max-width: 980px) {
    .v44-pill-nav,.v44-header-actions {
        display:none
    }

    .v44-header-inner {
        justify-content: space-between;
        height: 62px;
        padding: 6px 7px 6px 9px
    }

    .v44-logo {
        width: 48px;
        height: 48px
    }

    .v44-menu-button {
        display: flex
    }

    .v44-mobile-menu {
        top: 88px;
        left: 16px;
        right: 16px;
        border-radius: 24px;
        box-shadow: 0 25px 70px rgba(15,23,42,.2)
    }

    .site-v44 .v43-hero {
        padding: 40px 0 62px
    }

    .site-v44 .v43-hero-grid {
        gap: 34px
    }

    .site-v44 .v43-hero h1 {
        font-size: clamp(43px,11vw,66px)
    }

    .site-v44 .v43-visual {
        border-radius: 26px
    }

    .site-v44 .v43-section {
        padding: 70px 0
    }
}

@media(max-width: 560px) {
    .v44-header {
        padding:9px 0
    }

    .v44-header-inner {
        width: calc(100% - 20px)
    }

    .vehicle-photo-stage {
        max-height: 560px
    }

    .vehicle-hotspot {
        width: 25px;
        height: 25px;
        border-width: 3px
    }

    .vehicle-hotspot b {
        display: none
    }

    .site-v44 .v43-hero p {
        font-size: 15px
    }

    .site-v44 .v43-actions {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .site-v44 .v43-query .site-shell {
        display: block
    }

    .site-v44 .v43-query form {
        margin-top: 18px;
        width: 100%
    }
}

@media print {
    .vehicle-hotspot b,.vehicle-schema-help {
        display: none
    }

    .vehicle-hotspot {
        width: 20px;
        height: 20px;
        border-width: 3px;
        box-shadow: none
    }
}

/* =========================================================
   V4.4 — kurumsal site + sade marker şema
   ========================================================= */
.site-v44 {
    background: #fff;
    color: #101720;
    overflow-x: hidden
}

.site-v44 .site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #eceff3
}

.site-v44 .site-header-inner {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px
}

.site-v44 .site-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    color: #111722
}

.site-v44 .brand-orb {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg,#111722,#232c39);
    box-shadow: 0 14px 34px rgba(15,23,42,.16);
    flex: none;
    overflow: hidden;
    border: 3px solid #fff
}

.site-v44 .brand-orb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    background: transparent;
    border-radius: 50%
}

.site-v44 .brand-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 900;
    color: #fff
}

.site-v44 .brand-copy strong {
    display: block;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -.02em;
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.site-v44 .brand-copy small {
    display: block;
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: .18em;
    color: #7b8592;
    font-weight: 900
}

.site-v44 .site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid #eaedf1;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15,23,42,.05)
}

.site-v44 .site-nav a {
    position: relative;
    padding: 13px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    color: #3a4350;
    transition: .18s
}

.site-v44 .site-nav a:hover,.site-v44 .site-nav a.active {
    background: #f5f7fa;
    color: #111722
}

.site-v44 .site-nav a.active {
    box-shadow: inset 0 0 0 1px #e6ebf0
}

.site-v44 .site-nav .nav-report {
    background: #111722;
    color: #fff
}

.site-v44 .site-nav .nav-report:hover {
    background: #202938;
    color: #fff
}

.site-v44 .site-nav .nav-booking {
    background: #ff6b00;
    color: #fff
}

.site-v44 .site-nav .nav-booking:hover {
    background: #ea5f00;
    color: #fff
}

.site-v44 .site-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid #e4e8ee;
    background: #fff;
    padding: 11px
}

.site-v44 .site-menu-button i {
    display: block;
    height: 2px;
    background: #111722;
    border-radius: 8px;
    margin: 5px 0
}

.site-v44 .site-mobile-menu {
    display: none;
    position: fixed;
    left: 14px;
    right: 14px;
    top: 88px;
    background: #fff;
    border: 1px solid #eaedf1;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15,23,42,.15);
    padding: 10px;
    z-index: 85
}

.site-v44 .site-mobile-menu.open {
    display: grid
}

.site-v44 .site-mobile-menu a {
    padding: 15px 14px;
    border-bottom: 1px solid #edf1f4;
    font-size: 13px;
    font-weight: 800;
    color: #121923
}

.site-v44 .site-mobile-menu a:last-child {
    border-bottom: 0
}

.site-v44 .site-mobile-menu a:nth-last-child(2),.site-v44 .site-mobile-menu a:last-child {
    border-radius: 12px
}

.v44-hero {
    padding: 82px 0 68px;
    background: radial-gradient(circle at 80% 18%,rgba(255,107,0,.13),transparent 28%),linear-gradient(180deg,#fff,#f7f9fc)
}

.v44-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.02fr) minmax(360px,.98fr);
    gap: 56px;
    align-items: center
}

.v44-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff6b00;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .2em
}

.v44-kicker:before {
    content: "";
    width: 28px;
    height: 2px;
    background: #ff6b00
}

.v44-hero-copy h1 {
    font-size: 62px;
    line-height: 1.01;
    letter-spacing: -.06em;
    margin: 18px 0 22px;
    max-width: 780px
}

.v44-hero-copy h1 em {
    font-style: normal;
    color: #ff6b00
}

.v44-hero-copy p {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.8;
    color: #657182
}

.v44-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.v44-btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid #dce2e8;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: #111722
}

.v44-btn.primary {
    background: #ff6b00;
    border-color: #ff6b00;
    color: #fff;
    box-shadow: 0 14px 30px rgba(255,107,0,.22)
}

.v44-proof-row {
    display: flex;
    gap: 18px;
    margin-top: 36px
}

.v44-proof-row>div {
    min-width: 120px;
    padding: 18px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7ebf0;
    box-shadow: 0 12px 30px rgba(15,23,42,.05)
}

.v44-proof-row strong {
    display: block;
    font-size: 28px;
    line-height: 1
}

.v44-proof-row span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    color: #7b8593;
    font-weight: 800
}

.v44-hero-panel {
    background: #101720;
    color: #fff;
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 34px 90px rgba(15,23,42,.18)
}

.hero-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .14em;
    color: #8e98a7;
    margin-bottom: 18px
}

.hero-panel-top b {
    color: #58d398
}

.hero-panel-card {
    border-radius: 24px;
    padding: 24px
}

.hero-panel-card.dark {
    background: linear-gradient(145deg,#171f2a,#0e141c)
}

.hero-panel-card small {
    font-size: 10px;
    letter-spacing: .16em;
    color: #ff9d58;
    font-weight: 900
}

.hero-panel-card strong {
    display: block;
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: -.04em;
    margin: 14px 0 10px
}

.hero-panel-card p {
    margin: 0;
    color: #aeb8c5;
    font-size: 14px;
    line-height: 1.7
}

.hero-status-list {
    display: grid;
    gap: 10px;
    margin-top: 18px
}

.hero-status-list article {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    color: #111722
}

.hero-status-list i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #ebf7f0;
    color: #0f9a64;
    display: grid;
    place-items: center;
    font-style: normal;
    font-weight: 900
}

.hero-status-list strong {
    display: block;
    font-size: 13px
}

.hero-status-list span {
    display: block;
    margin-top: 4px;
    color: #6f7987;
    font-size: 11px
}

.v44-query-strip {
    padding: 0 0 40px
}

.v44-query-box {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(360px,.92fr);
    gap: 30px;
    align-items: center;
    background: #fff;
    border: 1px solid #ebeff4;
    border-radius: 28px;
    padding: 30px 34px;
    box-shadow: 0 24px 60px rgba(15,23,42,.06)
}

.v44-query-box span,.v44-head span,.v44-cta span {
    display: block;
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 950;
    color: #ff6b00
}

.v44-query-box h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 10px 0
}

.v44-query-box p {
    margin: 0;
    color: #6d7786;
    font-size: 13px;
    line-height: 1.75
}

.v44-query-box form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid #e5eaf0;
    border-radius: 18px;
    background: #f9fafc
}

.v44-query-box input {
    flex: 1;
    min-width: 0;
    height: 52px;
    border: 0;
    background: transparent;
    padding: 0 14px;
    outline: none;
    font-size: 13px;
    font-weight: 800
}

.v44-query-box button {
    border: 0;
    min-width: 130px;
    border-radius: 14px;
    background: #111722;
    color: #fff;
    font-weight: 900
}

.v44-section {
    padding: 86px 0
}

.v44-section-soft {
    background: #f6f8fb
}

.v44-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px
}

.v44-head h2 {
    margin: 10px 0 0;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -.045em;
    max-width: 720px
}

.v44-head a {
    color: #ff6b00;
    font-size: 12px;
    font-weight: 900
}

.v44-card-grid.cols-3,.v44-package-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px
}

.v44-card-grid article {
    background: #fff;
    border: 1px solid #e7ebf0;
    border-radius: 24px;
    padding: 28px;
    min-height: 220px;
    box-shadow: 0 12px 32px rgba(15,23,42,.03)
}

.v44-card-grid article b {
    font-size: 10px;
    font-weight: 950;
    color: #ff6b00
}

.v44-card-grid article h3 {
    font-size: 22px;
    margin: 34px 0 12px;
    letter-spacing: -.03em
}

.v44-card-grid article p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #6d7786
}

.v44-package-grid article {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 24px;
    background: #121923;
    color: #fff;
    border: 1px solid #283140
}

.v44-package-grid article.featured {
    background: linear-gradient(180deg,#25170c,#111722);
    border-color: #ff6b00;
    box-shadow: 0 20px 50px rgba(255,107,0,.09)
}

.v44-package-grid article>span {
    font-size: 9px;
    letter-spacing: .16em;
    font-weight: 950;
    color: #ff9e59
}

.v44-package-grid h3 {
    font-size: 26px;
    margin: 24px 0 10px;
    letter-spacing: -.04em
}

.v44-package-grid p {
    margin: 0;
    min-height: 64px;
    color: #a8b0bc;
    font-size: 12px;
    line-height: 1.75
}

.v44-package-grid strong {
    font-size: 32px;
    margin-top: 18px
}

.v44-package-grid small {
    margin: 6px 0 20px;
    color: #8f99a6;
    font-size: 10px
}

.v44-package-grid a {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #283241;
    color: #ff8a41;
    font-size: 11px;
    font-weight: 900
}

.v44-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.v44-split h2 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -.045em;
    margin: 14px 0 18px
}

.v44-split p {
    font-size: 14px;
    line-height: 1.8;
    color: #6e7886
}

.v44-split ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px
}

.v44-split li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #e7ebef
}

.v44-split li b {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff2e9;
    color: #ff6b00;
    font-size: 11px;
    font-weight: 950
}

.v44-split li strong {
    display: block;
    font-size: 16px
}

.v44-split li span {
    display: block;
    margin-top: 4px;
    color: #7a8390;
    font-size: 11px;
    line-height: 1.6
}

.v44-cta {
    padding: 0 0 90px
}

.v44-cta .site-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px 40px;
    background: linear-gradient(145deg,#111722,#1a2330);
    border-radius: 30px;
    color: #fff
}

.v44-cta h2 {
    max-width: 740px;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin: 10px 0 0
}

.v44-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.site-v44 .site-footer {
    background: #0c1118;
    color: #fff;
    padding-top: 62px
}

.site-v44 .site-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 46px
}

.site-v44 .site-footer .site-brand {
    color: #fff
}

.site-v44 .site-footer .brand-orb {
    border-color: #1d2633;
    box-shadow: none
}

.site-v44 .site-footer .brand-copy small {
    color: #7f8792
}

.site-v44 .site-footer-brand p {
    max-width: 340px;
    font-size: 12px;
    line-height: 1.8;
    color: #87919e
}

.site-v44 .site-footer-grid>div>b {
    display: block;
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: .16em;
    color: #6f7782
}

.site-v44 .site-footer-grid>div>a,.site-v44 .site-footer-grid>div>span {
    display: block;
    color: #c8ced8;
    font-size: 12px;
    line-height: 1.9;
    margin-bottom: 5px
}

.site-v44 .site-footer-grid>div>a:hover {
    color: #ff9a54
}

.site-v44 .site-footer-bottom {
    border-top: 1px solid #202633;
    padding: 18px 0;
    color: #737c88;
    font-size: 10px
}

.site-v44 .site-footer-bottom .site-shell {
    display: flex;
    justify-content: space-between;
    gap: 20px
}

/* V4.4 admin simplification */
.v44-admin .sidebar-nav a {
    font-size: 13px
}

.v44-admin .sidebar-nav small {
    letter-spacing: .18em
}

.v44-admin .topbar-actions {
    gap: 10px
}

.v44-admin .page-heading h1 {
    font-size: 32px
}

.v44-admin .bodymap-v42 {
    grid-template-columns: minmax(350px,.95fr) minmax(320px,1.05fr)
}

.v44-admin .bodymap-v42 .simple-bodymap-stage {
    position: sticky;
    top: 86px;
    background: #f8fafc;
    border: 1px solid #e7ebef;
    border-radius: 26px;
    padding: 14px
}

.v44-admin .bodymap-summary-v42 {
    gap: 8px
}

.v44-admin .bodymap-summary-row {
    min-height: 54px;
    border-radius: 16px
}

/* V4.4 marker based vehicle schema */
.mx44-schema {
    max-width: 720px;
    margin: auto
}

.mx44-schema svg {
    display: block;
    width: 100%;
    height: auto
}

.mx44-schema .schema-board {
    fill: #fbfcfe;
    stroke: #e7ecf1;
    stroke-width: 1.5
}

.mx44-schema .schema-direction {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .22em;
    fill: #9aa4b1
}

.mx44-schema .car-shadow {
    fill: rgba(17,23,34,.05)
}

.mx44-schema .car-body {
    fill: url(#report-vehicle-body, #fff);
    fill: #ffffff;
    stroke: #ccd4dd;
    stroke-width: 3
}

.mx44-schema .car-part-static {
    fill: #fff;
    stroke: #ccd4dd;
    stroke-width: 3
}

.mx44-schema .car-glass {
    fill: #d7dde5;
    stroke: #c7d0d9;
    stroke-width: 2.5
}

.mx44-schema .car-mirror {
    fill: #f2f4f7;
    stroke: #cfd6de;
    stroke-width: 2.5
}

.mx44-schema .car-wheel-arches rect {
    fill: #2c3442
}

.mx44-schema .car-detail path,.mx44-schema .car-detail circle {
    fill: none;
    stroke: #d2d8df;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round
}

.mx44-schema .car-detail circle {
    fill: #e3e8ee;
    stroke: none
}

.mx44-schema .schema-marker {
    cursor: default;
    outline: none
}

.mx44-schema.is-interactive .schema-marker {
    cursor: pointer
}

.mx44-schema .schema-marker .marker-ring {
    fill: #fff;
    stroke: #d7dee7;
    stroke-width: 3;
    transition: .16s
}

.mx44-schema .schema-marker .marker-core {
    fill: #f2f4f7;
    stroke: #cbd3dc;
    stroke-width: 1.5;
    transition: .16s
}

.mx44-schema .schema-marker text {
    font-size: 12px;
    font-weight: 900;
    fill: #273141;
    pointer-events: none
}

.mx44-schema .schema-marker.status-original .marker-core {
    fill: #eff2f5
}

.mx44-schema .schema-marker.status-local-painted .marker-core {
    fill: #ffd58f
}

.mx44-schema .schema-marker.status-painted .marker-core {
    fill: #f0b238
}

.mx44-schema .schema-marker.status-removed .marker-core {
    fill: #77b6ff
}

.mx44-schema .schema-marker.status-replaced .marker-core {
    fill: #ff867f
}

.mx44-schema .schema-marker.status-damaged .marker-core {
    fill: #b58ef4
}

.mx44-schema .schema-marker.status-removed text,.mx44-schema .schema-marker.status-replaced text,.mx44-schema .schema-marker.status-damaged text,.mx44-schema .schema-marker.status-painted text {
    fill: #fff
}

.mx44-schema.is-interactive .schema-marker:hover .marker-ring,.mx44-schema.is-interactive .schema-marker:focus .marker-ring {
    stroke: #ff6b00;
    stroke-width: 4;
    filter: drop-shadow(0 8px 14px rgba(255,107,0,.18))
}

.mx44-schema.is-interactive .schema-marker:hover .marker-core,.mx44-schema.is-interactive .schema-marker:focus .marker-core {
    transform: scale(1.03);
    transform-origin: center
}

.bodymap-legend.compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 14px
}

.bodymap-legend.compact span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e4e8ee;
    font-size: 10px;
    font-weight: 800;
    color: #55606f
}

.bodymap-legend.compact span i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    background: #eff2f5;
    border: 1px solid #dde3ea
}

.bodymap-legend.compact span.local-painted i {
    background: #ffd58f
}

.bodymap-legend.compact span.painted i {
    background: #f0b238
}

.bodymap-legend.compact span.removed i {
    background: #77b6ff
}

.bodymap-legend.compact span.replaced i {
    background: #ff867f
}

.bodymap-legend.compact span.damaged i {
    background: #b58ef4
}

.schema-tap-hint {
    margin: 10px 0 0;
    text-align: center;
    color: #7a8594;
    font-size: 10px
}

@media(max-width: 1180px) {
    .site-v44 .site-nav {
        gap:4px;
        padding: 6px
    }

    .site-v44 .site-nav a {
        padding: 12px 12px
    }

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

    .v44-card-grid.cols-3,.v44-package-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }

    .site-v44 .site-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr
    }

    .v44-query-box {
        grid-template-columns: 1fr
    }

    .v44-admin .bodymap-v42 {
        grid-template-columns: 1fr
    }
}

@media(max-width: 980px) {
    .site-v44 .site-nav {
        display:none
    }

    .site-v44 .site-menu-button {
        display: block
    }

    .site-v44 .site-mobile-menu {
        top: 84px
    }

    .v44-hero-copy h1 {
        font-size: 46px
    }

    .v44-proof-row {
        display: grid;
        grid-template-columns: repeat(3,1fr)
    }

    .v44-cta .site-shell {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width: 720px) {
    .site-v44 .site-shell {
        width:min(100% - 28px,1200px)
    }

    .site-v44 .site-header-inner {
        height: 78px
    }

    .site-v44 .brand-orb {
        width: 50px;
        height: 50px
    }

    .site-v44 .brand-copy strong {
        max-width: 175px;
        font-size: 14px
    }

    .site-v44 .brand-copy small {
        font-size: 8px
    }

    .site-v44 .site-mobile-menu {
        top: 76px
    }

    .v44-hero {
        padding: 50px 0 42px
    }

    .v44-hero-copy h1 {
        font-size: 38px
    }

    .v44-hero-copy p {
        font-size: 14px
    }

    .v44-proof-row {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .v44-hero-actions,.v44-cta-actions {
        display: grid;
        width: 100%
    }

    .v44-btn {
        width: 100%
    }

    .v44-query-box {
        padding: 22px
    }

    .v44-query-box h2,.v44-head h2,.v44-split h2,.v44-cta h2 {
        font-size: 30px
    }

    .v44-card-grid.cols-3,.v44-package-grid,.site-v44 .site-footer-grid {
        grid-template-columns: 1fr
    }

    .v44-section {
        padding: 62px 0
    }

    .v44-split {
        gap: 28px
    }

    .site-v44 .site-footer-bottom .site-shell {
        display: grid
    }

    .mx44-schema {
        max-width: 100%
    }

    .mx44-schema .schema-direction {
        font-size: 12px
    }

    .v44-admin .bodymap-v42 .simple-bodymap-stage {
        padding: 10px
    }

    .v44-admin .bodymap-summary-v42 {
        grid-template-columns: 1fr
    }
}

@media print {
    .mx44-schema .schema-marker .marker-core,.mx44-schema .schema-marker .marker-ring,.mx44-schema .car-body,.mx44-schema .car-part-static,.mx44-schema .car-glass {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact
    }
}

/* =====================================================
   V4.4 — Circular brand header + marker vehicle diagram
   ===================================================== */
.site-v44 {
    background: #fff;
    color: #10151d;
    overflow-x: hidden
}

.site-v44 main {
    padding-top: 112px
}

.site-shell {
    width: min(1180px,calc(100% - 40px));
    margin: auto
}

.v44-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 18px 0;
    pointer-events: none
}

.v44-header-shell {
    height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 8px 10px 8px 12px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.93);
    box-shadow: 0 18px 55px rgba(15,23,42,.10);
    backdrop-filter: blur(20px);
    pointer-events: auto
}

.v44-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #0c1118;
    box-shadow: 0 10px 28px rgba(15,23,42,.16);
    flex: none
}

.v44-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.v44-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border-radius: 999px;
    background: #f4f6f8
}

.v44-nav a {
    height: 42px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #505b6b;
    transition: .2s
}

.v44-nav a:hover,.v44-nav a.active {
    background: #fff;
    color: #ff6500;
    box-shadow: 0 6px 18px rgba(15,23,42,.08)
}

.v44-header-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.v44-header-actions a {
    height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap
}

.v44-query-btn {
    border: 1px solid #dce1e7;
    background: #fff
}

.v44-book-btn {
    background: #ff6500;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255,101,0,.22)
}

.v44-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #10151d;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px
}

.v44-menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 3px;
    background: #fff
}

.v44-mobile-menu {
    display: none
}

.v44-hero {
    padding: 78px 0 86px;
    background: radial-gradient(circle at 88% 16%,#fff0e5 0,transparent 33%),linear-gradient(180deg,#fff 0,#fbfcfd 100%)
}

.v44-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) 510px;
    align-items: center;
    gap: 72px
}

.v44-kicker,.v44-section-head small,.v44-process small,.v44-final-cta small {
    font-size: 10px;
    letter-spacing: .17em;
    font-weight: 950;
    color: #ff6500
}

.v44-kicker {
    display: flex;
    align-items: center;
    gap: 9px
}

.v44-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6500;
    box-shadow: 0 0 0 6px rgba(255,101,0,.10)
}

.v44-hero h1 {
    max-width: 680px;
    font-size: 66px;
    line-height: .98;
    letter-spacing: -.065em;
    margin: 25px 0 24px
}

.v44-hero h1 em {
    font-style: normal;
    color: #ff6500
}

.v44-hero-copy>p {
    max-width: 640px;
    margin: 0;
    color: #687386;
    font-size: 18px;
    line-height: 1.75
}

.v44-hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 34px
}

.v44-button {
    height: 54px;
    padding: 0 22px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid #dfe4ea;
    background: #fff
}

.v44-button.primary {
    background: #ff6500;
    color: #fff;
    border-color: #ff6500;
    box-shadow: 0 14px 30px rgba(255,101,0,.23)
}

.v44-button.light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.2)
}

.v44-proof {
    display: flex;
    gap: 0;
    margin-top: 48px
}

.v44-proof div {
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid #e2e6eb
}

.v44-proof div:last-child {
    border: 0
}

.v44-proof strong {
    display: block;
    font-size: 23px;
    letter-spacing: -.04em
}

.v44-proof span {
    display: block;
    margin-top: 5px;
    color: #8a94a3;
    font-size: 10px
}

.v44-hero-card {
    position: relative;
    padding: 18px;
    border-radius: 34px;
    background: #0d131c;
    color: #fff;
    box-shadow: 0 35px 90px rgba(11,17,26,.25);
    transform: rotate(1.2deg)
}

.v44-hero-card:before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 44px;
    background: linear-gradient(135deg,rgba(255,101,0,.12),transparent 50%);
    z-index: -1
}

.v44-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 5px 16px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    color: #aab4c0
}

.v44-card-head span {
    display: flex;
    align-items: center;
    gap: 8px
}

.v44-card-head i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ed381;
    box-shadow: 0 0 0 5px rgba(46,211,129,.10)
}

.v44-card-head b {
    color: #2ed381
}

.v44-car-summary {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg,#171f2b,#101720);
    display: flex;
    flex-direction: column;
    gap: 7px
}

.v44-car-summary small {
    font-size: 8px;
    color: #ff8c3b;
    font-weight: 950
}

.v44-car-summary strong {
    font-size: 25px;
    letter-spacing: -.04em
}

.v44-car-summary span {
    font-size: 10px;
    color: #98a4b4
}

.v44-flow-list {
    display: grid;
    gap: 9px;
    margin: 12px 0
}

.v44-flow-list>div {
    min-height: 69px;
    padding: 12px 14px;
    border-radius: 17px;
    background: #fff;
    color: #111820;
    display: flex;
    align-items: center;
    gap: 13px
}

.v44-flow-list i {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #fff1e7;
    color: #ff6500;
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 9px;
    font-weight: 950
}

.v44-flow-list span {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.v44-flow-list b {
    font-size: 11px
}

.v44-flow-list small {
    font-size: 8px;
    color: #8a94a3
}

.v44-flow-list em {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #e9f8f1;
    color: #0b9a60;
    display: grid;
    place-items: center;
    font-style: normal;
    font-weight: 900
}

.v44-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
    font-size: 9px
}

.v44-card-foot b {
    color: #ff954d
}

.v44-query-strip {
    padding: 22px 0;
    background: #ff6500;
    color: #fff
}

.v44-query-strip>.site-shell {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 45px
}

.v44-query-strip small {
    display: block;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .16em;
    opacity: .7
}

.v44-query-strip strong {
    display: block;
    font-size: 22px;
    margin-top: 5px
}

.v44-query-strip form {
    display: flex;
    background: #fff;
    border-radius: 15px;
    padding: 5px
}

.v44-query-strip input {
    flex: 1;
    height: 46px;
    border: 0;
    outline: 0;
    padding: 0 14px;
    min-width: 0;
    font-size: 13px
}

.v44-query-strip button {
    height: 46px;
    border: 0;
    border-radius: 11px;
    padding: 0 20px;
    background: #10151d;
    color: #fff;
    font-size: 11px;
    font-weight: 900
}

.v44-section {
    padding: 100px 0
}

.v44-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px
}

.v44-section-head h2 {
    max-width: 760px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -.05em;
    margin: 12px 0 0
}

.v44-section-head>a {
    font-size: 11px;
    font-weight: 900;
    color: #ff6500
}

.v44-services {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px
}

.v44-services article {
    position: relative;
    min-height: 330px;
    padding: 28px;
    border: 1px solid #e5e9ee;
    border-radius: 26px;
    background: #fff;
    transition: .25s
}

.v44-services article:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(15,23,42,.09);
    border-color: #ffdbc3
}

.v44-services article>span {
    position: absolute;
    right: 24px;
    top: 22px;
    font-size: 10px;
    font-weight: 950;
    color: #b3bbc6
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #10151d;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 48px
}

.v44-services h3 {
    font-size: 23px;
    letter-spacing: -.035em;
    margin: 0 0 12px
}

.v44-services p {
    color: #748091;
    line-height: 1.7;
    font-size: 13px
}

.v44-services a {
    position: absolute;
    bottom: 28px;
    font-size: 10px;
    font-weight: 900;
    color: #ff6500
}

.v44-process {
    padding: 100px 0;
    background: #0c1118;
    color: #fff
}

.v44-process-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: center
}

.v44-process h2 {
    font-size: 47px;
    line-height: 1.05;
    letter-spacing: -.05em;
    margin: 15px 0
}

.v44-process p {
    color: #909baa;
    line-height: 1.75;
    font-size: 14px;
    max-width: 470px;
    margin-bottom: 28px
}

.v44-process ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.v44-process li {
    min-height: 150px;
    padding: 24px;
    border-radius: 22px;
    background: #151c26;
    border: 1px solid rgba(255,255,255,.07);
    display: flex;
    gap: 18px
}

.v44-process li>b {
    font-size: 11px;
    color: #ff7a1d
}

.v44-process li span {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.v44-process li strong {
    font-size: 16px
}

.v44-process li small {
    color: #909baa;
    line-height: 1.6
}

.v44-packages {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.v44-packages article {
    padding: 28px;
    border: 1px solid #e4e8ed;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    background: #fff
}

.v44-packages article.featured {
    background: #10151d;
    color: #fff;
    border-color: #10151d;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15,23,42,.17)
}

.package-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.package-top span {
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .15em;
    color: #ff6500
}

.package-top small {
    font-size: 8px;
    color: #8c96a4
}

.v44-packages h3 {
    font-size: 25px;
    letter-spacing: -.04em;
    margin: 30px 0 12px
}

.v44-packages p {
    color: #768294;
    line-height: 1.7;
    font-size: 12px;
    min-height: 62px
}

.v44-packages .featured p {
    color: #9da7b5
}

.v44-packages>article>strong {
    font-size: 30px;
    margin-top: auto;
    letter-spacing: -.04em
}

.v44-packages a {
    height: 48px;
    margin-top: 20px;
    border-radius: 13px;
    background: #f2f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    font-size: 10px;
    font-weight: 900
}

.v44-packages .featured a {
    background: #ff6500;
    color: #fff
}

.v44-final-cta {
    padding: 44px 0;
    background: #f4f6f8
}

.v44-final-cta>.site-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 38px 44px;
    border-radius: 30px;
    background: linear-gradient(125deg,#ff6500,#ff8133);
    color: #fff;
    box-shadow: 0 22px 55px rgba(255,101,0,.19)
}

.v44-final-cta h2 {
    font-size: 35px;
    letter-spacing: -.045em;
    margin: 9px 0 0;
    max-width: 720px
}

.v44-final-cta small {
    color: #fff;
    opacity: .75
}

.v44-final-cta a {
    height: 54px;
    padding: 0 22px;
    border-radius: 15px;
    background: #fff;
    color: #111820;
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 900
}

.v44-footer {
    padding-top: 70px;
    background: #0b1017;
    color: #fff
}

.v44-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3,1fr);
    gap: 55px;
    padding-bottom: 60px
}

.v44-footer-grid>div {
    display: flex;
    flex-direction: column;
    gap: 13px
}

.v44-footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: block
}

.v44-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.v44-footer-brand h3 {
    font-size: 19px;
    margin: 4px 0 0
}

.v44-footer-brand p {
    max-width: 330px;
    color: #909baa;
    font-size: 12px;
    line-height: 1.7
}

.v44-footer-grid b {
    font-size: 9px;
    letter-spacing: .15em;
    color: #ff7a1d;
    margin-bottom: 10px
}

.v44-footer-grid a,.v44-footer-grid span {
    font-size: 11px;
    color: #aab4c0;
    line-height: 1.6
}

.v44-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08)
}

.v44-footer-bottom>.site-shell {
    height: 67px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #758091;
    font-size: 9px
}

/* V4.4 vehicle image + status markers */
.mx44-schema {
    width: 100%;
    max-width: 660px;
    margin: auto
}

.mx44-schema svg {
    display: block;
    width: 100%;
    height: auto
}

.mx44-schema .schema-board {
    fill: #fff;
    stroke: #e2e7ed;
    stroke-width: 2
}

.mx44-schema .schema-direction {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    fill: #9aa5b3
}

.mx44-schema .car-shadow {
    fill: #111827;
    opacity: .055
}

.mx44-schema .car-body,.mx44-schema .car-part-static {
    fill: url(#mx-body);
    fill: #f9fafb;
    stroke: #b8c1cc;
    stroke-width: 3
}

.mx44-schema .car-glass {
    fill: #d5dbe3;
    stroke: #aeb7c2;
    stroke-width: 2.5
}

.mx44-schema .car-mirror {
    fill: #d9dee5;
    stroke: #aab4bf;
    stroke-width: 2.5
}

.mx44-schema .car-wheel-arches rect {
    fill: #313946
}

.mx44-schema .car-detail {
    fill: none;
    stroke: #c1c9d3;
    stroke-width: 2;
    stroke-linecap: round
}

.schema-marker {
    cursor: pointer;
    outline: none;
    transition: transform .16s ease;
    transform-origin: center
}

.schema-marker:hover,.schema-marker:focus {
    transform: scale(1.1)
}

.schema-marker .marker-ring {
    fill: #fff;
    stroke: #d7dde5;
    stroke-width: 4;
    filter: drop-shadow(0 5px 8px rgba(15,23,42,.16))
}

.schema-marker .marker-core {
    fill: #f1f4f7;
    stroke: #fff;
    stroke-width: 2
}

.schema-marker text {
    font-size: 10px;
    font-weight: 950;
    fill: #576474;
    pointer-events: none
}

.schema-marker.status-local-painted .marker-core {
    fill: #ffd84d
}

.schema-marker.status-painted .marker-core {
    fill: #f29a1f
}

.schema-marker.status-removed .marker-core {
    fill: #5a9bd8
}

.schema-marker.status-replaced .marker-core {
    fill: #ef5b5b
}

.schema-marker.status-damaged .marker-core {
    fill: #9a6bd2
}

.schema-marker:not(.status-original) text {
    fill: #fff
}

.schema-marker:not(.status-original) .marker-ring {
    stroke: #fff
}

.simple-vehicle-schema.is-interactive .schema-marker {
    pointer-events: all
}

.simple-vehicle-schema:not(.is-interactive) .schema-marker {
    cursor: default
}

.body-schema-wrap {
    background: #f7f9fb!important
}

.body-schema-wrap .mx44-schema {
    max-width: 560px
}

.schema-workspace .mx44-schema {
    max-width: 650px
}

/* Cleaner admin workspace */
.v4-admin .admin-content {
    background: #f5f7f9
}

.v4-admin .form-card,.v4-admin .wizard-card,.v4-admin .schema-workspace {
    border: 1px solid #e4e8ed!important;
    box-shadow: none!important;
    border-radius: 20px!important
}

.v4-admin .admin-sidebar {
    background: #0b1017
}

.v4-admin .admin-nav a {
    border-radius: 12px
}

.v4-admin .schema-editor-premium {
    gap: 16px
}

.v4-admin .schema-stage-premium {
    background: #fff!important
}

.v4-admin .bodymap-legend {
    border-top: 1px solid #e6eaef
}

@media(max-width: 1100px) {
    .v44-nav a {
        padding:0 12px
    }

    .v44-header-actions .v44-query-btn {
        display: none
    }

    .v44-hero-grid {
        grid-template-columns: 1fr 440px;
        gap: 38px
    }

    .v44-hero h1 {
        font-size: 56px
    }
}

@media(max-width: 900px) {
    .site-v44 main {
        padding-top:92px
    }

    .v44-header {
        padding: 12px 0
    }

    .v44-header-shell {
        height: 68px;
        grid-template-columns: auto 1fr auto;
        padding: 5px 6px 5px 7px
    }

    .v44-logo {
        width: 56px;
        height: 56px
    }

    .v44-nav,.v44-header-actions {
        display: none
    }

    .v44-menu-button {
        display: flex;
        justify-self: end
    }

    .v44-mobile-menu {
        position: fixed;
        top: 90px;
        left: 20px;
        right: 20px;
        z-index: 199;
        padding: 12px;
        border: 1px solid #e2e7ed;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 25px 70px rgba(15,23,42,.18);
        display: grid;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .2s;
        pointer-events: auto
    }

    .v44-mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    .v44-mobile-menu a {
        height: 48px;
        padding: 0 15px;
        border-radius: 13px;
        display: flex;
        align-items: center;
        font-size: 13px;
        font-weight: 800
    }

    .v44-mobile-menu a:hover {
        background: #f4f6f8
    }

    .v44-mobile-menu .mobile-book {
        background: #ff6500;
        color: #fff
    }

    .v44-hero {
        padding: 48px 0 62px
    }

    .v44-hero-grid {
        grid-template-columns: 1fr
    }

    .v44-hero h1 {
        font-size: 54px
    }

    .v44-hero-card {
        max-width: 600px;
        width: 100%;
        margin: auto;
        transform: none
    }

    .v44-query-strip>.site-shell {
        grid-template-columns: 1fr;
        gap: 17px
    }

    .v44-services,.v44-packages {
        grid-template-columns: 1fr
    }

    .v44-services article {
        min-height: 260px
    }

    .v44-process-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

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

    .v44-final-cta>.site-shell {
        align-items: flex-start;
        flex-direction: column
    }

    .v44-section-head {
        align-items: flex-start;
        flex-direction: column
    }

    .v44-section-head h2 {
        font-size: 37px
    }
}

@media(max-width: 600px) {
    .site-shell {
        width:min(100% - 24px,1180px)
    }

    .site-v44 main {
        padding-top: 82px
    }

    .v44-header {
        padding: 8px 0
    }

    .v44-header-shell {
        height: 62px
    }

    .v44-logo {
        width: 50px;
        height: 50px
    }

    .v44-menu-button {
        width: 48px;
        height: 48px
    }

    .v44-mobile-menu {
        top: 78px;
        left: 12px;
        right: 12px
    }

    .v44-hero {
        padding: 38px 0 48px
    }

    .v44-hero h1 {
        font-size: 42px;
        line-height: 1.02;
        margin-top: 19px
    }

    .v44-hero-copy>p {
        font-size: 15px;
        line-height: 1.68
    }

    .v44-hero-actions {
        display: grid
    }

    .v44-button {
        width: 100%
    }

    .v44-proof {
        margin-top: 34px;
        justify-content: space-between
    }

    .v44-proof div {
        padding-right: 12px;
        margin-right: 12px
    }

    .v44-proof strong {
        font-size: 19px
    }

    .v44-hero-card {
        padding: 11px;
        border-radius: 25px
    }

    .v44-car-summary {
        padding: 19px
    }

    .v44-car-summary strong {
        font-size: 20px
    }

    .v44-flow-list>div {
        min-height: 62px
    }

    .v44-query-strip {
        padding: 20px 0
    }

    .v44-query-strip strong {
        font-size: 18px
    }

    .v44-query-strip form {
        padding: 4px
    }

    .v44-query-strip button {
        padding: 0 14px
    }

    .v44-section {
        padding: 70px 0
    }

    .v44-section-head {
        margin-bottom: 28px
    }

    .v44-section-head h2,.v44-process h2 {
        font-size: 32px
    }

    .v44-services article {
        padding: 23px;
        border-radius: 22px
    }

    .service-icon {
        margin-bottom: 35px
    }

    .v44-process {
        padding: 70px 0
    }

    .v44-process ol {
        grid-template-columns: 1fr
    }

    .v44-process li {
        min-height: 120px
    }

    .v44-packages article {
        min-height: 330px;
        padding: 23px
    }

    .v44-final-cta {
        padding: 20px 0
    }

    .v44-final-cta>.site-shell {
        padding: 28px 22px;
        border-radius: 24px
    }

    .v44-final-cta h2 {
        font-size: 28px
    }

    .v44-final-cta a {
        width: 100%;
        justify-content: space-between
    }

    .v44-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .v44-footer-bottom>.site-shell {
        height: auto;
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px
    }

    .mx44-schema .schema-marker .marker-ring {
        stroke-width: 5
    }

    .mx44-schema .schema-marker text {
        font-size: 11px
    }

    .body-schema-wrap .mx44-schema {
        max-width: 100%
    }
}

/* =====================================================
   V4.5 — Premium public website and centered round logo
   ===================================================== */
.site-v45 {
    --mx45-orange: #ff6500;
    --mx45-orange-dark: #df5200;
    --mx45-ink: #0b1119;
    --mx45-ink-2: #151d28;
    --mx45-text: #202936;
    --mx45-muted: #6e7989;
    --mx45-line: #e4e9ef;
    --mx45-soft: #f5f7f9;
    --mx45-white: #fff;
    margin: 0;
    background: #fff;
    color: var(--mx45-text);
    font-family: Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    overflow-x: hidden
}

.site-v45 * {
    box-sizing: border-box
}

.site-v45 a {
    text-decoration: none;
    color: inherit
}

.site-v45 button,.site-v45 input,.site-v45 select,.site-v45 textarea {
    font: inherit
}

.site-v45 img {
    max-width: 100%
}

.site-v45 .site-shell {
    width: min(1220px,calc(100% - 40px));
    margin-inline:auto}

.mx45-main {
    padding-top: 132px
}

.mx45-main section[id] {
    scroll-margin-top: 132px
}

/* Header */
.mx45-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 500;
    padding: 22px 0 0;
    background: linear-gradient(180deg,rgba(255,255,255,.98) 0,rgba(255,255,255,.82) 68%,rgba(255,255,255,0) 100%)
}

.mx45-header-shell {
    position: relative
}

.mx45-header-bar {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr) 112px minmax(0,1fr);
    align-items: center;
    min-height: 72px;
    padding: 0 15px;
    border: 1px solid rgba(11,17,25,.09);
    border-radius: 999px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 15px 48px rgba(15,23,42,.11);
    backdrop-filter: blur(22px);
    isolation: isolate
}

.mx45-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0
}

.mx45-nav-left {
    justify-content: flex-end;
    padding-right: 16px
}

.mx45-nav-right {
    justify-content: flex-start;
    padding-left: 16px
}

.mx45-nav>a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    color: #4f5a68;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: background .2s,color .2s,box-shadow .2s,transform .2s
}

.mx45-nav>a:hover,.mx45-nav>a.active {
    background: #f2f4f7;
    color: var(--mx45-ink)
}

.mx45-nav>a.active:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mx45-orange);
    transform: translateX(-50%)
}

.mx45-nav .mx45-report-link {
    border: 1px solid #dce2e8;
    background: #fff;
    color: var(--mx45-ink)
}

.mx45-nav .mx45-book-link {
    padding-inline:20px;background: var(--mx45-orange);
    color: #fff;
    box-shadow: 0 10px 23px rgba(255,101,0,.22)
}

.mx45-nav .mx45-book-link:hover,.mx45-nav .mx45-book-link.active {
    background: var(--mx45-orange-dark);
    color: #fff
}

.mx45-nav .mx45-book-link.active:after {
    background: #fff
}

.mx45-logo {
    position: relative;
    z-index: 5;
    justify-self: center;
    align-self: center;
    width: 94px;
    height: 94px;
    margin-block:-11px;display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(11,17,25,.09);
    box-shadow: 0 17px 42px rgba(15,23,42,.18);
    transition: transform .22s,box-shadow .22s
}

.mx45-logo:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 48px rgba(15,23,42,.22)
}

.mx45-logo-ring {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid #eceff3;
    box-shadow: inset 0 0 0 5px #fff;
    pointer-events: none
}

.mx45-logo img {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    padding: 2px
}

.mx45-mobile-report,.mx45-menu-button {
    display: none
}

.mx45-mobile-menu {
    display: none
}

/* Home hero */
.mx45-hero {
    position: relative;
    padding: 82px 0 104px;
    background: radial-gradient(circle at 87% 15%,rgba(255,101,0,.13),transparent 29%),radial-gradient(circle at 8% 88%,rgba(15,23,42,.055),transparent 23%),linear-gradient(180deg,#fff 0,#fafbfc 100%)
}

.mx45-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15,23,42,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(15,23,42,.025) 1px,transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom,rgba(0,0,0,.55),transparent 88%);
    pointer-events: none
}

.mx45-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(440px,.97fr);
    align-items: center;
    gap: 82px
}

.mx45-eyebrow,.mx45-section-head>div>span,.mx45-process-copy>span,.mx45-why-grid>div>span,.mx45-final-cta span,.mx45-page-hero-grid>div>span,.mx45-about-copy>span,.mx45-mission-grid span,.mx45-info-band span,.mx45-comparison-grid>div>span,.mx45-contact-panel>span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mx45-orange);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .18em
}

.mx45-eyebrow i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mx45-orange);
    box-shadow: 0 0 0 7px rgba(255,101,0,.10)
}

.mx45-hero h1 {
    max-width: 720px;
    margin: 24px 0 26px;
    color: var(--mx45-ink);
    font-size: 68px;
    line-height: .98;
    letter-spacing: -.066em
}

.mx45-hero h1 em {
    font-style: normal;
    color: var(--mx45-orange)
}

.mx45-hero-copy>p {
    max-width: 660px;
    margin: 0;
    color: var(--mx45-muted);
    font-size: 17px;
    line-height: 1.78
}

.mx45-hero-actions {
    display: flex;
    gap: 11px;
    margin-top: 34px
}

.mx45-btn {
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid var(--mx45-line);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    background: #fff;
    color: var(--mx45-ink);
    font-size: 12px;
    font-weight: 900;
    transition: .2s
}

.mx45-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15,23,42,.10)
}

.mx45-btn.primary {
    background: var(--mx45-orange);
    border-color: var(--mx45-orange);
    color: #fff;
    box-shadow: 0 15px 30px rgba(255,101,0,.20)
}

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

.mx45-trust-row {
    display: flex;
    margin-top: 49px
}

.mx45-trust-row>div {
    min-width: 132px;
    padding: 0 25px;
    border-right: 1px solid #dfe4e9
}

.mx45-trust-row>div:first-child {
    padding-left: 0
}

.mx45-trust-row>div:last-child {
    border-right: 0
}

.mx45-trust-row strong {
    display: block;
    color: var(--mx45-ink);
    font-size: 27px;
    letter-spacing: -.05em
}

.mx45-trust-row span {
    display: block;
    margin-top: 6px;
    color: #8993a1;
    font-size: 9px
}

.mx45-hero-visual {
    position: relative;
    min-height: 565px;
    padding: 18px;
    border-radius: 38px;
    background: linear-gradient(145deg,#0c121b,#171f2b);
    box-shadow: 0 42px 95px rgba(15,23,42,.27);
    transform: rotate(1deg)
}

.mx45-hero-visual:before {
    content: "";
    position: absolute;
    inset: -24px;
    border-radius: 52px;
    background: linear-gradient(135deg,rgba(255,101,0,.13),transparent 43%);
    z-index: -1
}

.mx45-visual-toolbar {
    height: 35px;
    padding: 0 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8e99a9;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em
}

.mx45-visual-toolbar span {
    display: flex;
    align-items: center;
    gap: 8px
}

.mx45-visual-toolbar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #32d98b;
    box-shadow: 0 0 0 5px rgba(50,217,139,.10)
}

.mx45-visual-toolbar b {
    color: #32d98b
}

.mx45-report-preview {
    padding: 18px;
    border-radius: 25px;
    background: #f5f7f9
}

.mx45-report-preview>header {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 3px 1px 18px
}

.mx45-preview-logo {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: linear-gradient(145deg,#ff6500,#ff8d3b)
}

.mx45-report-preview header div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.mx45-report-preview header small {
    font-size: 7px;
    letter-spacing: .14em;
    color: #919baa;
    font-weight: 900
}

.mx45-report-preview header strong {
    color: #151c26;
    font-size: 12px
}

.mx45-report-preview header em {
    font-style: normal;
    color: #98a1ae;
    font-size: 9px;
    font-weight: 900
}

.mx45-preview-car {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px;
    border-radius: 20px;
    background: linear-gradient(135deg,#111923,#1a2430);
    color: #fff
}

.mx45-preview-car>div {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.mx45-preview-car small {
    font-size: 7px;
    color: #ff914a;
    font-weight: 950;
    letter-spacing: .12em
}

.mx45-preview-car strong {
    font-size: 20px;
    letter-spacing: -.04em
}

.mx45-preview-car span {
    color: #9ca6b4;
    font-size: 8px
}

.mx45-preview-car>b {
    font-size: 34px;
    color: #fff
}

.mx45-preview-car>b small {
    font-size: 9px;
    color: #9ca6b4
}

.mx45-preview-items {
    display: grid;
    gap: 8px;
    margin: 12px 0
}

.mx45-preview-items article {
    display: grid;
    grid-template-columns: 35px 1fr 30px;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border: 1px solid #e1e6eb;
    border-radius: 15px;
    background: #fff
}

.mx45-preview-items i,.mx45-preview-items em {
    font-style: normal
}

.mx45-preview-items i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #fff0e5;
    color: var(--mx45-orange);
    display: grid;
    place-items: center;
    font-size: 8px;
    font-weight: 950
}

.mx45-preview-items span {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mx45-preview-items b {
    font-size: 10px
}

.mx45-preview-items small {
    color: #8b95a3;
    font-size: 7px
}

.mx45-preview-items em {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #e9f8f1;
    color: #06945b;
    display: grid;
    place-items: center;
    font-weight: 900
}

.mx45-report-preview>footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1px dashed #d9dfe6;
    border-radius: 13px;
    color: #8d97a4;
    font-size: 8px
}

.mx45-report-preview>footer b {
    color: var(--mx45-orange)
}

.mx45-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 17px;
    background: rgba(255,255,255,.93);
    box-shadow: 0 18px 44px rgba(15,23,42,.17);
    backdrop-filter: blur(14px);
    transform: rotate(-1deg)
}

.mx45-float-card.one {
    left: -54px;
    bottom: 55px
}

.mx45-float-card.two {
    right: -34px;
    top: 118px
}

.mx45-float-card>b {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #fff0e5;
    color: var(--mx45-orange);
    display: grid;
    place-items: center;
    font-size: 11px
}

.mx45-float-card span {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.mx45-float-card strong {
    font-size: 10px
}

.mx45-float-card small {
    font-size: 7px;
    color: #8993a0
}

/* Query */
.mx45-query-section {
    position: relative;
    margin-top: -42px;
    padding: 0 0 30px
}

.mx45-query-card {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
    gap: 52px;
    padding: 32px 36px;
    border: 1px solid var(--mx45-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(15,23,42,.10)
}

.mx45-query-card>div>span {
    color: var(--mx45-orange);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .17em
}

.mx45-query-card h2 {
    margin: 8px 0 5px;
    color: var(--mx45-ink);
    font-size: 26px;
    letter-spacing: -.04em
}

.mx45-query-card p {
    margin: 0;
    color: #84909f;
    font-size: 11px
}

.mx45-query-card form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 7px;
    border: 1px solid #dce2e8;
    border-radius: 18px;
    background: #f7f9fa
}

.mx45-query-card label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 5px 11px
}

.mx45-query-card label span {
    color: #9aa3af;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .11em
}

.mx45-query-card input {
    width: 100%;
    height: 27px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--mx45-ink);
    font-size: 13px
}

.mx45-query-card button {
    min-width: 122px;
    border: 0;
    border-radius: 13px;
    background: var(--mx45-ink);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer
}

/* Sections */
.mx45-section {
    padding: 100px 0
}

.mx45-soft-section {
    background: var(--mx45-soft)
}

.mx45-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 42px
}

.mx45-section-head h2 {
    max-width: 780px;
    margin: 12px 0 0;
    color: var(--mx45-ink);
    font-size: 43px;
    line-height: 1.08;
    letter-spacing: -.052em
}

.mx45-section-head>a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--mx45-orange);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap
}

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

.mx45-service-grid article {
    position: relative;
    min-height: 315px;
    padding: 28px;
    border: 1px solid var(--mx45-line);
    border-radius: 26px;
    background: #fff;
    transition: .25s
}

.mx45-service-grid article:hover {
    transform: translateY(-5px);
    border-color: #ffd8bd;
    box-shadow: 0 25px 56px rgba(15,23,42,.09)
}

.mx45-service-no {
    position: absolute;
    right: 25px;
    top: 22px;
    color: #b4bdc8;
    font-size: 9px;
    font-weight: 950
}

.mx45-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--mx45-ink);
    display: grid;
    place-items: center
}

.mx45-service-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

.mx45-service-grid h3 {
    margin: 45px 0 12px;
    color: var(--mx45-ink);
    font-size: 22px;
    letter-spacing: -.035em
}

.mx45-service-grid p {
    margin: 0;
    color: #748091;
    font-size: 12px;
    line-height: 1.72
}

.mx45-service-grid a {
    position: absolute;
    left: 28px;
    bottom: 27px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--mx45-orange);
    font-size: 10px;
    font-weight: 900
}

.mx45-dark-section {
    padding: 104px 0;
    background: linear-gradient(135deg,#0b1119,#141d28);
    color: #fff
}

.mx45-process-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 90px
}

.mx45-process-copy h2 {
    margin: 14px 0 19px;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -.055em
}

.mx45-process-copy p {
    max-width: 500px;
    color: #98a3b2;
    font-size: 14px;
    line-height: 1.78
}

.mx45-process-copy a,.mx45-mission-grid a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    color: #ff9b59;
    font-size: 11px;
    font-weight: 900
}

.mx45-process-grid ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.mx45-process-grid li {
    min-height: 160px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 23px;
    background: rgba(255,255,255,.035);
    display: flex;
    gap: 17px;
    transition: .2s
}

.mx45-process-grid li:hover {
    background: rgba(255,255,255,.065);
    transform: translateY(-3px)
}

.mx45-process-grid li>b {
    color: var(--mx45-orange);
    font-size: 11px
}

.mx45-process-grid h3,.mx45-process-grid strong {
    display: block;
    font-size: 16px
}

.mx45-process-grid li p {
    margin: 9px 0 0;
    color: #8f9baa;
    font-size: 11px;
    line-height: 1.65
}

.mx45-package-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px
}

.mx45-package-grid>article {
    min-height: 370px;
    padding: 29px;
    border: 1px solid #e1e6eb;
    border-radius: 29px;
    background: #fff;
    display: flex;
    flex-direction: column
}

.mx45-package-grid>article.featured {
    background: linear-gradient(145deg,#0c121b,#17202b);
    color: #fff;
    border-color: #17202b;
    transform: translateY(-8px);
    box-shadow: 0 27px 65px rgba(15,23,42,.18)
}

.mx45-package-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mx45-package-top span {
    color: var(--mx45-orange);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .16em
}

.mx45-package-top small {
    color: #8d97a5;
    font-size: 8px
}

.mx45-package-grid h3,.mx45-package-grid h2 {
    margin: 30px 0 12px;
    color: inherit;
    font-size: 25px;
    letter-spacing: -.04em
}

.mx45-package-grid p {
    min-height: 65px;
    margin: 0;
    color: #788494;
    font-size: 12px;
    line-height: 1.72
}

.mx45-package-grid .featured p {
    color: #9fa9b7
}

.mx45-package-grid>article>strong {
    margin-top: auto;
    color: inherit;
    font-size: 31px;
    letter-spacing: -.045em
}

.mx45-package-grid>article>a {
    height: 49px;
    margin-top: 21px;
    padding: 0 16px;
    border-radius: 14px;
    background: #f1f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 900
}

.mx45-package-grid .featured>a {
    background: var(--mx45-orange);
    color: #fff
}

.mx45-why-section {
    padding: 105px 0
}

.mx45-why-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 90px;
    align-items: center
}

.mx45-why-grid h2 {
    margin: 14px 0 20px;
    color: var(--mx45-ink);
    font-size: 45px;
    line-height: 1.07;
    letter-spacing: -.052em
}

.mx45-why-grid>div>p {
    max-width: 540px;
    color: #717d8c;
    font-size: 14px;
    line-height: 1.8
}

.mx45-why-grid .mx45-btn {
    margin-top: 20px
}

.mx45-why-cards {
    display: grid;
    gap: 11px
}

.mx45-why-cards article {
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--mx45-line);
    border-radius: 20px;
    background: #fff
}

.mx45-why-cards article>b {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #fff0e6;
    color: var(--mx45-orange);
    display: grid;
    place-items: center;
    font-size: 10px
}

.mx45-why-cards span {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.mx45-why-cards strong {
    color: var(--mx45-ink);
    font-size: 15px
}

.mx45-why-cards small {
    color: #7e8997;
    font-size: 10px
}

.mx45-final-cta {
    padding: 34px 0 60px;
    background: var(--mx45-soft)
}

.mx45-final-cta>.site-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 44px;
    border-radius: 30px;
    background: linear-gradient(120deg,#ff6500,#ff8135);
    color: #fff;
    box-shadow: 0 24px 58px rgba(255,101,0,.20)
}

.mx45-final-cta span {
    color: rgba(255,255,255,.72)
}

.mx45-final-cta h2 {
    max-width: 760px;
    margin: 9px 0 0;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -.045em
}

.mx45-final-cta a {
    height: 54px;
    padding: 0 22px;
    border-radius: 15px;
    background: #fff;
    color: var(--mx45-ink);
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap
}

/* Page hero + inner pages */
.mx45-page-hero {
    position: relative;
    padding: 75px 0 68px;
    background: radial-gradient(circle at 86% 20%,rgba(255,101,0,.13),transparent 30%),linear-gradient(135deg,#0a1018,#17212d);
    color: #fff;
    overflow: hidden
}

.mx45-page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg,#000,transparent)
}

.mx45-page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr) 320px;
    align-items: end;
    gap: 80px
}

.mx45-page-hero h1 {
    max-width: 850px;
    margin: 17px 0 18px;
    font-size: 53px;
    line-height: 1.02;
    letter-spacing: -.058em
}

.mx45-page-hero p {
    max-width: 760px;
    margin: 0;
    color: #a8b2c0;
    font-size: 15px;
    line-height: 1.77
}

.mx45-page-hero aside {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 13px 14px;
    padding: 21px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 23px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(12px)
}

.mx45-page-hero aside b {
    color: #fff;
    font-size: 18px;
    letter-spacing: -.03em
}

.mx45-page-hero aside span {
    color: #9ea9b7;
    font-size: 10px
}

.mx45-detail-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.mx45-detail-service-grid article {
    padding: 30px;
    border: 1px solid var(--mx45-line);
    border-radius: 25px;
    background: #fff
}

.mx45-detail-service-grid header {
    display: flex;
    align-items: center;
    gap: 16px
}

.mx45-detail-service-grid header>span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff0e5;
    color: var(--mx45-orange);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 950
}

.mx45-detail-service-grid h2 {
    margin: 0;
    color: var(--mx45-ink);
    font-size: 22px;
    letter-spacing: -.035em
}

.mx45-detail-service-grid p {
    margin: 20px 0;
    color: #707c8c;
    font-size: 13px;
    line-height: 1.72
}

.mx45-detail-service-grid ul,.mx45-package-detail ul,.mx45-contact-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px
}

.mx45-detail-service-grid li,.mx45-package-detail li,.mx45-contact-panel li {
    position: relative;
    padding-left: 20px;
    color: #505c6b;
    font-size: 11px
}

.mx45-detail-service-grid li:before,.mx45-contact-panel li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mx45-orange);
    box-shadow: 0 0 0 4px rgba(255,101,0,.09)
}

.mx45-info-band {
    padding: 58px 0;
    background: var(--mx45-ink);
    color: #fff
}

.mx45-info-band>.site-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px
}

.mx45-info-band h2 {
    max-width: 790px;
    margin: 10px 0 0;
    font-size: 33px;
    line-height: 1.1;
    letter-spacing: -.045em
}

.mx45-info-band a {
    height: 52px;
    padding: 0 21px;
    border-radius: 14px;
    background: #fff;
    color: var(--mx45-ink);
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap
}

.mx45-package-detail>article {
    min-height: 560px
}

.mx45-package-detail ul {
    margin: 24px 0
}

.mx45-package-detail li {
    padding-left: 0;
    display: flex;
    gap: 9px;
    color: #657180
}

.mx45-package-detail li i {
    font-style: normal;
    color: #10a56b
}

.mx45-package-detail .featured li {
    color: #b0bac7
}

.mx45-comparison {
    padding: 92px 0;
    background: #fff
}

.mx45-comparison-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px
}

.mx45-comparison-grid h2 {
    margin: 13px 0 0;
    color: var(--mx45-ink);
    font-size: 41px;
    line-height: 1.08;
    letter-spacing: -.05em
}

.mx45-comparison-grid>div:last-child {
    display: grid;
    gap: 10px
}

.mx45-comparison-grid article {
    padding: 23px 25px;
    border: 1px solid var(--mx45-line);
    border-radius: 20px;
    background: #fff
}

.mx45-comparison-grid article b {
    font-size: 15px;
    color: var(--mx45-ink)
}

.mx45-comparison-grid article p {
    margin: 7px 0 0;
    color: #7b8694;
    font-size: 11px
}

.mx45-about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start
}

.mx45-about-copy h2 {
    margin: 14px 0 20px;
    color: var(--mx45-ink);
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -.052em
}

.mx45-about-copy p {
    color: #707c8b;
    font-size: 14px;
    line-height: 1.82
}

.mx45-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.mx45-values article {
    min-height: 220px;
    padding: 25px;
    border: 1px solid var(--mx45-line);
    border-radius: 23px;
    background: #fff
}

.mx45-values article>b {
    color: var(--mx45-orange);
    font-size: 10px
}

.mx45-values h3 {
    margin: 35px 0 10px;
    color: var(--mx45-ink);
    font-size: 19px
}

.mx45-values p {
    margin: 0;
    color: #758090;
    font-size: 11px;
    line-height: 1.7
}

.mx45-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.mx45-mission-grid h2 {
    margin: 14px 0 0;
    font-size: 43px;
    line-height: 1.08;
    letter-spacing: -.052em
}

.mx45-mission-grid p {
    color: #a0abba;
    font-size: 14px;
    line-height: 1.8
}

.mx45-standard-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

.mx45-standard-grid article {
    padding: 27px;
    border: 1px solid var(--mx45-line);
    border-radius: 22px;
    background: #fff
}

.mx45-standard-grid strong {
    color: var(--mx45-ink);
    font-size: 17px
}

.mx45-standard-grid p {
    margin: 10px 0 0;
    color: #7a8594;
    font-size: 11px;
    line-height: 1.7
}

.mx45-timeline {
    position: relative;
    display: grid;
    gap: 0
}

.mx45-timeline:before {
    content: "";
    position: absolute;
    left: 45px;
    top: 35px;
    bottom: 35px;
    width: 1px;
    background: #dfe4e9
}

.mx45-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    padding: 24px 0
}

.mx45-timeline article>b {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 19px;
    background: var(--mx45-ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    box-shadow: 0 9px 22px rgba(15,23,42,.16)
}

.mx45-timeline article>div {
    padding: 24px 27px;
    border: 1px solid var(--mx45-line);
    border-radius: 22px;
    background: #fff
}

.mx45-timeline span {
    color: var(--mx45-orange);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .15em
}

.mx45-timeline h2 {
    margin: 8px 0;
    color: var(--mx45-ink);
    font-size: 23px
}

.mx45-timeline p {
    margin: 0;
    color: #778291;
    font-size: 12px;
    line-height: 1.7
}

.mx45-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.mx45-contact-cards {
    display: grid;
    gap: 12px
}

.mx45-contact-cards>a,.mx45-contact-cards>div {
    min-height: 135px;
    padding: 22px;
    border: 1px solid var(--mx45-line);
    border-radius: 22px;
    background: #fff;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 17px;
    align-items: center;
    transition: .2s
}

.mx45-contact-cards>a:hover {
    transform: translateY(-3px);
    border-color: #ffd7bc;
    box-shadow: 0 18px 40px rgba(15,23,42,.08)
}

.mx45-contact-cards i {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: #fff0e6;
    display: grid;
    place-items: center
}

.mx45-contact-cards svg {
    width: 25px;
    height: 25px;
    fill: var(--mx45-orange)
}

.mx45-contact-cards span {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.mx45-contact-cards small {
    color: #9aa4b1;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em
}

.mx45-contact-cards strong {
    color: var(--mx45-ink);
    font-size: 15px;
    line-height: 1.4
}

.mx45-contact-cards em {
    color: var(--mx45-orange);
    font-style: normal;
    font-size: 9px;
    font-weight: 900
}

.mx45-contact-panel {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(145deg,#0b1119,#18222f);
    color: #fff
}

.mx45-contact-panel h2 {
    margin: 14px 0 15px;
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -.05em
}

.mx45-contact-panel p {
    color: #9eabba;
    font-size: 13px;
    line-height: 1.75
}

.mx45-contact-panel ul {
    margin: 27px 0
}

.mx45-contact-panel li {
    color: #c1c8d2
}

.mx45-contact-panel>a {
    height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--mx45-orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 900
}

/* Booking page restyle */
.site-v45 .booking-page-v4 {
    padding: 68px 0 95px;
    background: linear-gradient(180deg,#f7f9fb,#fff)
}

.site-v45 .public-shell {
    width: min(1180px,calc(100% - 40px));
    margin: auto
}

.site-v45 .booking-layout-v4 {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 22px;
    align-items: start
}

.site-v45 .booking-intro-v4 {
    position: sticky;
    top: 145px;
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(145deg,#0b1119,#17212d);
    color: #fff
}

.site-v45 .booking-intro-v4 .eyebrow {
    color: #ff914a;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .17em
}

.site-v45 .booking-intro-v4 h1 {
    margin: 16px 0 17px;
    font-size: 39px;
    line-height: 1.06;
    letter-spacing: -.052em
}

.site-v45 .booking-intro-v4>p {
    color: #9ea9b8;
    font-size: 13px;
    line-height: 1.76
}

.site-v45 .booking-benefits-v4 {
    display: grid;
    gap: 10px;
    margin-top: 30px
}

.site-v45 .booking-benefits-v4 article {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 13px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 17px;
    background: rgba(255,255,255,.035)
}

.site-v45 .booking-benefits-v4 article>b {
    color: #ff8e46;
    font-size: 9px
}

.site-v45 .booking-benefits-v4 article div {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.site-v45 .booking-benefits-v4 strong {
    font-size: 12px
}

.site-v45 .booking-benefits-v4 small {
    color: #8f9baa;
    font-size: 9px;
    line-height: 1.55
}

.site-v45 .booking-contact-v4 {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
    display: flex;
    flex-direction: column;
    gap: 5px
}

.site-v45 .booking-contact-v4 span {
    color: #74808f;
    font-size: 8px;
    letter-spacing: .14em
}

.site-v45 .booking-contact-v4 strong {
    font-size: 18px
}

.site-v45 .booking-contact-v4 small {
    color: #8f9baa
}

.site-v45 .booking-form-card-v4 {
    padding: 34px;
    border: 1px solid var(--mx45-line);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 23px 60px rgba(15,23,42,.08)
}

.site-v45 .booking-form-head-v4>span {
    color: var(--mx45-orange);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .16em
}

.site-v45 .booking-form-head-v4 h2 {
    margin: 9px 0 7px;
    color: var(--mx45-ink);
    font-size: 29px;
    letter-spacing: -.045em
}

.site-v45 .booking-form-head-v4 p {
    margin: 0;
    color: #7d8896;
    font-size: 11px
}

.site-v45 .booking-form-v4 {
    display: grid;
    gap: 17px;
    margin-top: 26px
}

.site-v45 .booking-form-v4>section {
    padding: 22px;
    border: 1px solid var(--mx45-line);
    border-radius: 21px;
    background: #fbfcfd
}

.site-v45 .booking-step-v4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px
}

.site-v45 .booking-step-v4>b {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff0e5;
    color: var(--mx45-orange);
    display: grid;
    place-items: center;
    font-size: 9px
}

.site-v45 .booking-step-v4>div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.site-v45 .booking-step-v4 strong {
    font-size: 13px;
    color: var(--mx45-ink)
}

.site-v45 .booking-step-v4 small {
    font-size: 9px;
    color: #8d97a4
}

.site-v45 .booking-fields-v4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.site-v45 .booking-fields-v4.cols-3 {
    grid-template-columns: repeat(3,1fr)
}

.site-v45 .booking-fields-v4 label {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.site-v45 .booking-fields-v4 label.wide {
    grid-column: 1/-1
}

.site-v45 .booking-fields-v4 label>span {
    font-size: 10px;
    font-weight: 800;
    color: #4f5a69
}

.site-v45 .booking-fields-v4 input,.site-v45 .booking-fields-v4 select,.site-v45 .booking-fields-v4 textarea {
    width: 100%;
    border: 1px solid #dce2e8;
    border-radius: 13px;
    background: #fff;
    outline: 0;
    color: var(--mx45-ink);
    transition: .2s
}

.site-v45 .booking-fields-v4 input,.site-v45 .booking-fields-v4 select {
    height: 48px;
    padding: 0 13px
}

.site-v45 .booking-fields-v4 textarea {
    padding: 13px;
    resize: vertical
}

.site-v45 .booking-fields-v4 input:focus,.site-v45 .booking-fields-v4 select:focus,.site-v45 .booking-fields-v4 textarea:focus {
    border-color: #ff9a59;
    box-shadow: 0 0 0 4px rgba(255,101,0,.08)
}

.site-v45 .booking-package-options-v4 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px
}

.site-v45 .booking-package-options-v4 label input {
    position: absolute;
    opacity: 0
}

.site-v45 .booking-package-options-v4 label>span {
    min-height: 145px;
    padding: 16px;
    border: 1px solid #dfe4e9;
    border-radius: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer
}

.site-v45 .booking-package-options-v4 label input:checked+span {
    border-color: var(--mx45-orange);
    box-shadow: 0 0 0 3px rgba(255,101,0,.08)
}

.site-v45 .booking-package-options-v4 b {
    font-size: 12px;
    color: var(--mx45-ink)
}

.site-v45 .booking-package-options-v4 small {
    margin: 8px 0;
    color: #83909f;
    font-size: 9px;
    line-height: 1.55
}

.site-v45 .booking-package-options-v4 strong {
    margin-top: auto;
    color: var(--mx45-orange);
    font-size: 15px
}

.site-v45 .booking-consent-v4 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #727e8d;
    font-size: 10px;
    line-height: 1.55
}

.site-v45 .booking-submit-v4 {
    height: 55px;
    border: 0;
    border-radius: 15px;
    background: var(--mx45-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(255,101,0,.18)
}

.site-v45 .booking-error-v4 {
    padding: 13px 15px;
    border-radius: 13px;
    background: #fff0ef;
    color: #9c322d;
    font-size: 11px
}

.site-v45 .booking-success-v4 {
    text-align: center;
    padding: 55px 20px
}

.site-v45 .booking-success-v4>i {
    width: 68px;
    height: 68px;
    margin: auto;
    border-radius: 22px;
    background: #e7f8ef;
    color: #0c9a61;
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 28px
}

.site-v45 .booking-success-v4>span {
    display: block;
    margin-top: 22px;
    color: #0c9a61;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .16em
}

.site-v45 .booking-success-v4 h2 {
    font-size: 31px
}

.site-v45 .booking-success-v4 p {
    color: #74808f;
    line-height: 1.7
}

.site-v45 .booking-success-v4 a {
    color: var(--mx45-orange);
    font-weight: 900
}

.site-v45 .booking-hp {
    position: absolute!important;
    left: -9999px!important
}

/* Footer */
.mx45-footer {
    padding-top: 70px;
    background: #080e15;
    color: #fff
}

.mx45-footer-top {
    display: grid;
    grid-template-columns: 1.55fr .8fr .8fr 1.1fr;
    gap: 55px;
    padding-bottom: 55px
}

.mx45-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 18px
}

.mx45-footer-logo {
    width: 76px;
    height: 76px;
    flex: none;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.15);
    overflow: hidden
}

.mx45-footer-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: transparent
}

.mx45-footer-brand>div {
    display: flex;
    flex-direction: column
}

.mx45-footer-brand strong {
    font-size: 18px
}

.mx45-footer-brand p {
    max-width: 330px;
    margin: 9px 0 0;
    color: #8d98a6;
    font-size: 11px;
    line-height: 1.7
}

.mx45-footer-links,.mx45-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.mx45-footer-links>b,.mx45-footer-contact>b {
    margin-bottom: 8px;
    color: #667281;
    font-size: 8px;
    letter-spacing: .17em
}

.mx45-footer-links a,.mx45-footer-contact a,.mx45-footer-contact span {
    color: #c0c8d2;
    font-size: 11px;
    line-height: 1.55
}

.mx45-footer-links a:hover,.mx45-footer-contact a:hover {
    color: #ff9650
}

.mx45-footer-contact .mx45-footer-book {
    display: inline-flex;
    width: max-content;
    margin-top: 7px;
    color: #ff9650;
    font-weight: 900
}

.mx45-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.075)
}

.mx45-footer-bottom>.site-shell {
    min-height: 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #687482;
    font-size: 9px
}

.mx45-footer-bottom>div>div {
    display: flex;
    gap: 22px
}

.mx45-footer-bottom a {
    color: #aab3bf
}

/* Responsive */
@media(max-width: 1180px) {
    .mx45-header-bar {
        grid-template-columns:minmax(0,1fr) 102px minmax(0,1fr)
    }

    .mx45-logo {
        width: 86px;
        height: 86px
    }

    .mx45-logo img {
        width: 71px;
        height: 71px
    }

    .mx45-nav>a {
        padding-inline:11px;font-size: 11px
    }

    .mx45-nav .mx45-book-link {
        padding-inline:15px}

    .mx45-hero-grid {
        grid-template-columns: 1fr 455px;
        gap: 50px
    }

    .mx45-hero h1 {
        font-size: 59px
    }

    .mx45-float-card.one {
        left: -18px
    }

    .mx45-float-card.two {
        right: -15px
    }

    .mx45-footer-top {
        grid-template-columns: 1.4fr 1fr 1fr
    }

    .mx45-footer-contact {
        grid-column: 2/4
    }

    .mx45-page-hero-grid {
        grid-template-columns: 1fr 280px;
        gap: 50px
    }
}

@media(max-width: 1020px) {
    .mx45-main {
        padding-top:105px
    }

    .mx45-header {
        padding-top: 14px
    }

    .mx45-header-bar {
        grid-template-columns: 52px 1fr 52px;
        min-height: 72px;
        padding: 0 9px
    }

    .mx45-nav {
        display: none
    }

    .mx45-logo {
        grid-column: 2;
        grid-row: 1;
        width: 78px;
        height: 78px;
        margin-block:-3px}

    .mx45-logo img {
        width: 65px;
        height: 65px
    }

    .mx45-mobile-report,.mx45-menu-button {
        display: grid;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid #e0e5ea;
        background: #fff;
        place-items: center;
        cursor: pointer
    }

    .mx45-mobile-report {
        grid-column: 1;
        grid-row: 1
    }

    .mx45-mobile-report svg {
        width: 21px;
        height: 21px;
        fill: var(--mx45-ink)
    }

    .mx45-menu-button {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        background: var(--mx45-ink);
        border-color: var(--mx45-ink);
        padding: 0;
        align-content: center;
        gap: 4px
    }

    .mx45-menu-button span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 3px;
        background: #fff
    }

    .mx45-mobile-menu {
        position: fixed;
        top: 94px;
        left: 20px;
        right: 20px;
        z-index: 499;
        display: grid;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--mx45-line);
        border-radius: 25px;
        background: #fff;
        box-shadow: 0 28px 75px rgba(15,23,42,.19);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .22s
    }

    .mx45-mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    .mx45-mobile-menu a {
        min-height: 48px;
        padding: 0 16px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        color: #27313e;
        font-size: 12px;
        font-weight: 800
    }

    .mx45-mobile-menu a:hover {
        background: #f4f6f8
    }

    .mx45-mobile-menu a.primary {
        background: var(--mx45-orange);
        color: #fff
    }

    .mx45-mobile-menu a.subtle {
        color: #87919e;
        font-size: 10px
    }

    .mx45-hero {
        padding: 62px 0 85px
    }

    .mx45-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .mx45-hero-copy {
        text-align: center
    }

    .mx45-eyebrow {
        justify-content: center
    }

    .mx45-hero h1,.mx45-hero-copy>p {
        margin-inline:auto}

    .mx45-hero-actions,.mx45-trust-row {
        justify-content: center
    }

    .mx45-hero-visual {
        max-width: 620px;
        width: 100%;
        margin: auto;
        transform: none
    }

    .mx45-query-card {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .mx45-service-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .mx45-process-grid,.mx45-why-grid,.mx45-about-grid,.mx45-mission-grid,.mx45-comparison-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .mx45-package-grid {
        grid-template-columns: 1fr 1fr
    }

    .mx45-package-grid>article.featured {
        transform: none
    }

    .mx45-page-hero-grid {
        grid-template-columns: 1fr
    }

    .mx45-page-hero aside {
        max-width: 520px
    }

    .mx45-contact-grid {
        grid-template-columns: 1fr
    }

    .site-v45 .booking-layout-v4 {
        grid-template-columns: 1fr
    }

    .site-v45 .booking-intro-v4 {
        position: relative;
        top: auto
    }

    .mx45-footer-top {
        grid-template-columns: 1.4fr 1fr 1fr
    }

    .mx45-footer-contact {
        grid-column: auto
    }
}

@media(max-width: 720px) {
    .site-v45 .site-shell,.site-v45 .public-shell {
        width:min(100% - 24px,1220px)
    }

    .mx45-main {
        padding-top: 92px
    }

    .mx45-header {
        padding-top: 9px
    }

    .mx45-header-bar {
        min-height: 66px
    }

    .mx45-logo {
        width: 72px;
        height: 72px
    }

    .mx45-logo img {
        width: 59px;
        height: 59px
    }

    .mx45-mobile-report,.mx45-menu-button {
        width: 43px;
        height: 43px
    }

    .mx45-mobile-menu {
        top: 82px;
        left: 12px;
        right: 12px
    }

    .mx45-hero {
        padding: 47px 0 74px
    }

    .mx45-hero h1 {
        font-size: 43px;
        line-height: 1.01
    }

    .mx45-hero-copy>p {
        font-size: 14px;
        line-height: 1.72
    }

    .mx45-hero-actions {
        display: grid
    }

    .mx45-btn {
        width: 100%
    }

    .mx45-trust-row {
        margin-top: 36px
    }

    .mx45-trust-row>div {
        min-width: 0;
        flex: 1;
        padding: 0 11px
    }

    .mx45-trust-row strong {
        font-size: 20px
    }

    .mx45-trust-row span {
        font-size: 8px
    }

    .mx45-hero-visual {
        min-height: auto;
        padding: 11px;
        border-radius: 28px
    }

    .mx45-report-preview {
        padding: 12px
    }

    .mx45-preview-car {
        padding: 18px
    }

    .mx45-preview-car strong {
        font-size: 17px
    }

    .mx45-float-card {
        display: none
    }

    .mx45-query-section {
        margin-top: -30px
    }

    .mx45-query-card {
        padding: 23px;
        border-radius: 23px
    }

    .mx45-query-card h2 {
        font-size: 22px
    }

    .mx45-query-card form {
        grid-template-columns: 1fr
    }

    .mx45-query-card button {
        height: 47px
    }

    .mx45-section {
        padding: 70px 0
    }

    .mx45-section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px
    }

    .mx45-section-head h2 {
        font-size: 32px
    }

    .mx45-service-grid,.mx45-package-grid,.mx45-detail-service-grid,.mx45-values,.mx45-standard-grid {
        grid-template-columns: 1fr
    }

    .mx45-service-grid article {
        min-height: 285px
    }

    .mx45-dark-section {
        padding: 72px 0
    }

    .mx45-process-copy h2,.mx45-why-grid h2,.mx45-about-copy h2,.mx45-mission-grid h2,.mx45-comparison-grid h2 {
        font-size: 33px
    }

    .mx45-process-grid ol {
        grid-template-columns: 1fr
    }

    .mx45-process-grid li {
        min-height: 125px
    }

    .mx45-package-grid>article {
        min-height: 340px
    }

    .mx45-why-section {
        padding: 72px 0
    }

    .mx45-final-cta {
        padding: 20px 0 35px
    }

    .mx45-final-cta>.site-shell,.mx45-info-band>.site-shell {
        padding: 28px 22px;
        border-radius: 24px;
        align-items: flex-start;
        flex-direction: column
    }

    .mx45-final-cta h2,.mx45-info-band h2 {
        font-size: 28px
    }

    .mx45-final-cta a,.mx45-info-band a {
        width: 100%;
        justify-content: space-between
    }

    .mx45-page-hero {
        padding: 53px 0 48px
    }

    .mx45-page-hero h1 {
        font-size: 38px
    }

    .mx45-page-hero p {
        font-size: 13px
    }

    .mx45-page-hero aside {
        grid-template-columns: auto 1fr;
        width: 100%
    }

    .mx45-package-detail>article {
        min-height: 500px
    }

    .mx45-timeline:before {
        left: 27px
    }

    .mx45-timeline article {
        grid-template-columns: 56px 1fr;
        gap: 10px
    }

    .mx45-timeline article>b {
        width: 54px;
        height: 54px
    }

    .mx45-timeline article>div {
        padding: 20px
    }

    .site-v45 .booking-page-v4 {
        padding: 45px 0 70px
    }

    .site-v45 .booking-intro-v4,.site-v45 .booking-form-card-v4 {
        padding: 24px;
        border-radius: 24px
    }

    .site-v45 .booking-intro-v4 h1 {
        font-size: 31px
    }

    .site-v45 .booking-fields-v4,.site-v45 .booking-fields-v4.cols-3,.site-v45 .booking-package-options-v4 {
        grid-template-columns: 1fr
    }

    .site-v45 .booking-form-v4>section {
        padding: 17px
    }

    .site-v45 .booking-fields-v4 input,.site-v45 .booking-fields-v4 select,.site-v45 .booking-fields-v4 textarea {
        font-size: 16px
    }

    .mx45-footer {
        padding-top: 50px
    }

    .mx45-footer-top {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .mx45-footer-brand {
        align-items: center
    }

    .mx45-footer-contact {
        grid-column: auto
    }

    .mx45-footer-bottom>.site-shell {
        padding: 19px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 9px
    }

    .mx45-footer-bottom>div>div {
        flex-direction: column;
        gap: 6px
    }
}

@media(max-width: 420px) {
    .mx45-hero h1 {
        font-size:38px
    }

    .mx45-preview-items article {
        grid-template-columns: 31px 1fr 26px;
        gap: 8px;
        padding: 9px
    }

    .mx45-preview-car>b {
        font-size: 28px
    }

    .mx45-page-hero h1 {
        font-size: 34px
    }

    .mx45-contact-cards>a,.mx45-contact-cards>div {
        grid-template-columns: 46px 1fr;
        padding: 18px
    }

    .mx45-contact-cards i {
        width: 45px;
        height: 45px
    }
}

.site-v45.menu-open {
    overflow: hidden
}

.mx45-header a,.mx45-header button {
    touch-action: manipulation
}

/* =====================================================
   V4.6 — Istanbul service hero, larger flat header,
   report verification center and draft recovery
   ===================================================== */
.site-v46 {
    --mx46-orange: #ff6500;
    --mx46-ink: #0b1119;
    --mx46-muted: #667386;
    --mx46-line: #e3e8ee;
    --mx46-soft: #f5f7f9
}

.site-v46 .mx46-main {
    padding-top: 132px
}

.site-v46 .mx46-header {
    padding-top: 18px;
    background: linear-gradient(180deg,#fff 0,rgba(255,255,255,.97) 72%,rgba(255,255,255,0) 100%)
}

.site-v46 .mx46-header-bar {
    grid-template-columns: minmax(0,1fr) 138px minmax(0,1fr);
    min-height: 88px;
    padding: 0 20px;
    border-color: #e4e8ed;
    background: #fff;
    box-shadow: 0 10px 34px rgba(15,23,42,.065)
}

.site-v46 .mx45-nav-left {
    padding-right: 25px
}

.site-v46 .mx45-nav-right {
    padding-left: 25px
}

.site-v46 .mx45-nav>a {
    min-height: 46px;
    padding-inline:17px;font-size: 12px;
    transition: background .18s,color .18s
}

.site-v46 .mx45-nav>a:hover {
    transform: none;
    box-shadow: none
}

.site-v46 .mx45-nav .mx45-book-link {
    box-shadow: none
}

.site-v46 .mx46-logo {
    width: 116px;
    height: 116px;
    margin-block:-14px;border: 8px solid #fff;
    background: #fff;
    box-shadow: none;
    transition: none
}

.site-v46 .mx46-logo:hover {
    transform: none;
    box-shadow: none
}

.site-v46 .mx46-logo img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    background: transparent
}

.mx46-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 68px;
    background: radial-gradient(circle at 83% 8%,rgba(255,101,0,.10),transparent 30%),linear-gradient(180deg,#fff 0,#f8fafb 100%)
}

.mx46-hero:before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(15,23,42,.045)
}

.mx46-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,.92fr) minmax(530px,1.08fr);
    align-items: center;
    gap: 70px
}

.mx46-hero-copy h1 {
    max-width: 680px;
    margin: 24px 0 24px;
    color: var(--mx46-ink);
    font-size: 68px;
    line-height: .98;
    letter-spacing: -.067em
}

.mx46-hero-copy h1 em {
    font-style: normal;
    color: var(--mx46-orange)
}

.mx46-hero-copy>p {
    max-width: 650px;
    margin: 0;
    color: #697688;
    font-size: 17px;
    line-height: 1.75
}

.mx46-live-line {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 11px;
    padding: 13px 16px;
    border: 1px solid #e1e6ec;
    border-radius: 16px;
    background: #fff;
    width: max-content;
    max-width: 100%
}

.mx46-live-line>span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #168c5c;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .13em
}

.mx46-live-line>span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22bd76;
    box-shadow: 0 0 0 5px rgba(34,189,118,.10)
}

.mx46-live-line strong {
    min-width: 150px;
    color: var(--mx46-ink);
    font-size: 11px;
    transition: opacity .18s
}

.mx46-live-line strong.is-changing {
    opacity: .25
}

.mx46-live-line small {
    color: #8a95a4;
    font-size: 10px
}

.mx46-hero-facts {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 34px;
    border-top: 1px solid #e3e7ec;
    border-bottom: 1px solid #e3e7ec
}

.mx46-hero-facts article {
    padding: 20px 17px;
    border-right: 1px solid #e3e7ec
}

.mx46-hero-facts article:first-child {
    padding-left: 0
}

.mx46-hero-facts article:last-child {
    border: 0
}

.mx46-hero-facts b {
    display: block;
    color: var(--mx46-ink);
    font-size: 25px;
    letter-spacing: -.05em
}

.mx46-hero-facts span {
    display: block;
    margin-top: 4px;
    color: #8994a2;
    font-size: 9px
}

.mx46-hero-command {
    position: relative;
    padding: 14px;
    border-radius: 34px;
    background: #0c121b;
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 30px 75px rgba(12,18,27,.22)
}

.mx46-command-head,.mx46-command-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 9px 17px
}

.mx46-command-head>div {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.mx46-command-head span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8995a5;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .14em
}

.mx46-command-head span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #26cf83
}

.mx46-command-head strong {
    font-size: 14px
}

.mx46-command-head em {
    font-style: normal;
    color: #25d486;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .12em
}

.mx46-command-body {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 10px
}

.mx46-map-card,.mx46-operation-card {
    border-radius: 23px;
    background: #fff;
    color: var(--mx46-ink);
    overflow: hidden
}

.mx46-map-card {
    padding: 19px
}

.mx46-map-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.mx46-map-title div {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.mx46-map-title small,.mx46-op-top span {
    color: var(--mx46-orange);
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .13em
}

.mx46-map-title strong {
    font-size: 15px
}

.mx46-map-title>span {
    padding: 7px 9px;
    border-radius: 999px;
    background: #fff0e6;
    color: var(--mx46-orange);
    font-size: 8px;
    font-weight: 900
}

.mx46-istanbul-map {
    position: relative;
    height: 205px;
    margin-top: 11px;
    border-radius: 18px;
    background: linear-gradient(180deg,#f7fafc,#edf3f6);
    overflow: hidden
}

.mx46-istanbul-map svg {
    width: 100%;
    height: 100%
}

.mx46-istanbul-map .land {
    fill: #fff;
    stroke: #ccd5df;
    stroke-width: 2
}

.mx46-istanbul-map .water {
    fill: none;
    stroke: #9fd4e8;
    stroke-width: 6;
    stroke-linecap: round
}

.mx46-istanbul-map .route {
    fill: none;
    stroke: #ff9c59;
    stroke-width: 2.5;
    stroke-dasharray: 6 8;
    opacity: .9
}

.mx46-istanbul-map .pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4e5a69;
    font-size: 7px;
    font-weight: 900
}

.mx46-istanbul-map .pin i {
    width: 10px;
    height: 10px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--mx46-orange);
    box-shadow: 0 3px 8px rgba(15,23,42,.18)
}

.mx46-istanbul-map .p1 {
    left: 21%;
    top: 38%
}

.mx46-istanbul-map .p2 {
    right: 12%;
    top: 48%
}

.mx46-istanbul-map .p3 {
    left: 51%;
    top: 57%
}

.mx46-map-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px
}

.mx46-map-districts span {
    padding: 6px 8px;
    border: 1px solid #e5e9ed;
    border-radius: 999px;
    color: #778290;
    font-size: 7px;
    font-weight: 800
}

.mx46-operation-card {
    padding: 17px;
    display: flex;
    flex-direction: column
}

.mx46-op-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.mx46-op-top b {
    font-size: 11px
}

.mx46-op-row {
    display: grid;
    grid-template-columns: 29px 1fr 25px;
    align-items: center;
    gap: 8px;
    padding: 11px 0;
    border-top: 1px solid #edf0f3
}

.mx46-op-row>i {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: #fff0e7;
    color: var(--mx46-orange);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 7px;
    font-weight: 950
}

.mx46-op-row>div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.mx46-op-row strong {
    font-size: 9px
}

.mx46-op-row small {
    color: #8c97a5;
    font-size: 7px;
    line-height: 1.4
}

.mx46-op-row>em {
    font-style: normal;
    color: #10a969;
    font-size: 8px;
    font-weight: 950
}

.mx46-operation-card>a {
    margin-top: auto;
    padding-top: 14px;
    color: var(--mx46-orange);
    font-size: 8px;
    font-weight: 900;
    display: flex;
    justify-content: space-between
}

.mx46-command-footer {
    padding: 14px 7px 2px;
    color: #8d98a7;
    font-size: 7px
}

.mx46-command-footer span {
    display: flex;
    align-items: center;
    gap: 6px
}

.mx46-command-footer span i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f2b84b
}

.mx46-command-footer strong {
    color: #fff;
    font-size: 8px
}

.mx46-quick-access {
    position: relative;
    z-index: 4;
    margin-top: -24px;
    padding-bottom: 20px
}

.mx46-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 25px;
    padding: 25px 28px;
    border: 1px solid #e1e6eb;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(15,23,42,.085)
}

.mx46-quick-grid>div span {
    color: var(--mx46-orange);
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .14em
}

.mx46-quick-grid h2 {
    margin: 5px 0 0;
    font-size: 20px;
    letter-spacing: -.035em
}

.mx46-quick-grid form {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 5px;
    border: 1px solid #dfe4e9;
    border-radius: 14px;
    background: #f6f8f9
}

.mx46-quick-grid input {
    height: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 11px;
    font-size: 12px
}

.mx46-quick-grid button {
    border: 0;
    border-radius: 10px;
    padding: 0 17px;
    background: var(--mx46-ink);
    color: #fff;
    font-size: 9px;
    font-weight: 900
}

.mx46-quick-grid>a {
    white-space: nowrap;
    color: var(--mx46-orange);
    font-size: 9px;
    font-weight: 900
}

.mx46-uptic-band {
    min-height: 82px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.mx46-uptic-band>span {
    color: #566170;
    font-size: 7px;
    letter-spacing: .13em;
    text-transform: uppercase
}

.mx46-uptic-band a {
    display: block;
    width: 82px
}

.mx46-uptic-band img {
    display: block;
    width: 100%;
    height: auto
}

.mx46-search-hero {
    padding: 72px 0 68px;
    background: radial-gradient(circle at 88% 10%,rgba(255,101,0,.13),transparent 31%),linear-gradient(180deg,#fff,#f6f8fa)
}

.mx46-search-hero-grid {
    display: grid;
    grid-template-columns: 1fr 510px;
    align-items: center;
    gap: 85px
}

.mx46-search-copy h1 {
    margin: 23px 0 18px;
    font-size: 65px;
    line-height: 1;
    letter-spacing: -.065em
}

.mx46-search-copy h1 em {
    font-style: normal;
    color: var(--mx46-orange)
}

.mx46-search-copy>p {
    max-width: 620px;
    color: #6c7889;
    font-size: 16px;
    line-height: 1.75
}

.mx46-search-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px
}

.mx46-search-trust span {
    padding: 9px 12px;
    border: 1px solid #e0e5ea;
    border-radius: 999px;
    background: #fff;
    color: #596575;
    font-size: 9px;
    font-weight: 800
}

.mx46-search-box {
    padding: 25px;
    border: 1px solid #e1e6eb;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15,23,42,.12)
}

.mx46-search-box-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px
}

.mx46-search-box-head>div {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.mx46-search-box-head small {
    color: var(--mx46-orange);
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .14em
}

.mx46-search-box-head strong {
    font-size: 20px
}

.mx46-search-box-head>span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #e9f8f1;
    color: #0b9560;
    font-size: 7px;
    font-weight: 950
}

.mx46-search-box form {
    display: grid;
    gap: 10px
}

.mx46-search-box label {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.mx46-search-box label span {
    font-size: 9px;
    font-weight: 900;
    color: #6f7b8a
}

.mx46-search-box input {
    height: 56px;
    border: 1px solid #dce2e8;
    border-radius: 15px;
    padding: 0 16px;
    font-size: 15px;
    outline: 0
}

.mx46-search-box input:focus {
    border-color: var(--mx46-orange);
    box-shadow: 0 0 0 4px rgba(255,101,0,.08)
}

.mx46-search-box button {
    height: 55px;
    border: 0;
    border-radius: 15px;
    background: var(--mx46-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 950;
    cursor: pointer
}

.mx46-search-help {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    margin-top: 14px;
    padding: 13px;
    border-radius: 14px;
    background: #f5f7f9
}

.mx46-search-help i {
    width: 27px;
    height: 27px;
    border-radius: 9px;
    background: #fff;
    color: var(--mx46-orange);
    display: grid;
    place-items: center;
    font-style: normal;
    font-weight: 950
}

.mx46-search-help p {
    margin: 0;
    color: #7b8694;
    font-size: 8px;
    line-height: 1.55
}

.mx46-public-alert {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    padding: 11px 12px;
    border-radius: 12px;
    background: #fff0ef;
    color: #9b312b;
    font-size: 9px
}

.mx46-public-alert b {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background: #fff;
    display: grid;
    place-items: center
}

.mx46-public-alert.success {
    background: #eaf8f1;
    color: #087a4e
}

.mx46-search-stats {
    background: #0c121b;
    color: #fff
}

.mx46-search-stats>.site-shell {
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.mx46-search-stats article {
    padding: 26px 28px;
    border-right: 1px solid rgba(255,255,255,.09)
}

.mx46-search-stats article:last-child {
    border: 0
}

.mx46-search-stats strong {
    display: block;
    font-size: 25px
}

.mx46-search-stats span {
    display: block;
    margin-top: 5px;
    color: #8f9aa8;
    font-size: 9px
}

.mx46-search-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 55px
}

.mx46-search-steps {
    display: grid;
    gap: 10px
}

.mx46-search-steps article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 17px;
    padding: 19px;
    border: 1px solid #e2e7ec;
    border-radius: 18px;
    background: #fff
}

.mx46-search-steps b {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #fff0e7;
    color: var(--mx46-orange);
    display: grid;
    place-items: center
}

.mx46-search-steps div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px
}

.mx46-search-steps strong {
    font-size: 14px
}

.mx46-search-steps p {
    margin: 0;
    color: #7b8695;
    font-size: 10px;
    line-height: 1.55
}

.mx46-security-card {
    align-self: start;
    padding: 29px;
    border-radius: 25px;
    background: #0c121b;
    color: #fff
}

.mx46-security-card>span {
    color: #ff9a54;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .15em
}

.mx46-security-card h3 {
    margin: 12px 0;
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -.045em
}

.mx46-security-card p {
    color: #9aa5b2;
    font-size: 11px;
    line-height: 1.7
}

.mx46-security-card ul {
    list-style: none;
    margin: 23px 0 0;
    padding: 0;
    display: grid;
    gap: 11px
}

.mx46-security-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c4cbd4;
    font-size: 10px
}

.mx46-security-card li i {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    background: #173026;
    color: #3bdd93;
    display: grid;
    place-items: center;
    font-style: normal
}

.mx46-recent-reports {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px
}

.mx46-recent-reports article {
    position: relative;
    padding: 22px;
    border: 1px solid #e1e6eb;
    border-radius: 21px;
    background: #fff
}

.mx46-recent-reports article>div {
    display: flex;
    justify-content: space-between;
    gap: 8px
}

.mx46-recent-reports article span,.mx46-recent-reports article b {
    font-size: 8px;
    color: #8a95a3
}

.mx46-recent-reports h3 {
    margin: 25px 0 5px;
    font-size: 14px
}

.mx46-recent-reports p {
    margin: 0;
    color: #8a95a3;
    font-size: 9px
}

.mx46-recent-reports article>strong {
    position: absolute;
    right: 19px;
    bottom: 18px;
    color: var(--mx46-orange);
    font-size: 20px
}

.mx46-recent-reports article>strong small {
    font-size: 8px
}

.mx-draft-recovery {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2000;
    display: grid;
    grid-template-columns: minmax(180px,1fr) auto auto;
    align-items: center;
    gap: 9px;
    width: min(520px,calc(100% - 28px));
    padding: 13px;
    border: 1px solid #dfe4ea;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(15,23,42,.18)
}

.mx-draft-recovery>div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.mx-draft-recovery b {
    font-size: 11px;
    color: #111821
}

.mx-draft-recovery span {
    font-size: 8px;
    color: #7b8695
}

.mx-draft-recovery button {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    background: #fff;
    color: #4f5b6a;
    font-size: 8px;
    font-weight: 900;
    cursor: pointer
}

.mx-draft-recovery [data-draft-restore] {
    border-color: var(--v4-orange,#ff6500);
    background: var(--v4-orange,#ff6500);
    color: #fff
}

@media(max-width: 1180px) {
    .site-v46 .mx46-header-bar {
        grid-template-columns:minmax(0,1fr) 124px minmax(0,1fr)
    }

    .site-v46 .mx46-logo {
        width: 106px;
        height: 106px
    }

    .site-v46 .mx45-nav>a {
        padding-inline:12px;font-size: 11px
    }

    .mx46-hero-grid {
        grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr);
        gap: 42px
    }

    .mx46-hero-copy h1 {
        font-size: 58px
    }

    .mx46-command-body {
        grid-template-columns: 1fr
    }

    .mx46-operation-card {
        min-height: 245px
    }

    .mx46-quick-grid {
        grid-template-columns: 1fr 1fr
    }

    .mx46-quick-grid>a {
        grid-column: 2;
        text-align: right
    }

    .mx46-search-hero-grid {
        grid-template-columns: 1fr 460px;
        gap: 50px
    }
}

@media(max-width: 1020px) {
    .site-v46 .mx46-main {
        padding-top:112px
    }

    .site-v46 .mx46-header-bar {
        grid-template-columns: 56px 1fr 56px;
        min-height: 82px
    }

    .site-v46 .mx46-logo {
        grid-column: 2;
        grid-row: 1;
        width: 92px;
        height: 92px;
        margin-block:-5px}

    .site-v46 .mx46-logo img {
        width: 100%;
        height: 100%
    }

    .mx46-hero {
        padding-top: 55px
    }

    .mx46-hero-grid,.mx46-search-hero-grid {
        grid-template-columns: 1fr
    }

    .mx46-hero-copy,.mx46-search-copy {
        text-align: center
    }

    .mx46-hero-copy h1,.mx46-hero-copy>p,.mx46-search-copy>p {
        margin-inline:auto}

    .mx46-live-line {
        margin-inline:auto;justify-content: center
    }

    .mx46-hero-actions,.mx46-search-trust {
        justify-content: center
    }

    .mx46-hero-command {
        max-width: 720px;
        width: 100%;
        margin: auto
    }

    .mx46-command-body {
        grid-template-columns: 1.1fr .9fr
    }

    .mx46-quick-grid {
        grid-template-columns: 1fr
    }

    .mx46-quick-grid>a {
        grid-column: auto;
        text-align: left
    }

    .mx46-search-box {
        max-width: 620px;
        width: 100%;
        margin: auto
    }

    .mx46-search-stats>.site-shell {
        grid-template-columns: repeat(2,1fr)
    }

    .mx46-search-stats article:nth-child(2) {
        border-right: 0
    }

    .mx46-search-layout {
        grid-template-columns: 1fr
    }

    .mx46-security-card {
        max-width: 620px
    }

    .mx46-recent-reports {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width: 720px) {
    .site-v46 .mx46-main {
        padding-top:98px
    }

    .site-v46 .mx46-header {
        padding-top: 8px
    }

    .site-v46 .mx46-header-bar {
        min-height: 74px
    }

    .site-v46 .mx46-logo {
        width: 82px;
        height: 82px;
        border-width: 6px
    }

    .mx46-hero {
        padding: 44px 0 58px
    }

    .mx46-hero-copy h1 {
        font-size: 42px
    }

    .mx46-hero-copy>p {
        font-size: 14px
    }

    .mx46-live-line {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        text-align: center
    }

    .mx46-live-line>span {
        justify-content: center
    }

    .mx46-hero-facts {
        grid-template-columns: repeat(2,1fr)
    }

    .mx46-hero-facts article {
        border-bottom: 1px solid #e3e7ec
    }

    .mx46-hero-facts article:nth-child(2) {
        border-right: 0
    }

    .mx46-hero-facts article:nth-child(3),.mx46-hero-facts article:nth-child(4) {
        border-bottom: 0
    }

    .mx46-hero-facts article:first-child {
        padding-left: 17px
    }

    .mx46-command-body {
        grid-template-columns: 1fr
    }

    .mx46-hero-command {
        padding: 10px;
        border-radius: 26px
    }

    .mx46-map-card,.mx46-operation-card {
        border-radius: 18px
    }

    .mx46-istanbul-map {
        height: 180px
    }

    .mx46-quick-access {
        margin-top: -12px
    }

    .mx46-quick-grid {
        padding: 21px;
        border-radius: 21px
    }

    .mx46-quick-grid form {
        grid-template-columns: 1fr
    }

    .mx46-quick-grid button {
        height: 44px
    }

    .mx46-search-hero {
        padding: 46px 0 52px
    }

    .mx46-search-copy h1 {
        font-size: 41px
    }

    .mx46-search-copy>p {
        font-size: 13px
    }

    .mx46-search-box {
        padding: 20px;
        border-radius: 22px
    }

    .mx46-search-box input {
        font-size: 16px
    }

    .mx46-search-stats>.site-shell {
        grid-template-columns: 1fr 1fr
    }

    .mx46-search-stats article {
        padding: 20px 13px
    }

    .mx46-search-layout {
        gap: 30px
    }

    .mx46-search-steps article {
        grid-template-columns: 48px 1fr
    }

    .mx46-search-steps b {
        width: 46px;
        height: 46px
    }

    .mx46-security-card {
        padding: 23px
    }

    .mx46-security-card h3 {
        font-size: 25px
    }

    .mx46-recent-reports {
        grid-template-columns: 1fr
    }

    .mx46-uptic-band {
        min-height: 76px
    }

    .mx-draft-recovery {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
        grid-template-columns: 1fr 1fr
    }

    .mx-draft-recovery>div {
        grid-column: 1/-1
    }

    .mx-draft-recovery button {
        width: 100%
    }
}

/* ==============================
   V4.7 premium public/admin skin
   ============================== */
.public-body.site-v47 {
    background: radial-gradient(circle at 8% 0%, rgba(255,124,27,.14), transparent 28%), radial-gradient(circle at 100% 18%, rgba(74,144,226,.12), transparent 24%), linear-gradient(180deg,#f7f8fb 0%,#f2f4f8 44%,#eef2f7 100%);
    color: #101827;
}

.public-body.site-v47 .mx45-main {
    position: relative;
    z-index: 1
}

.public-body.site-v47 .mx45-main::before {
    content: '';
    position: fixed;
    inset: auto auto 14% -8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,120,28,.10);
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
}

.public-body.site-v47 .mx45-main::after {
    content: '';
    position: fixed;
    inset: 16% -7% auto auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(83,122,255,.08);
    filter: blur(88px);
    pointer-events: none;
    z-index: -1;
}

.mx47-header .mx45-header-shell {
    padding-top: 26px
}

.mx47-header-bar {
    min-height: 96px;
    border: 1px solid rgba(17,24,39,.06);
    background: linear-gradient(180deg,rgba(255,255,255,.95),rgba(249,250,252,.92));
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
}

.mx47-header .mx45-nav a {
    font-weight: 800
}

.mx47-header .mx45-nav a.active {
    background: #f1f4f8;
    color: #0f172a
}

.mx47-logo {
    width: 118px;
    height: 118px;
    box-shadow: none!important;
    transform: none!important
}

.mx47-logo img {
    width: 74px;
    height: 74px;
    object-fit: contain
}

.mx47-header .mx45-logo:hover,.mx47-header .mx45-logo:focus {
    transform: none!important;
    box-shadow: none!important
}

.mx47-header .mx45-book-link {
    background: #ff6a00
}

.mx47-header .mx45-report-link {
    border-color: #d7dde6;
    background: #fff
}

.mx47-hero {
    padding: 42px 0 18px
}

.mx47-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr);
    gap: 28px;
    align-items: start
}

.mx47-hero-copy,.mx47-hero-visuals {
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(223,229,238,.92);
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(15,23,42,.07)
}

.mx47-hero-copy {
    padding: 34px 34px 30px
}

.mx47-hero-copy h1 {
    font-size: clamp(42px,5vw,76px);
    line-height: .95;
    letter-spacing: -.06em;
    margin: 16px 0 18px;
    color: #0b1323
}

.mx47-hero-copy h1 em {
    font-style: normal;
    color: #ff6a00
}

.mx47-hero-copy p {
    font-size: 19px;
    line-height: 1.7;
    color: #607087;
    max-width: 700px;
    margin: 0 0 22px
}

.mx47-live-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    margin: 0 0 20px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e9eef5
}

.mx47-live-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .16em;
    font-weight: 900;
    color: #6b7788
}

.mx47-live-strip span i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34,197,94,.12)
}

.mx47-live-strip strong {
    display: block;
    font-size: 18px;
    letter-spacing: -.03em;
    color: #0f172a;
    margin-top: 5px
}

.mx47-live-strip small {
    color: #6d7b8d;
    line-height: 1.5;
    max-width: 220px
}

.mx47-hero-facts {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    border-top: 1px solid #ebeff5;
    margin-top: 18px;
    padding-top: 18px
}

.mx47-hero-facts article {
    padding: 4px 14px;
    border-right: 1px solid #ebeff5
}

.mx47-hero-facts article:last-child {
    border-right: 0
}

.mx47-hero-facts b {
    display: block;
    font-size: 38px;
    letter-spacing: -.05em;
    color: #0f172a
}

.mx47-hero-facts span {
    display: block;
    font-size: 13px;
    color: #7b8696
}

.mx47-hero-visuals {
    padding: 20px
}

.mx47-visual-stage {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg,#0f172a,#121d31);
    min-height: 620px
}

.mx47-visual-slide {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .45s ease,transform .45s ease
}

.mx47-visual-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.mx47-visual-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    margin-bottom: 14px
}

.mx47-visual-head span {
    font-size: 11px;
    letter-spacing: .18em;
    font-weight: 900;
    color: #ffb880
}

.mx47-visual-head strong {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.04em;
    max-width: 340px;
    text-align: right
}

.mx47-visual-slide img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 22px;
    background: #dbe3ee
}

.mx47-visual-slide p {
    margin: 14px 8px 0;
    color: #d3dbea;
    font-size: 14px;
    line-height: 1.6
}

.mx47-visual-dots {
    position: absolute;
    left: 20px;
    bottom: 18px;
    display: flex;
    gap: 8px;
    z-index: 5
}

.mx47-visual-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.3);
    padding: 0;
    cursor: pointer
}

.mx47-visual-dots button.is-active {
    width: 30px;
    border-radius: 99px;
    background: #ff6a00
}

.mx47-hero-sidecards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px
}

.mx47-hero-sidecards article {
    padding: 18px 20px;
    border-radius: 24px;
    background: #f7f9fc;
    border: 1px solid #e8edf5
}

.mx47-hero-sidecards span {
    display: block;
    font-size: 11px;
    letter-spacing: .16em;
    color: #ff6a00;
    font-weight: 900;
    margin-bottom: 8px
}

.mx47-hero-sidecards strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.04em;
    color: #0f172a;
    margin-bottom: 6px
}

.mx47-hero-sidecards p {
    margin: 0;
    color: #6f7d8e;
    line-height: 1.6;
    font-size: 14px
}

.mx47-quick-access {
    padding: 10px 0 10px
}

.mx47-quick-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 24px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg,#ffffff,#f6f8fb);
    border: 1px solid #e7edf5;
    box-shadow: 0 18px 50px rgba(15,23,42,.05)
}

.mx47-quick-grid span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: #ff6a00;
    letter-spacing: .18em;
    margin-bottom: 8px
}

.mx47-quick-grid h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -.05em;
    color: #0f172a
}

.mx47-quick-grid form {
    display: flex;
    gap: 12px
}

.mx47-quick-grid input {
    flex: 1;
    min-width: 0;
    height: 58px;
    padding: 0 18px;
    border-radius: 17px;
    border: 1px solid #dce4ef;
    background: #fff;
    font: inherit
}

.mx47-quick-grid button {
    height: 58px;
    padding: 0 22px;
    border: 0;
    border-radius: 17px;
    background: #0f172a;
    color: #fff;
    font-weight: 900;
    cursor: pointer
}

.mx47-quick-grid>a {
    white-space: nowrap;
    color: #0f172a;
    font-weight: 900;
    text-decoration: none
}

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

.mx47-process-band article {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.82);
    border: 1px solid #e6ecf4;
    box-shadow: 0 16px 40px rgba(15,23,42,.05)
}

.mx47-process-band article b {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #fff1e8;
    color: #ff6a00;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 14px
}

.mx47-process-band h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: #101827
}

.mx47-process-band p {
    margin: 0;
    color: #6e7b8d;
    line-height: 1.7
}

.mx47-booking-page {
    padding: 34px 0 24px
}

.mx47-booking-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 24px;
    align-items: start
}

.mx47-booking-intro,.mx47-booking-card {
    border-radius: 32px;
    background: rgba(255,255,255,.82);
    border: 1px solid #e4eaf2;
    box-shadow: 0 24px 70px rgba(15,23,42,.06)
}

.mx47-booking-intro {
    padding: 32px;
    position: sticky;
    top: 118px
}

.mx47-booking-intro h1 {
    font-size: clamp(36px,4vw,58px);
    line-height: .98;
    letter-spacing: -.06em;
    margin: 16px 0
}

.mx47-booking-intro h1 em {
    font-style: normal;
    color: #ff6a00
}

.mx47-booking-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #667487;
    margin: 0 0 22px
}

.mx47-booking-points {
    display: grid;
    gap: 14px
}

.mx47-booking-points article {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    background: #f7f9fc;
    border: 1px solid #e9eef5
}

.mx47-booking-points b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #fff1e8;
    color: #ff6a00;
    font-size: 16px;
    font-weight: 900;
    flex: none
}

.mx47-booking-points strong {
    display: block;
    font-size: 17px;
    color: #111827;
    margin-bottom: 4px
}

.mx47-booking-points small {
    display: block;
    font-size: 13px;
    color: #708092;
    line-height: 1.55
}

.mx47-booking-contact {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(135deg,#101827,#1f2a44);
    color: #fff
}

.mx47-booking-contact span {
    display: block;
    font-size: 11px;
    letter-spacing: .18em;
    color: #ffb880;
    font-weight: 900;
    margin-bottom: 8px
}

.mx47-booking-contact strong {
    display: block;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -.04em
}

.mx47-booking-contact small {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    line-height: 1.6
}

.mx47-booking-card {
    padding: 26px
}

.mx47-booking-head span {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: #ff6a00;
    letter-spacing: .18em;
    margin-bottom: 8px
}

.mx47-booking-head h2 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.05em;
    color: #101827
}

.mx47-booking-head p {
    margin: 0 0 20px;
    color: #6d7b8d;
    line-height: 1.7
}

.mx47-booking-form section {
    padding: 18px 0;
    border-top: 1px solid #ebeff5
}

.mx47-booking-form section:first-of-type {
    border-top: 0;
    padding-top: 0
}

.mx47-packages label>span {
    border-radius: 22px
}

.booking-submit-v4 {
    height: 58px;
    border-radius: 18px;
    background: #0f172a
}

.booking-submit-v4:hover {
    background: #ff6a00
}

.mx47-search-hero .mx46-search-box,.mx47-search-hero .mx46-search-copy {
    background: rgba(255,255,255,.84);
    border: 1px solid #e7edf5;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(15,23,42,.06)
}

.photo-vehicle-schema .vehicle-photo-stage {
    padding: 40px 16px 54px;
    border-radius: 32px;
    background: linear-gradient(180deg,#f7f8fb,#eef2f7);
    border: 1px solid #e3e8f0
}

.photo-vehicle-schema .vehicle-direction {
    font-weight: 900;
    display: none;
    letter-spacing: .18em;
    font-size: 11px;
    color: #ff6a00;
    background: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #e6ebf2
}

.photo-vehicle-schema .vehicle-direction.front {
    top: 12px
}

.photo-vehicle-schema .vehicle-direction.rear {
    bottom: 12px
}

.photo-vehicle-schema .vehicle-photo-stage img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 35px rgba(15,23,42,.15))
}

.photo-vehicle-schema .vehicle-hotspot span {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(15,23,42,.08),0 10px 18px rgba(15,23,42,.18)
}

.photo-vehicle-schema .vehicle-hotspot b {
    font-size: 11px;
    padding: 7px 10px;
    border-radius: 12px;
    background: rgba(15,23,42,.88);
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(15,23,42,.22)
}

.photo-vehicle-schema .vehicle-hotspot:hover b,.photo-vehicle-schema .vehicle-hotspot:focus b {
    opacity: 1;
    transform: translate(-50%,-10px)
}

.photo-vehicle-schema .vehicle-schema-help {
    font-size: 13px;
    color: #6e7c8d;
    margin-top: 14px
}

.admin-body {
    background: radial-gradient(circle at 0 0, rgba(255,107,0,.12), transparent 24%), radial-gradient(circle at 100% 0, rgba(89,126,255,.12), transparent 20%), linear-gradient(180deg,#f4f6fa 0%,#eef2f7 100%);
}

.admin-layout {
    gap: 18px
}

.admin-body .sidebar {
    background: linear-gradient(180deg,#111827,#0f172a);
    border-radius: 32px;
    margin: 16px 0 16px 16px;
    box-shadow: 0 20px 60px rgba(15,23,42,.18);
    border: 1px solid rgba(255,255,255,.06)
}

.admin-body .admin-main {
    padding: 16px 16px 24px 0
}

.admin-body .admin-topbar {
    position: sticky;
    top: 12px;
    z-index: 30;
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(14px);
    border: 1px solid #e5ebf3;
    border-radius: 28px;
    padding: 16px 20px;
    box-shadow: 0 14px 40px rgba(15,23,42,.06)
}

.admin-body .admin-content>* {
    border-radius: 28px
}

.admin-body .v4-card,.admin-body .dashboard-card,.admin-body .admin-card,.admin-body .data-card,.admin-body .stat-card,.admin-body .table-card {
    border-radius: 28px;
    background: rgba(255,255,255,.86);
    border: 1px solid #e6ebf3;
    box-shadow: 0 16px 40px rgba(15,23,42,.05)
}

.admin-body .field input,.admin-body .field select,.admin-body .field textarea,.admin-body .search-input,.admin-body .filter-select {
    border-radius: 16px;
    background: #fbfcfe
}

.admin-body .btn,.admin-body .primary-action {
    border-radius: 16px
}

.admin-body .sidebar-bottom a {
    border-radius: 16px
}

@media (max-width: 1100px) {
    .mx47-hero-grid,.mx47-booking-grid {
        grid-template-columns:1fr
    }

    .mx47-booking-intro {
        position: static
    }

    .mx47-quick-grid {
        grid-template-columns: 1fr
    }

    .mx47-hero-sidecards,.mx47-process-band .mx47-process-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 820px) {
    .mx47-header .mx45-header-shell {
        padding-top:16px
    }

    .mx47-header-bar {
        min-height: 88px;
        border-radius: 28px;
        padding: 0 14px
    }

    .mx47-logo {
        width: 96px;
        height: 96px
    }

    .mx47-logo img {
        width: 62px;
        height: 62px
    }

    .mx47-hero {
        padding-top: 18px
    }

    .mx47-hero-copy,.mx47-hero-visuals,.mx47-booking-intro,.mx47-booking-card {
        border-radius: 28px
    }

    .mx47-hero-copy {
        padding: 26px 22px
    }

    .mx47-hero-copy h1 {
        font-size: 48px
    }

    .mx47-hero-copy p {
        font-size: 16px
    }

    .mx47-live-strip {
        flex-direction: column;
        align-items: flex-start
    }

    .mx47-hero-facts {
        grid-template-columns: repeat(2,1fr);
        gap: 10px
    }

    .mx47-hero-facts article {
        border-right: 0;
        padding: 10px 0
    }

    .mx47-visual-stage {
        min-height: 525px
    }

    .mx47-visual-slide {
        padding: 14px
    }

    .mx47-visual-head {
        display: block
    }

    .mx47-visual-head strong {
        text-align: left;
        display: block;
        margin-top: 6px;
        font-size: 21px;
        max-width: none
    }

    .mx47-visual-slide img {
        height: 370px
    }

    .mx47-quick-grid h2 {
        font-size: 24px
    }

    .mx47-quick-grid form {
        flex-direction: column
    }
}

@media (max-width: 640px) {
    .public-body.site-v47 {
        background:linear-gradient(180deg,#f5f7fb 0%,#eef2f7 100%)
    }

    .mx47-main {
        padding-bottom: 88px
    }

    .mx47-mobile-menu {
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(16px)
    }

    .mx47-hero-copy h1 {
        font-size: 42px
    }

    .mx47-visual-stage {
        min-height: 462px
    }

    .mx47-visual-slide img {
        height: 280px
    }

    .mx47-booking-card {
        padding: 18px
    }

    .mx47-booking-head h2 {
        font-size: 28px
    }

    .mx47-booking-intro {
        padding: 22px
    }

    .admin-body .admin-main {
        padding: 12px
    }

    .admin-body .sidebar {
        margin: 0;
        border-radius: 0 28px 28px 0
    }

    .admin-body .admin-topbar {
        top: 8px;
        border-radius: 24px;
        padding: 14px 16px
    }
}
