:root {
    --brand-green: #5eb548;
    --brand-green-bright: #72cf57;
    --brand-blue: #0084ff;
    --brand-teal: #10b981;
    --brand-amber: #f59e0b;
    --bg: #080d15;
    --bg-deep: #05070a;
    --slate: #0e1725;
    --surface: #111b2a;
    --surface-soft: rgba(17, 27, 42, 0.68);
    --surface-dark: #0a101a;
    --border: rgba(148, 163, 184, 0.15);
    --border-bright: rgba(148, 163, 184, 0.26);
    --text: #f1f5f9;
    --muted: #a0acbd;
    --quiet: #657287;
    --container: 1240px;
    --radius: 24px;
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

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

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

section[id] {
    scroll-margin-top: 78px;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    background: rgba(8, 13, 21, 0.78);
    backdrop-filter: blur(18px);
    transition: background 0.22s ease, border-color 0.22s ease;
}

.header.scrolled {
    border-color: var(--border);
    background: rgba(8, 13, 21, 0.95);
}

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

.brand img {
    width: 202px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 34px);
    margin-left: auto;
    color: #d4dce6;
    font-size: 0.94rem;
    font-weight: 500;
}

.desktop-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--brand-green);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--brand-green-bright);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

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

.social {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.85);
    color: #d1d9e5;
    transition: background 0.2s ease, color 0.2s ease;
}

.social svg {
    width: 19px;
    height: 19px;
}

.social .filled,
.instagram-icon .filled {
    fill: currentColor;
    stroke: none;
}

.social-instagram:hover {
    background: linear-gradient(135deg, #f59e0b, #db2777, #7c3aed);
    color: white;
}

.social-facebook:hover {
    background: #1877f2;
    color: white;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: white;
    background: linear-gradient(110deg, var(--brand-green), var(--brand-green) 55%, var(--brand-teal));
    box-shadow: 0 14px 35px rgba(94, 181, 72, 0.15);
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 19px 40px rgba(94, 181, 72, 0.26);
}

.button svg {
    width: 18px;
    height: 18px;
}

.button-compact {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.9rem;
}

.button-large {
    min-height: 58px;
    padding: 15px 30px;
}

.button-outline {
    border-color: var(--border-bright);
    color: #dde5ef;
    background: rgba(30, 41, 59, 0.55);
    box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
    border-color: rgba(94, 181, 72, 0.4);
    background: rgba(30, 41, 59, 0.88);
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 76px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    background:
        radial-gradient(ellipse at top, #182435 0%, var(--bg) 48%, var(--bg-deep) 100%);
}

.hero-halo {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    filter: blur(105px);
    opacity: 0.16;
}

.hero-halo-green {
    top: 110px;
    left: -150px;
    background: var(--brand-green);
}

.hero-halo-blue {
    right: -120px;
    bottom: 50px;
    background: var(--brand-blue);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(460px, 1.18fr) minmax(350px, 0.85fr);
    gap: 62px;
    align-items: center;
}

.hero-grid > *,
.about-grid > *,
.motor-grid > *,
.contact-grid > * {
    min-width: 0;
}

.pill {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 30px;
    padding: 8px 14px;
    border: 1px solid rgba(94, 181, 72, 0.3);
    border-radius: 999px;
    color: var(--brand-green-bright);
    background: linear-gradient(90deg, rgba(94, 181, 72, 0.12), rgba(0, 132, 255, 0.1));
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 7px rgba(94, 181, 72, 0.12);
}

.overline,
.section-kicker {
    margin: 0 0 12px;
    color: var(--brand-green-bright);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 24px;
    font-size: clamp(3.35rem, 5.4vw, 5.15rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1.01;
}

.hero h1 strong {
    color: transparent;
    background: linear-gradient(100deg, var(--brand-green-bright), var(--brand-blue));
    background-clip: text;
}

.lead {
    max-width: 650px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.8vw, 1.17rem);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 54px;
}

.hero-metrics {
    max-width: 635px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.hero-metrics strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.65rem;
    line-height: 1.2;
}

.hero-metrics strong.green {
    color: var(--brand-green-bright);
}

.hero-metrics strong.blue {
    color: var(--brand-blue);
}

.hero-metrics span {
    color: var(--quiet);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -13px;
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(94, 181, 72, 0.15), rgba(0, 132, 255, 0.14));
    filter: blur(22px);
}

.image-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 29px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-visual .image-frame {
    padding: 12px;
}

.hero-visual img {
    width: 100%;
    height: 492px;
    border-radius: 20px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    right: 32px;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border-bright);
    border-radius: 17px;
    background: rgba(14, 23, 37, 0.91);
    backdrop-filter: blur(15px);
}

.caption-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--brand-green-bright);
    background: rgba(94, 181, 72, 0.15);
}

.caption-icon svg {
    width: 26px;
    height: 26px;
}

.image-caption strong {
    display: block;
    font-size: 0.9rem;
}

.image-caption p {
    margin: 2px 0 0;
    color: var(--brand-green-bright);
    font-size: 0.84rem;
    font-weight: 600;
}

.section {
    position: relative;
    padding: 92px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.section h2 {
    margin: 0;
    font-size: clamp(2.25rem, 4vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.12;
}

.about {
    background: linear-gradient(180deg, var(--bg), #080f19);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(350px, 0.9fr) minmax(440px, 1fr);
    gap: 66px;
    align-items: center;
}

.about-photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 80px 34px 30px;
    background: linear-gradient(0deg, rgba(3, 6, 10, 0.9), transparent);
}

.photo-overlay h3 {
    margin: 0 0 6px;
    font-size: 1.35rem;
}

.photo-overlay p {
    margin: 0;
    color: #d0d9e4;
    font-size: 0.9rem;
}

.rich-text {
    margin: 27px 0 32px;
    color: var(--muted);
}

.rich-text p {
    margin: 0 0 18px;
}

.rich-text strong {
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin: 0 0 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.green-bg {
    color: var(--brand-green-bright);
    background: rgba(94, 181, 72, 0.13);
}

.blue-bg {
    color: var(--brand-blue);
    background: rgba(0, 132, 255, 0.12);
}

.feature strong {
    display: block;
    font-size: 0.91rem;
}

.feature p {
    margin: 3px 0 0;
    color: var(--quiet);
    font-size: 0.76rem;
}

.services {
    background: var(--bg);
}

.section-center {
    max-width: 770px;
    margin: 0 auto 53px;
    text-align: center;
}

.section-center > p:not(.section-kicker) {
    margin: 15px auto 0;
    color: var(--muted);
}

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

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-soft);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-3px);
}

.service-image {
    position: relative;
    height: 228px;
    overflow: hidden;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--surface), transparent 52%);
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.interior-image img {
    object-position: 72% center;
}

.motor-card-image img {
    object-position: center 64%;
}

.tag {
    position: absolute;
    z-index: 1;
    bottom: 18px;
    left: 20px;
    padding: 5px 11px;
    border-radius: 7px;
    color: white;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.green-tag {
    background: var(--brand-green);
}

.blue-tag {
    background: var(--brand-blue);
}

.amber-tag {
    color: #17120b;
    background: var(--brand-amber);
}

.service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.service-body h3 {
    margin: 0 0 10px;
    font-size: 1.29rem;
}

.service-body > p {
    min-height: 48px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 0.88rem;
}

.check-list {
    list-style: none;
    margin: 0 0 23px;
    padding: 18px 0 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.8rem;
}

.check-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 25px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 1px;
    color: var(--brand-green-bright);
    font-weight: 700;
}

.blue-list li::before {
    color: var(--brand-blue);
}

.amber-list li::before {
    color: var(--brand-amber);
}

.text-link {
    width: fit-content;
    margin-top: auto;
    padding: 0;
    border: 0;
    color: var(--brand-green-bright);
    background: transparent;
    font-size: 0.86rem;
    font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
    text-decoration: underline;
}

.motor-showcase {
    overflow: hidden;
    background: #070f1a;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: rgba(94, 181, 72, 0.08);
    filter: blur(100px);
    transform: translate(-50%, -50%);
}

.motor-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.67fr) minmax(470px, 1fr);
    gap: 58px;
    align-items: center;
}

.amber {
    color: var(--brand-amber);
}

.motor-copy > p:not(.section-kicker) {
    margin: 20px 0 26px;
    color: var(--muted);
}

.evidence-note {
    display: grid;
    gap: 3px;
    margin-bottom: 29px;
    padding: 17px 19px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-soft);
}

.evidence-note strong {
    color: var(--brand-green-bright);
    font-size: 0.82rem;
}

.evidence-note span {
    color: var(--muted);
    font-size: 0.8rem;
}

.motor-comparison {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border-bright);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.motor-comparison img {
    width: 100%;
    max-height: 635px;
    object-fit: cover;
}

.motor-comparison figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.motor-comparison figcaption span:first-child {
    color: #fb7185;
}

.motor-comparison figcaption span:last-child {
    color: var(--brand-green-bright);
}

.pricing {
    background: linear-gradient(180deg, #070f1a, var(--bg));
}

.pricing-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 38px;
}

.pricing-head > div {
    max-width: 780px;
}

.pricing-head p:not(.section-kicker) {
    margin: 13px 0 0;
    color: var(--muted);
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 39px;
}

.filter {
    min-height: 43px;
    padding: 9px 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(17, 27, 42, 0.74);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.filter:hover,
.filter.active {
    border-color: var(--brand-green);
    color: white;
    background: var(--brand-green);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 27px 23px 23px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(17, 27, 42, 0.66);
}

.price-card.is-hidden {
    display: none;
}

.price-card.highlighted {
    border: 2px solid rgba(94, 181, 72, 0.72);
    background: linear-gradient(180deg, rgba(25, 39, 58, 0.95), rgba(12, 20, 32, 0.94));
    box-shadow: 0 15px 42px rgba(94, 181, 72, 0.1);
}

.popular {
    position: absolute;
    top: -15px;
    right: 22px;
    padding: 6px 14px;
    border-radius: 999px;
    color: white;
    background: var(--brand-green);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.price-badge {
    width: fit-content;
    margin-bottom: 19px;
    padding: 5px 10px;
    border-radius: 6px;
    color: var(--brand-green-bright);
    background: rgba(94, 181, 72, 0.1);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blue-badge {
    color: #5badff;
    background: rgba(0, 132, 255, 0.1);
}

.purple-badge {
    color: #c084fc;
    background: rgba(168, 85, 247, 0.1);
}

.amber-badge {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
}

.price-card h3 {
    margin: 0 0 8px;
    min-height: 58px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.price-subtitle {
    min-height: 50px;
    margin: 0 0 20px;
    color: var(--quiet);
    font-size: 0.76rem;
}

.price {
    min-height: 75px;
    margin: 0 0 17px;
    color: white;
    font-size: clamp(1.45rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.25;
}

.price small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0;
}

.price-card .check-list {
    flex: 1;
}

.button-card {
    width: 100%;
    min-height: 47px;
    padding: 11px 15px;
    border-color: var(--border-bright);
    background: rgba(30, 41, 59, 0.82);
    box-shadow: none;
    font-size: 0.84rem;
}

.highlighted .button-card {
    border-color: transparent;
    background: linear-gradient(110deg, var(--brand-green), var(--brand-teal));
}

.booking {
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg), #101a29);
}

.booking-glow {
    position: absolute;
    right: 0;
    bottom: -280px;
    left: 0;
    height: 520px;
    background: radial-gradient(ellipse at bottom, rgba(94, 181, 72, 0.13), transparent 62%);
}

.booking-container {
    position: relative;
    max-width: 970px;
}

.booking-title {
    margin-bottom: 37px;
}

.booking-form {
    padding: 36px 39px 31px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(17, 27, 42, 0.67);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.field {
    margin-bottom: 21px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    background: rgba(5, 9, 15, 0.72);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 2px rgba(94, 181, 72, 0.14);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #59677b;
}

.field textarea {
    resize: vertical;
}

.whatsapp-button {
    width: 100%;
    min-height: 60px;
    margin-top: 6px;
    font-size: 1rem;
}

.whatsapp-button svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
    stroke: none;
}

.form-note {
    margin: 15px 0 0;
    color: var(--quiet);
    text-align: center;
    font-size: 0.77rem;
}

.form-feedback {
    min-height: 22px;
    margin: 10px 0 0;
    color: var(--brand-green-bright);
    text-align: center;
    font-size: 0.82rem;
}

.form-feedback.error {
    color: #fda4af;
}

.instagram-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 43px;
    padding: 27px 31px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(110deg, rgba(88, 28, 135, 0.12), rgba(157, 23, 77, 0.12));
}

.instagram-copy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.instagram-icon {
    width: 57px;
    height: 57px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    background: linear-gradient(135deg, #fbbf24, #db2777, #7c3aed);
}

.instagram-icon svg {
    width: 29px;
    height: 29px;
}

.instagram-copy h3 {
    margin: 0 0 3px;
    font-size: 1.08rem;
}

.instagram-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.instagram-button {
    padding: 13px 25px;
    border-radius: 11px;
    color: white;
    background: linear-gradient(110deg, #db2777, #7c3aed);
    font-weight: 700;
}

.contact {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr minmax(340px, 0.82fr);
    gap: 53px;
    align-items: start;
}

.contact-details > p:not(.section-kicker) {
    max-width: 590px;
    margin: 18px 0 31px;
    color: var(--muted);
}

.details-list {
    display: grid;
    gap: 15px;
    margin-bottom: 31px;
}

.details-list a,
.details-list > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--brand-green-bright);
    background: var(--surface);
    font-size: 0.68rem;
    font-weight: 800;
}

.details-list small {
    display: block;
    color: var(--quiet);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.details-list strong {
    display: block;
    font-size: 0.95rem;
}

.map {
    position: relative;
    height: 294px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--surface);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9);
    opacity: 0.73;
}

.map a {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--brand-green-bright);
    background: rgba(8, 13, 21, 0.92);
    font-size: 0.77rem;
    font-weight: 700;
}

.contact-card {
    padding: 37px;
    border: 1px solid var(--border);
    border-radius: 27px;
    background: rgba(17, 27, 42, 0.67);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    margin: 0 0 15px;
    font-size: 1.7rem;
    line-height: 1.2;
}

.contact-card > p:not(.section-kicker) {
    margin: 0 0 28px;
    color: var(--muted);
}

.contact-card ul {
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
    color: #d5dfeb;
}

.contact-card li {
    position: relative;
    margin-bottom: 16px;
    padding-left: 31px;
}

.contact-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-green-bright);
    font-weight: bold;
}

.footer {
    padding: 54px 0 0;
    background: var(--bg-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.7fr 1fr 0.95fr;
    gap: 42px;
    padding-bottom: 44px;
}

.footer-brand img {
    width: 185px;
    margin-bottom: 19px;
}

.footer p {
    margin: 0 0 16px;
    color: var(--quiet);
    font-size: 0.84rem;
}

.footer h3 {
    margin: 0 0 18px;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    color: var(--quiet);
    list-style: none;
    font-size: 0.84rem;
}

.footer a:hover {
    color: var(--brand-green-bright);
}

.footer-socials {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 0.84rem;
}

.footer-highlight {
    color: var(--brand-green-bright) !important;
    font-weight: 700;
}

.footer-cta .button {
    min-height: 46px;
    padding: 10px 19px;
    font-size: 0.85rem;
}

.copyright {
    padding: 22px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.copyright p {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 18px;
    }

    .header-actions .social {
        display: none;
    }

    .hero-grid,
    .about-grid,
    .motor-grid {
        gap: 42px;
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        width: 46px;
        height: 44px;
        display: grid;
        align-content: center;
        gap: 5px;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 11px;
        color: white;
        background: rgba(17, 27, 42, 0.85);
    }

    .menu-toggle span:not(.sr-only) {
        height: 2px;
        border-radius: 2px;
        background: currentColor;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        display: none;
        gap: 4px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(8, 13, 21, 0.98);
        box-shadow: var(--shadow);
    }

    .mobile-menu.open {
        display: grid;
    }

    .mobile-menu > a:not(.button) {
        padding: 11px 12px;
        color: var(--muted);
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .about-grid,
    .motor-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

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

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

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-row {
        min-height: 70px;
    }

    .brand img {
        width: 170px;
    }

    .hero {
        padding: 105px 0 58px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 14vw, 3.2rem);
    }

    .lead {
        overflow-wrap: break-word;
    }

    .pill {
        font-size: 0.62rem;
    }

    .hero-buttons {
        display: grid;
        margin-bottom: 39px;
    }

    .hero-metrics {
        gap: 12px;
    }

    .hero-metrics strong {
        font-size: 1.16rem;
    }

    .hero-metrics span {
        font-size: 0.63rem;
    }

    .hero-visual img {
        height: 405px;
    }

    .image-caption {
        right: 22px;
        bottom: 22px;
        left: 22px;
        gap: 12px;
        padding: 13px;
    }

    .section {
        padding: 65px 0;
    }

    .about-photo img {
        height: 435px;
    }

    .feature-grid,
    .price-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-head,
    .instagram-callout {
        display: block;
    }

    .pricing-head > .text-link {
        display: inline-block;
        margin-top: 22px;
    }

    .booking-form,
    .contact-card {
        padding: 23px;
    }

    .instagram-button {
        display: inline-flex;
        margin-top: 20px;
    }

    .motor-comparison figcaption {
        gap: 10px;
        font-size: 0.62rem;
    }
}
