:root {
    --black: #020202;
    --black-soft: #080808;
    --panel: #111111;
    --panel-soft: #161616;
    --gold: #c99442;
    --gold-light: #ddb15e;
    --text: #eeeeee;
    --muted: #bdbdbd;
    --line: rgba(255, 255, 255, 0.14);
    --gold-line: rgba(201, 148, 66, 0.48);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif;
    background: var(--black);
    color: var(--text);
}

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

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

.container {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.94);
    border-bottom: 1px solid rgba(201, 148, 66, 0.28);
    backdrop-filter: blur(14px);
}

.header-container {
    min-height: 88px;
    direction: ltr;
    display: grid;
    grid-template-columns: 190px 1fr 120px;
    align-items: center;
    gap: 16px;
}

.brand {
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #fff;
}

.brand img {
    width: 88px;
    height: 62px;
    object-fit: contain;
}

.site-nav {
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.45vw, 24px);
    flex-wrap: wrap;
    row-gap: 0;
}

.site-nav a {
    position: relative;
    padding: 30px 0 26px;
    color: #f1f1f1;
    font-size: 13px;
    transition: color 0.2s;
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--gold-light);
}

.site-nav a.active::after,
.site-nav a:hover::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 16px;
    width: 100%;
    height: 1px;
    background: var(--gold);
}

.header-cta {
    direction: rtl;
    justify-self: start;
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 14px;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    margin: 8px 0;
    background: #fff;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 505px;
    border-bottom: 1px solid rgba(201, 148, 66, 0.42);
    background:
        linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.82)),
        repeating-linear-gradient(
            90deg,
            #050505 0,
            #050505 22px,
            #0c0c0c 22px,
            #0c0c0c 44px
        );
}

.hero-lights {
    position: absolute;
    top: -8px;
    right: 9%;
    left: 9%;
    height: 120px;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 0, rgba(224, 166, 86, 0.82), transparent 8%),
        radial-gradient(circle at 25% 0, rgba(224, 166, 86, 0.78), transparent 8%),
        radial-gradient(circle at 48% 0, rgba(224, 166, 86, 0.74), transparent 8%),
        radial-gradient(circle at 72% 0, rgba(224, 166, 86, 0.72), transparent 8%),
        radial-gradient(circle at 94% 0, rgba(224, 166, 86, 0.78), transparent 8%);
    filter: blur(10px);
}

.hero-car-bg {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 34px;
    width: 72%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    pointer-events: none;
}

.hero-car-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 44%, rgba(0, 0, 0, 0.72) 82%, rgba(0, 0, 0, 0.95) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.68) 100%);
}

.hero-car-bg img {
    width: 100%;
    height: auto;
    max-height: 410px;
    object-fit: contain;
    object-position: left bottom;
}

.hero-container {
    position: relative;
    z-index: 3;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    width: min(100%, 520px);
    margin: 0;
    padding-top: 8px;
    text-align: right;
}

.hero-content h1 {
    margin: 0 0 18px;
    color: #e8e8e8;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 900;
    line-height: 1.23;
    letter-spacing: 0;
}

.hero-content p {
    width: min(100%, 480px);
    margin: 0 0 32px;
    color: #d2d2d2;
    font-size: 17px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.btn {
    min-width: 190px;
    height: 58px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.22s, border-color 0.22s, background 0.22s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-gold {
    color: #17120a;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #e7bd72, #be8231);
}

.btn-outline {
    color: #f2dfbd;
    border: 1px solid var(--gold-line);
    background: rgba(0, 0, 0, 0.34);
}

.offer-bar {
    position: relative;
    z-index: 5;
    background: linear-gradient(90deg, #111, #1a1a1a, #111);
    border-top: 1px solid rgba(201, 148, 66, 0.32);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-content {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #f1f1f1;
    font-size: clamp(16px, 2.2vw, 24px);
    text-align: center;
}

.offer-icon,
.line-icon {
    color: var(--gold-light);
}

.section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background:
        radial-gradient(circle at 50% 0, rgba(201, 148, 66, 0.09), transparent 22%),
        #020202;
}

.section-heading {
    margin-bottom: 34px;
}

.available-cars-section {
    padding-top: 58px;
}

.available-cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.available-car-card {
    overflow: hidden;
    border: 1px solid rgba(201, 148, 66, 0.42);
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,255,255,0.07), transparent 44%),
        linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        #101010;
    transition: transform 0.22s, border-color 0.22s;
}

.available-car-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 148, 66, 0.72);
}

.available-car-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.available-car-image span {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #111;
    background: var(--gold-light);
    font-size: 13px;
    font-weight: 900;
}

.available-car-copy {
    padding: 22px;
}

.available-car-copy h3 {
    margin: 0 0 12px;
    color: #f5f5f5;
    font-size: 21px;
    line-height: 1.35;
}

.car-status {
    margin: 0 0 12px;
    color: #d0d0d0;
    font-size: 14px;
}

.car-status span {
    width: 20px;
    height: 20px;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: var(--gold-light);
    font-size: 12px;
    font-weight: 900;
}

.car-price {
    margin: 0 0 18px;
    color: var(--gold-light);
    font-size: 15px;
    font-weight: 900;
}

.car-whatsapp {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    color: #f5f5f5;
    background: rgba(255,255,255,0.08);
    font-weight: 900;
    transition: color 0.22s, background 0.22s;
}

.car-whatsapp:hover {
    color: #111;
    background: var(--gold-light);
}

.section-heading.center {
    text-align: center;
}

.section-heading.right {
    text-align: right;
}

.section-heading h2 {
    margin: 0;
    color: #e8e8e8;
    font-size: clamp(29px, 3.2vw, 40px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.section-heading p {
    margin: 9px 0 0;
    color: #b7b7b7;
    font-size: 18px;
}

.with-lines h2 {
    display: inline-flex;
    align-items: center;
    gap: 22px;
}

.with-lines h2::before,
.with-lines h2::after {
    content: "";
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.with-lines h2::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.right.with-lines h2::before {
    display: none;
}

.feature-card,
.why-card,
.contact-card,
.map-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.075), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        var(--panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.feature-card {
    min-height: 246px;
    padding: 28px 26px 24px;
    text-align: center;
}

.line-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    font-size: 38px;
    line-height: 1;
}

.line-icon::before {
    display: block;
    color: var(--gold-light);
    font-weight: 400;
}

.shield-icon::before { content: "♢"; }
.shine-car-icon::before { content: "⌁"; }
.car-icon::before { content: "▱"; }
.gear-icon::before { content: "⚙"; }
.doc-icon::before { content: "▤"; }
.inspect-icon::before { content: "◌"; }
.headset-icon::before { content: "☏"; }
.diamond-icon::before { content: "◇"; }
.badge-icon::before { content: "✓"; }
.crown-icon::before { content: "♕"; }
.location-icon::before { content: "⌖"; }
.clock-icon::before { content: "◷"; }
.phone-icon::before { content: "☏"; }
.calendar-icon::before { content: "▣"; }

.feature-card h3,
.why-card h3 {
    margin: 0;
    color: #f4f4f4;
    font-size: 22px;
    line-height: 1.35;
}

.feature-card p,
.why-card p,
.about-copy p,
.contact-card p {
    margin: 13px 0 0;
    color: #c8c8c8;
    font-size: 15px;
    line-height: 1.8;
}

.why-section {
    padding-top: 20px;
}

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

.why-card {
    min-height: 214px;
    padding: 27px 18px 22px;
    text-align: center;
}

.why-card .line-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    font-size: 40px;
}

.why-card h3 {
    font-size: 19px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.8;
}

.about-copy p,
.contact-card p {
    margin-top: 17px;
    font-size: 17px;
    line-height: 1.9;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
    align-items: center;
    gap: 58px;
}

.about-copy {
    text-align: right;
}

.about-copy p {
    font-size: 17px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.about-stats div {
    text-align: center;
}

.about-stats strong {
    display: block;
    color: var(--gold-light);
    font-size: 34px;
    line-height: 1;
}

.about-stats span {
    display: block;
    margin-top: 10px;
    color: #bebebe;
    font-size: 14px;
}

.showroom-frame {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: #111;
}

.showroom-frame img {
    width: 100%;
    height: 405px;
    object-fit: cover;
}

.visit-section {
    padding-top: 42px;
    padding-bottom: 24px;
}

.visit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 20px;
}

.map-card {
    overflow: hidden;
    min-height: 294px;
}

.map-card img {
    width: 100%;
    height: 100%;
    min-height: 294px;
    object-fit: cover;
}

.contact-card {
    min-height: 294px;
    padding: 34px 42px 24px;
    text-align: right;
}

.contact-card p {
    margin-top: 0;
    text-align: center;
}

.contact-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 14px;
    color: #f5f5f5;
}

.contact-list .line-icon {
    width: 28px;
    height: 28px;
    margin: 0;
    font-size: 27px;
}

.contact-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 400;
}

.contact-list a {
    color: #f5f5f5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 18px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 700;
}

.booking-bar {
    min-height: 68px;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 10px;
    color: #111;
    background: linear-gradient(135deg, #e5bb70, #bd8234);
    font-size: 23px;
    font-weight: 900;
}

.booking-bar .line-icon {
    width: 34px;
    height: 34px;
    margin: 0;
    color: #111;
    font-size: 30px;
}

.booking-bar .line-icon::before {
    color: #111;
}

.site-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 48px;
    padding: 54px 0 42px;
}

.footer-brand img {
    width: 170px;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    margin: 0;
    color: #d6d6d6;
    font-size: 18px;
}

.footer-social,
.footer-copy-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social {
    margin-top: 18px;
}

.footer-social a,
.footer-copy-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 148, 66, 0.5);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.055);
    font-size: 16px;
    font-weight: 900;
    transition: 0.2s;
}

.footer-social a:hover,
.footer-copy-social a:hover {
    color: #111;
    background: var(--gold-light);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 22px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-right: 22px;
    border-right: 1px solid rgba(201, 148, 66, 0.22);
}

.footer-links a {
    color: #dedede;
    font-size: 14px;
}

.footer-copy {
    min-height: 72px;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #bcbcbc;
    font-size: 15px;
}

.footer-copy-social a {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

/* =========================
   Services Page
========================= */

.services-page {
    background:
        radial-gradient(circle at 50% 0, rgba(201, 148, 66, 0.12), transparent 34%),
        #020202;
}

.services-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.04), rgba(0,0,0,0.58) 62%, #020202 100%),
        repeating-linear-gradient(90deg, #060606 0, #060606 34px, #0d0d0d 34px, #0d0d0d 68px);
}

.services-hero-exact {
    min-height: 610px;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.18) 72%, #020202 100%),
        url("../images/services-hero-container.png") center top / cover no-repeat;
}

.services-hero-exact .services-light-lines,
.services-hero-exact .hero-car {
    opacity: 0;
    pointer-events: none;
}

.services-hero-exact .services-hero-content {
    opacity: 1;
    pointer-events: auto;
}

.services-hero-exact .services-hero-content h1,
.services-hero-exact .services-hero-content p {
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.72),
        0 0 18px rgba(0, 0, 0, 0.95);
}

.services-hero-exact .services-hero-content h1 {
    color: #f7f7f7;
}

.services-hero-exact .services-hero-content p {
    color: #eeeeee;
    font-weight: 600;
}

.services-hero-hotspots {
    display: none;
}

.services-hero-hotspots a {
    display: block;
    border-radius: 999px;
}

.services-light-lines {
    position: absolute;
    inset: 0 0 auto;
    height: 465px;
    background:
        linear-gradient(90deg, transparent 18%, rgba(220, 164, 72, 0.92) 18.4%, transparent 18.8%),
        linear-gradient(90deg, transparent 38%, rgba(220, 164, 72, 0.9) 38.4%, transparent 38.8%),
        linear-gradient(90deg, transparent 61%, rgba(220, 164, 72, 0.9) 61.4%, transparent 61.8%),
        linear-gradient(90deg, transparent 82%, rgba(220, 164, 72, 0.92) 82.4%, transparent 82.8%);
    filter: drop-shadow(0 0 14px rgba(220, 164, 72, 0.55));
    opacity: 0.95;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    min-height: 420px;
    padding-top: 88px;
    text-align: center;
}

.services-hero h1 {
    margin: 0;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.22;
    color: #f3f3f3;
    font-weight: 900;
    letter-spacing: 0;
}

.services-hero h1 span {
    display: block;
    color: var(--gold-light);
}

.services-hero p {
    width: min(100%, 520px);
    margin: 18px auto 28px;
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.85;
}

.services-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.services-hero-exact .services-hero-actions .btn {
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.36);
}

.hero-car {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-car-left {
    left: 0;
    bottom: 110px;
    width: min(34vw, 330px);
}

.hero-car-center {
    left: 50%;
    bottom: 48px;
    width: min(32vw, 330px);
    transform: translateX(-50%);
}

.hero-car-right {
    right: 0;
    bottom: 110px;
    width: min(28vw, 280px);
}

.services-block {
    padding: 38px 0 28px;
}

.services-block.compact {
    padding-top: 30px;
}

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

.rq-service-card,
.step-card {
    min-height: 178px;
    padding: 24px 24px 20px;
    text-align: center;
    border: 1px solid rgba(201, 148, 66, 0.58);
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,255,255,0.07), transparent 44%),
        linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        #111;
}

.rq-service-card h3,
.step-card h3 {
    margin: 0;
    color: #f4f4f4;
    font-size: 20px;
    line-height: 1.35;
}

.rq-service-card p,
.step-card p,
.offer-copy p,
.services-cta p {
    margin: 10px 0 0;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.75;
}

.rq-service-card::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin: 16px auto 0;
    background: var(--gold);
}

.seat-icon::before { content: "▱"; }
.transfer-icon::before { content: "▤"; }
.chat-icon::before { content: "☏"; }
.list-icon::before { content: "☷"; }
.handshake-icon::before { content: "◇"; }
.key-icon::before { content: "⚿"; }
.fast-icon::before { content: "ϟ"; }
.eye-icon::before { content: "◉"; }

.offer-card-large {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    overflow: hidden;
    margin-top: 26px;
    border: 1px solid rgba(201, 148, 66, 0.62);
    border-radius: 14px;
    background:
        radial-gradient(circle at 85% 10%, rgba(201, 148, 66, 0.14), transparent 30%),
        #101010;
}

.offer-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}

.offer-copy {
    padding: 34px 44px 30px;
    text-align: right;
}

.pill {
    display: inline-flex;
    padding: 7px 17px;
    margin-bottom: 18px;
    border: 1px solid rgba(201, 148, 66, 0.62);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 13px;
}

.offer-copy h2,
.services-cta h2 {
    margin: 0;
    color: #f5f5f5;
    font-size: clamp(28px, 3.35vw, 40px);
    line-height: 1.25;
}

.offer-copy h2 span {
    color: var(--gold-light);
}

.offer-copy ul {
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.offer-copy li {
    position: relative;
    margin-bottom: 10px;
    padding-right: 30px;
    color: #e7e7e7;
    font-size: 15px;
}

.offer-copy li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: var(--gold-light);
    font-size: 13px;
    font-weight: 900;
}

.offer-copy .btn {
    min-width: 220px;
    height: 48px;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
}

.step-card {
    position: relative;
    min-height: auto;
    padding: 0 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    left: calc(-50% + 52px);
    width: calc(100% - 78px);
    height: 1px;
    border-top: 1px dotted rgba(201, 148, 66, 0.78);
}

.step-card:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 37px;
    left: calc(-50% + 40px);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid var(--gold);
}

.step-number {
    position: absolute;
    top: 4px;
    left: calc(50% - 43px);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: var(--gold-light);
    font-size: 13px;
    font-weight: 900;
}

.step-card .line-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 13px;
    border: 1px solid rgba(201, 148, 66, 0.72);
    border-radius: 50%;
    background: rgba(201, 148, 66, 0.08);
    font-size: 43px;
}

.step-card h3 {
    font-size: 18px;
    margin-top: 0;
}

.step-card p {
    width: min(100%, 190px);
    margin-right: auto;
    margin-left: auto;
    font-size: 13px;
    line-height: 1.65;
}

.why-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services-cta {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
    margin-bottom: 34px;
    padding: 34px 44px;
    border: 1px solid rgba(201, 148, 66, 0.62);
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68) 44%, rgba(0, 0, 0, 0.18)),
        url("../images/services-cta-bg.png") center / cover no-repeat,
        #111;
}

.services-cta img {
    display: none;
}

.services-cta > div {
    position: relative;
    z-index: 1;
}

.services-cta > div:first-child {
    display: block;
    width: min(100%, 430px);
    text-align: right;
}

.services-cta-actions {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    display: grid;
    direction: rtl;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    transform: none;
    z-index: 3;
}

.services-cta-actions .btn {
    min-width: 0;
    width: 200px;
    height: 52px;
    padding: 0 20px;
    opacity: 1;
}

.opening-page {
    background:
        radial-gradient(circle at 50% 0, rgba(201, 148, 66, 0.13), transparent 30%),
        linear-gradient(180deg, #030303 0%, #080808 48%, #020202 100%);
    color: var(--text);
}

.opening-hero {
    position: relative;
    min-height: 670px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid rgba(201, 148, 66, 0.24);
}

.opening-hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.16) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
        url("../images/opening-offers-hero.jpg") center / cover no-repeat;
    filter: saturate(0.98);
}

.opening-hero-content {
    position: relative;
    z-index: 2;
    padding: 110px 0 86px;
    text-align: center;
}

.opening-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid rgba(201, 148, 66, 0.58);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(0, 0, 0, 0.48);
    font-size: 14px;
}

.opening-kicker::before {
    content: "★";
    font-size: 13px;
}

.opening-hero h1 {
    max-width: 820px;
    margin: 0 auto;
    color: #f5f5f5;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.86);
}

.opening-hero h1 span {
    color: var(--gold-light);
}

.opening-hero p {
    width: min(100%, 620px);
    margin: 22px auto 34px;
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.9;
}

.opening-actions,
.opening-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.opening-section {
    padding: 58px 0;
}

.opening-section.compact {
    padding: 38px 0;
}

.opening-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    overflow: hidden;
    border: 1px solid rgba(201, 148, 66, 0.44);
    border-radius: 14px;
    background:
        radial-gradient(circle at 20% 0, rgba(201, 148, 66, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        #111;
}

.opening-feature-copy {
    padding: 44px;
    text-align: right;
}

.opening-feature-copy h3,
.opening-terms h2,
.opening-final-cta h2 {
    margin: 0;
    color: #f5f5f5;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.28;
}

.opening-feature-copy h3 {
    color: var(--gold-light);
}

.opening-feature-copy p,
.opening-terms li,
.opening-benefits p,
.opening-steps p,
.opening-partners p,
.opening-final-cta p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.85;
}

.opening-feature-copy p {
    margin: 18px 0 22px;
}

.opening-feature-image img,
.opening-terms-image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.opening-mini-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.opening-mini-list span {
    padding: 8px 14px;
    border: 1px solid rgba(201, 148, 66, 0.35);
    border-radius: 999px;
    color: #f1dfbd;
    background: rgba(0, 0, 0, 0.28);
    font-size: 13px;
}

.opening-benefits,
.opening-partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.opening-benefits article,
.opening-partners article {
    min-height: 210px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(201, 148, 66, 0.44);
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,255,255,0.07), transparent 44%),
        linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        #101010;
}

.opening-icon,
.opening-partners span {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 148, 66, 0.64);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 26px;
    font-weight: 800;
    background: rgba(201, 148, 66, 0.08);
}

.opening-benefits h3,
.opening-steps h3,
.opening-partners h3 {
    margin: 0 0 10px;
    color: #f5f5f5;
    font-size: 19px;
    line-height: 1.35;
}

.opening-benefits p,
.opening-steps p,
.opening-partners p {
    margin: 0;
    font-size: 14px;
}

.opening-terms {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: stretch;
}

.opening-terms-copy {
    height: 100%;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(201, 148, 66, 0.36);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), #101010;
}

.opening-terms ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.opening-terms li {
    position: relative;
    padding-right: 32px;
    margin-bottom: 16px;
}

.opening-terms li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: var(--gold-light);
    font-size: 12px;
    font-weight: 900;
}

.opening-terms-image {
    overflow: hidden;
    border: 1px solid rgba(201, 148, 66, 0.32);
    border-radius: 14px;
}

.opening-terms-image img {
    min-height: 0;
}

.opening-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.opening-steps article {
    position: relative;
    text-align: center;
}

.opening-steps article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 35px;
    left: calc(-50% + 50px);
    width: calc(100% - 72px);
    border-top: 1px dotted rgba(201, 148, 66, 0.66);
}

.opening-steps span {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 148, 66, 0.72);
    border-radius: 50%;
    color: #111;
    background: linear-gradient(135deg, #e7bd72, #be8231);
    font-size: 24px;
    font-weight: 900;
}

.opening-partners {
    grid-template-columns: repeat(3, 1fr);
}

.opening-final-cta {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 36px;
    margin-bottom: 40px;
    padding: 42px 48px;
    border: 1px solid rgba(201, 148, 66, 0.58);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.74) 46%, rgba(0, 0, 0, 0.26)),
        url("../images/opening-offers-car-detail.jpg") center / cover no-repeat,
        #111;
}

.opening-final-cta > div {
    position: relative;
    z-index: 1;
}

.opening-final-cta p {
    width: min(100%, 470px);
    margin: 12px 0 0;
}

.about-page {
    background:
        radial-gradient(circle at 50% 0, rgba(201, 148, 66, 0.12), transparent 30%),
        linear-gradient(180deg, #030303 0%, #080808 55%, #020202 100%);
    color: var(--text);
}

.about-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 148, 66, 0.24);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.58) 52%, rgba(0,0,0,0.28) 100%),
        url("../images/about-hero.jpg") center / cover no-repeat;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 90px 0;
}

.about-hero h1 {
    margin: 0 0 20px;
    color: #f6f6f6;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.86);
}

.about-hero p {
    width: min(100%, 760px);
    margin: 0 auto 34px;
    color: #dddddd;
    font-size: 19px;
    line-height: 1.9;
}

.about-hero-actions,
.about-final-cta div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-story-section,
.about-section,
.about-team-section {
    padding: 58px 0;
}

.about-section.compact {
    padding: 40px 0;
}

.about-story-grid,
.about-why-grid,
.about-team-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: center;
}

.about-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.about-story-copy h2,
.about-why-copy h2,
.about-team-copy h2,
.about-final-cta h2 {
    margin: 0 0 20px;
    color: #f5f5f5;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.25;
}

.about-story-copy p,
.about-vision-grid p,
.about-values-grid p,
.about-why-copy p,
.about-why-copy li,
.about-team-copy p,
.about-final-cta p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.9;
}

.about-story-image,
.about-team-image {
    position: relative;
    overflow: hidden;
    min-height: 440px;
    border: 1px solid rgba(201, 148, 66, 0.42);
    border-radius: 16px;
    background: #111;
}

.about-story-image img,
.about-team-image img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.about-story-image span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    padding: 10px 18px;
    border: 1px solid rgba(201, 148, 66, 0.48);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(0, 0, 0, 0.66);
    font-weight: 800;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-vision-grid article,
.about-values-grid article,
.about-stats-panel,
.about-final-cta {
    border: 1px solid rgba(201, 148, 66, 0.42);
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,255,255,0.07), transparent 44%),
        linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        #101010;
}

.about-vision-grid article {
    padding: 34px;
    min-height: 270px;
}

.about-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 148, 66, 0.64);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(201, 148, 66, 0.08);
    font-size: 26px;
}

.about-vision-grid h3,
.about-values-grid h3 {
    margin: 0 0 12px;
    color: var(--gold-light);
    font-size: 24px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-values-grid article {
    min-height: 210px;
    padding: 28px 22px;
    text-align: center;
}

.about-values-grid span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 14px;
    border: 1px solid rgba(201, 148, 66, 0.42);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 13px;
}

.about-why-copy ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.about-why-copy li {
    position: relative;
    margin-bottom: 12px;
    padding-right: 32px;
}

.about-why-copy li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: var(--gold-light);
    font-size: 12px;
    font-weight: 900;
}

.about-stats-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px;
}

.about-stats-panel div {
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-align: center;
    background: rgba(0, 0, 0, 0.24);
}

.about-stats-panel strong {
    display: block;
    color: var(--gold-light);
    font-size: 42px;
    line-height: 1;
}

.about-stats-panel span {
    display: block;
    margin-top: 8px;
    color: #d7d7d7;
}

.about-team-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.about-team-copy .btn {
    margin-top: 14px;
}

.about-final-cta {
    margin-top: 28px;
    margin-bottom: 40px;
    padding: 46px 32px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(201, 148, 66, 0.88), rgba(139, 89, 28, 0.94)),
        #c99442;
}

.about-final-cta h2,
.about-final-cta p {
    color: #120d06;
}

.about-final-cta p {
    margin: 0 0 28px;
    font-weight: 700;
}

.about-final-cta .btn-outline {
    color: #1a1208;
    border-color: rgba(0,0,0,0.32);
    background: rgba(255,255,255,0.18);
}

.contact-page {
    background:
        radial-gradient(circle at 50% 0, rgba(201, 148, 66, 0.13), transparent 30%),
        linear-gradient(180deg, #030303 0%, #080808 52%, #020202 100%);
    color: var(--text);
}

.contact-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 148, 66, 0.24);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.58) 52%, rgba(0,0,0,0.26) 100%),
        url("../images/contact-hero.jpg") center / cover no-repeat;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 760px);
    padding: 90px 0;
    text-align: center;
}

.contact-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 16px;
    border: 1px solid rgba(201, 148, 66, 0.48);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(0,0,0,0.38);
    font-size: 13px;
    font-weight: 800;
}

.contact-hero h1 {
    margin: 0 0 18px;
    color: #f6f6f6;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.86);
}

.contact-hero p,
.contact-form-copy p,
.contact-map-panel p,
.contact-help-cta p {
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.85;
}

.contact-hero p {
    margin: 0 auto 32px;
}

.contact-hero-actions,
.contact-help-cta div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-section {
    padding: 58px 0;
}

.contact-section.compact {
    padding: 34px 0 58px;
}

.contact-grid,
.contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: stretch;
}

.contact-info-panel,
.contact-map-panel,
.contact-form-card,
.contact-help-cta {
    border: 1px solid rgba(201, 148, 66, 0.42);
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,255,255,0.07), transparent 44%),
        linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        #101010;
}

.contact-info-panel,
.contact-map-panel {
    padding: 32px;
}

.contact-info-list {
    display: grid;
    gap: 16px;
}

.contact-info-list a,
.contact-info-list > div {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(0,0,0,0.24);
    transition: border-color 0.22s, transform 0.22s;
}

.contact-info-list a:hover {
    border-color: rgba(201, 148, 66, 0.56);
    transform: translateY(-2px);
}

.contact-info-list span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 148, 66, 0.58);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(201, 148, 66, 0.08);
    font-size: 24px;
}

.contact-info-list h3,
.contact-map-panel h2,
.contact-form-copy h2,
.contact-help-cta h2 {
    margin: 0 0 8px;
    color: #f5f5f5;
    font-size: 24px;
    line-height: 1.35;
}

.contact-info-list p,
.contact-map-panel p {
    margin: 0;
    color: #d0d0d0;
    font-size: 14px;
}

.contact-map-image {
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 148, 66, 0.34);
    border-radius: 12px;
}

.contact-map-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.contact-map-panel .btn {
    width: 100%;
    margin-top: 18px;
}

.contact-form-copy {
    padding: 28px 0;
}

.contact-form-copy h2,
.contact-help-cta h2 {
    font-size: clamp(30px, 3vw, 42px);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 800;
}

.contact-form-card {
    padding: 30px;
}

.contact-form-card label {
    display: block;
    margin-bottom: 18px;
}

.contact-form-card label span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 800;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    border: 0;
    border-bottom: 2px solid rgba(201, 148, 66, 0.28);
    border-radius: 8px 8px 0 0;
    outline: 0;
    padding: 15px 16px;
    color: #f5f5f5;
    background: rgba(255,255,255,0.06);
    font: inherit;
}

.contact-form-card select {
    color-scheme: dark;
}

.contact-form-card option {
    color: #f5f5f5;
    background: #0b0b0b;
}

.contact-form-card option:checked {
    color: #111;
    background: var(--gold-light);
}

.contact-form-card textarea {
    resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: var(--gold-light);
    background: rgba(255,255,255,0.09);
}

.contact-form-card small {
    display: block;
    margin-top: 6px;
    color: #f0a0a0;
    font-size: 12px;
}

.contact-form-card .btn {
    width: 100%;
}

.contact-success {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(126, 211, 33, 0.42);
    border-radius: 10px;
    color: #dff7c4;
    background: rgba(126, 211, 33, 0.1);
    font-size: 14px;
}

.contact-help-cta {
    margin-top: 8px;
    margin-bottom: 40px;
    padding: 44px 30px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(201, 148, 66, 0.13), rgba(0,0,0,0.2)),
        #101010;
}

.contact-help-cta p {
    width: min(100%, 620px);
    margin: 0 auto 26px;
}

.legal-page,
.thank-page {
    background:
        radial-gradient(circle at 50% 0, rgba(201, 148, 66, 0.14), transparent 30%),
        linear-gradient(180deg, #030303 0%, #080808 54%, #020202 100%);
    color: var(--text);
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 72px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 148, 66, 0.22);
    background:
        radial-gradient(circle at 50% 35%, rgba(201, 148, 66, 0.18), transparent 32%),
        #050505;
}

.faq-hero {
    background:
        linear-gradient(0deg, rgba(0,0,0,0.9), rgba(0,0,0,0.6)),
        url("../images/faq-hero.jpg") center / cover no-repeat;
}

.legal-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 16px;
    border: 1px solid rgba(201, 148, 66, 0.48);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(0,0,0,0.38);
    font-size: 13px;
    font-weight: 800;
}

.legal-hero h1,
.thank-card h1 {
    margin: 0 0 18px;
    color: #f6f6f6;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 900;
    line-height: 1.15;
}

.legal-hero p,
.legal-cta p,
.thank-card p {
    width: min(100%, 720px);
    margin: 0 auto;
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.85;
}

.legal-section {
    padding: 58px 0;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.legal-index,
.legal-content article,
.faq-item,
.legal-cta,
.thank-card,
.thank-stats div {
    border: 1px solid rgba(201, 148, 66, 0.42);
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,255,255,0.07), transparent 44%),
        linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        #101010;
}

.legal-index {
    position: sticky;
    top: 112px;
    padding: 22px;
}

.legal-index h3 {
    margin: 0 0 14px;
    color: var(--gold-light);
    font-size: 18px;
}

.legal-index a {
    display: block;
    padding: 10px 0;
    color: #d5d5d5;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 14px;
}

.legal-content {
    display: grid;
    gap: 18px;
}

.legal-content article {
    scroll-margin-top: 120px;
    padding: 28px 30px;
    border-right: 4px solid var(--gold);
}

.legal-content h2,
.legal-cta h2 {
    margin: 0 0 14px;
    color: #f6f6f6;
    font-size: clamp(24px, 2.5vw, 34px);
}

.legal-content p {
    margin: 0;
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.9;
}

.faq-list {
    width: min(100% - 48px, 930px);
}

.faq-item {
    overflow: hidden;
    margin-bottom: 16px;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 800;
}

.faq-item summary b {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: var(--gold-light);
    font-size: 22px;
    line-height: 1;
}

.faq-item[open] summary b {
    transform: rotate(45deg);
}

.faq-item p {
    margin: 0;
    padding: 0 28px 26px;
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.9;
}

.legal-cta {
    margin-bottom: 42px;
    padding: 40px 28px;
    text-align: center;
}

.legal-cta p {
    margin-bottom: 24px;
}

.legal-cta > div,
.thank-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.thank-page {
    padding-top: 64px;
}

.thank-card {
    margin-bottom: 48px;
    padding: 56px 34px;
    text-align: center;
}

.thank-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    background: linear-gradient(135deg, #e7bd72, #be8231);
    font-size: 48px;
    font-weight: 900;
    box-shadow: 0 0 34px rgba(201, 148, 66, 0.28);
}

.thank-stats {
    width: min(100%, 760px);
    margin: 32px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.thank-stats div {
    padding: 22px 16px;
}

.thank-stats strong,
.thank-stats span {
    display: block;
}

.thank-stats strong {
    color: var(--gold-light);
    font-size: 24px;
}

.thank-stats span {
    margin-top: 8px;
    color: #d4d4d4;
    font-size: 13px;
}

.services-footer {
    border-top: 1px solid rgba(201, 148, 66, 0.22);
    background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(0,0,0,0.2)), #050505;
}

.services-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 40px;
    padding: 44px 0 34px;
}

.services-footer-brand img {
    width: 165px;
    margin-bottom: 14px;
}

.services-footer p,
.services-footer a {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.9;
}

.services-footer p {
    margin: 0 0 18px;
}

.services-footer h3 {
    margin: 0 0 18px;
    color: var(--gold-light);
    font-size: 18px;
}

.services-footer a {
    display: block;
    margin-bottom: 10px;
}

.services-footer .social-links {
    justify-content: flex-start;
}

.services-footer-copy {
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #aaa;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .header-container {
        grid-template-columns: 190px 1fr 120px;
    }

    .site-nav {
        gap: 18px;
    }

}

@media (max-width: 900px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .header-container {
        height: 78px;
        grid-template-columns: auto auto 1fr;
    }

    .brand {
        justify-self: end;
    }

    .brand img {
        width: 78px;
        height: 54px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 78px;
        right: 0;
        left: 0;
        padding: 18px 24px;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: rgba(0, 0, 0, 0.98);
        border-bottom: 1px solid var(--gold-line);
        transform: translateY(-125%);
        transition: transform 0.24s;
    }

    .site-nav.is-open {
        transform: translateY(0);
    }

    .site-nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.09);
    }

    .site-nav a::after {
        display: none;
    }

    .header-cta {
        min-height: 42px;
        padding: 0 15px;
        font-size: 12px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-car-bg {
        width: 100%;
        bottom: 28px;
        opacity: 0.72;
    }

    .hero-car-bg::after {
        background:
            linear-gradient(to bottom, rgba(0,0,0,0.48), rgba(0,0,0,0.22) 42%, rgba(0,0,0,0.92)),
            linear-gradient(to right, rgba(0,0,0,0.72), rgba(0,0,0,0.22), rgba(0,0,0,0.72));
    }

    .hero-car-bg img {
        width: 112%;
        max-width: none;
        max-height: 390px;
    }

    .hero-container {
        min-height: 500px;
        align-items: flex-start;
        padding-top: 56px;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .services-grid,
    .why-grid,
    .about-layout,
    .visit-grid,
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .available-cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-layout {
        gap: 30px;
    }

    .about-copy,
    .section-heading.right {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-hero {
        min-height: 560px;
    }

    .services-hero-exact {
        min-height: 560px;
        background-size: cover;
    }

    .services-hero-hotspots {
        top: 57%;
        width: min(420px, 72vw);
    }

    .services-hero-content {
        min-height: 380px;
        padding-top: 36px;
    }

    .services-hero h1 {
        font-size: clamp(34px, 7vw, 48px);
    }

    .services-hero-actions {
        flex-direction: column-reverse;
    }

    .services-hero-actions .btn {
        width: min(100%, 420px);
    }

    .hero-car-left {
        left: -8%;
        bottom: 140px;
        width: 34vw;
    }

    .hero-car-center {
        bottom: 72px;
        width: 42vw;
    }

    .hero-car-right {
        right: -8%;
        bottom: 140px;
        width: 34vw;
    }

    .rq-services-grid,
    .offer-card-large,
    .steps-grid,
    .why-service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .offer-card-large {
        display: flex;
        flex-direction: column-reverse;
    }

    .offer-image img {
        min-height: 300px;
    }

    .services-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 28px;
    }

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-container {
        gap: 12px;
    }

    .header-cta {
        width: auto;
        min-width: 126px;
        padding: 0 12px;
        font-size: 12px;
        border-radius: 999px;
    }

    .header-cta span {
        font-size: 13px;
    }

    .hero-container {
        min-height: 520px;
        padding-top: 44px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-car-bg {
        bottom: 24px;
        opacity: 0.64;
    }

    .hero-car-bg img {
        width: 142%;
        max-height: 330px;
        transform: translateX(-18%);
    }

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

    .btn {
        min-width: 0;
    }

    .section {
        padding: 44px 0;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .with-lines h2 {
        gap: 13px;
    }

    .with-lines h2::before,
    .with-lines h2::after {
        width: 28px;
    }

    .services-grid,
    .why-grid,
    .about-stats,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .available-cars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .available-car-image {
        height: 230px;
    }

    .footer-brand,
    .footer-copy {
        text-align: center;
    }

    .footer-social,
    .footer-copy,
    .footer-copy-social {
        justify-content: center;
    }

    .footer-copy {
        flex-direction: column;
    }

    .feature-card {
        min-height: auto;
        padding: 28px 20px;
    }

    .showroom-frame img,
    .map-card img {
        height: auto;
    }

    .contact-card {
        padding: 26px 18px;
    }

    .contact-list li {
        grid-template-columns: 28px 1fr;
    }

    .booking-bar {
        min-height: 58px;
        font-size: 18px;
    }

    .footer-layout {
        padding-top: 38px;
    }

    .services-hero {
        min-height: 535px;
    }

    .services-hero-exact {
        min-height: 535px;
        background-position: center top;
    }

    .services-hero-hotspots {
        top: 64%;
        width: min(410px, 88vw);
        height: 104px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .services-hero-content {
        padding-top: 26px;
    }

    .services-hero h1 {
        font-size: 34px;
    }

    .services-hero p {
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-car-left {
        left: -18%;
        bottom: 170px;
        width: 46vw;
    }

    .hero-car-center {
        bottom: 108px;
        width: 52vw;
    }

    .hero-car-right {
        right: -18%;
        bottom: 170px;
        width: 46vw;
    }

    .rq-services-grid,
    .steps-grid,
    .why-service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rq-service-card,
    .step-card {
        min-height: 140px;
        padding: 20px 18px;
        display: grid;
        grid-template-columns: 76px 1fr;
        text-align: right;
        align-items: center;
        column-gap: 12px;
    }

    .rq-service-card .line-icon,
    .step-card .line-icon {
        grid-row: span 2;
        margin: 0;
    }

    .rq-service-card h3,
    .step-card h3 {
        font-size: 18px;
    }

    .rq-service-card p,
    .step-card p {
        margin-top: 4px;
    }

    .rq-service-card::after {
        display: none;
    }

    .steps-grid .step-card {
        display: block;
        min-height: auto;
        padding: 0 10px;
        text-align: center;
        border: 0;
        background: transparent;
    }

    .steps-grid .step-card::before,
    .steps-grid .step-card::after {
        display: none;
    }

    .steps-grid .step-card .line-icon {
        width: 76px;
        height: 76px;
        margin: 0 auto 12px;
    }

    .steps-grid .step-number {
        left: calc(50% - 42px);
    }

    .offer-card-large {
        grid-template-columns: 1fr;
        margin-right: 12px;
        margin-left: 12px;
    }

    .offer-image img {
        min-height: 230px;
    }

    .offer-copy {
        padding: 26px 20px;
    }

    .offer-copy h2,
    .services-cta h2 {
        font-size: 27px;
    }

    .offer-copy li {
        font-size: 14px;
    }

    .offer-copy .btn {
        width: 100%;
    }

    .services-cta {
        margin-right: 12px;
        margin-left: 12px;
        min-height: 260px;
        padding: 24px 18px;
    }

    .services-cta-actions {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .services-cta-actions .btn {
        width: 100%;
    }

    .services-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .services-footer-brand img {
        margin-right: auto;
        margin-left: auto;
    }

    .services-footer .social-links {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .opening-hero {
        min-height: 620px;
    }

    .opening-hero-content {
        padding: 86px 0 64px;
    }

    .opening-feature,
    .opening-terms {
        grid-template-columns: 1fr;
    }

    .opening-feature {
        display: flex;
        flex-direction: column-reverse;
    }

    .opening-feature-image img,
    .opening-terms-image img {
        min-height: 300px;
    }

    .opening-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .opening-steps,
    .opening-partners {
        grid-template-columns: repeat(2, 1fr);
    }

    .opening-steps article::after {
        display: none;
    }

    .opening-final-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 34px 30px;
    }

    .opening-final-actions {
        justify-content: flex-start;
    }

    .about-hero {
        min-height: 560px;
    }

    .about-story-grid,
    .about-why-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-vision-grid,
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team-grid {
        gap: 30px;
    }

    .contact-hero {
        min-height: 560px;
    }

    .contact-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-copy {
        padding: 0;
        text-align: center;
    }

    .contact-socials {
        justify-content: center;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-index {
        position: static;
    }

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

@media (max-width: 560px) {
    .opening-hero {
        min-height: 560px;
        align-items: center;
    }

    .opening-hero-media {
        background-position: center;
    }

    .opening-hero-content {
        padding: 60px 0 42px;
    }

    .opening-hero h1 {
        font-size: 34px;
    }

    .opening-hero p {
        font-size: 15px;
        line-height: 1.75;
    }

    .opening-actions,
    .opening-final-actions {
        width: 100%;
    }

    .opening-actions .btn,
    .opening-final-actions .btn {
        width: 100%;
    }

    .opening-section {
        padding: 42px 0;
    }

    .opening-section.compact {
        padding: 30px 0;
    }

    .opening-feature-copy,
    .opening-terms-copy {
        padding: 26px 20px;
    }

    .opening-feature-copy h3,
    .opening-terms h2,
    .opening-final-cta h2 {
        font-size: 27px;
    }

    .opening-benefits,
    .opening-steps,
    .opening-partners {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .opening-benefits article,
    .opening-partners article {
        min-height: auto;
        padding: 24px 18px;
    }

    .opening-feature-image img,
    .opening-terms-image img {
        min-height: 230px;
    }

    .opening-mini-list {
        gap: 8px;
    }

    .opening-mini-list span {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }

    .opening-final-cta {
        margin-right: 12px;
        margin-left: 12px;
        min-height: 320px;
        padding: 26px 20px;
        background-position: center;
    }

    .about-hero {
        min-height: 520px;
    }

    .about-hero-content {
        padding: 62px 0;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-hero-actions,
    .about-final-cta div {
        width: 100%;
    }

    .about-hero-actions .btn,
    .about-final-cta .btn {
        width: 100%;
    }

    .about-story-section,
    .about-section,
    .about-team-section {
        padding: 40px 0;
    }

    .about-section.compact {
        padding: 30px 0;
    }

    .about-story-copy h2,
    .about-why-copy h2,
    .about-team-copy h2,
    .about-final-cta h2 {
        font-size: 27px;
    }

    .about-story-image,
    .about-team-image,
    .about-story-image img,
    .about-team-image img {
        min-height: 270px;
    }

    .about-vision-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-vision-grid article,
    .about-values-grid article,
    .about-stats-panel {
        padding: 24px 18px;
        min-height: auto;
    }

    .about-final-cta {
        margin-right: 12px;
        margin-left: 12px;
        padding: 30px 18px;
    }

    .contact-hero {
        min-height: 520px;
    }

    .contact-hero-content {
        width: min(100% - 24px, 760px);
        padding: 62px 0;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-hero p,
    .contact-form-copy p,
    .contact-map-panel p,
    .contact-help-cta p {
        font-size: 15px;
        line-height: 1.75;
    }

    .contact-hero-actions,
    .contact-help-cta div {
        width: 100%;
    }

    .contact-hero-actions .btn,
    .contact-help-cta .btn {
        width: 100%;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-section.compact {
        padding: 24px 0 40px;
    }

    .contact-info-panel,
    .contact-map-panel,
    .contact-form-card {
        padding: 22px 18px;
    }

    .contact-info-list a,
    .contact-info-list > div {
        grid-template-columns: 48px 1fr;
        padding: 13px;
    }

    .contact-info-list span {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .contact-map-image img {
        height: 230px;
    }

    .contact-form-copy h2,
    .contact-help-cta h2 {
        font-size: 27px;
    }

    .contact-help-cta {
        margin-right: 12px;
        margin-left: 12px;
        padding: 30px 18px;
    }

    .legal-hero {
        padding: 64px 0 46px;
    }

    .legal-hero h1,
    .thank-card h1 {
        font-size: 34px;
    }

    .legal-hero p,
    .legal-cta p,
    .thank-card p {
        font-size: 15px;
        line-height: 1.75;
    }

    .legal-section {
        padding: 38px 0;
    }

    .legal-content article {
        padding: 22px 18px;
    }

    .faq-list {
        width: min(100% - 24px, 930px);
    }

    .faq-item summary {
        padding: 20px 18px;
    }

    .faq-item summary span {
        font-size: 17px;
    }

    .faq-item p {
        padding: 0 18px 22px;
    }

    .legal-cta {
        margin-right: 12px;
        margin-left: 12px;
        padding: 30px 18px;
    }

    .legal-cta > div,
    .thank-actions {
        width: 100%;
    }

    .legal-cta .btn,
    .thank-actions .btn {
        width: 100%;
    }

    .thank-page {
        padding-top: 34px;
    }

    .thank-card {
        padding: 38px 18px;
    }
}
