:root {
    --bg: #090b0d;
    --bg-2: #0f1318;
    --panel: rgba(255,255,255,0.05);
    --panel-2: rgba(255,255,255,0.08);
    --stroke: rgba(255,255,255,0.09);
    --text: #f5f7fa;
    --muted: #a7aeb8;
    --accent: #cbb07a;
    --accent-2: #8f7a54;
    --shadow: 0 24px 70px rgba(0,0,0,0.45);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1280px;
    --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background:
            radial-gradient(circle at 15% 0%, rgba(203,176,122,0.08), transparent 22%),
            radial-gradient(circle at 85% 15%, rgba(203,176,122,0.06), transparent 26%),
            linear-gradient(180deg, #08090b 0%, #0c1014 50%, #08090b 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.section { padding: 88px 0; }

.section-title {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.section-subtitle {
    margin: 0 0 34px;
    max-width: 780px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    backdrop-filter: blur(18px);
    background: rgba(8,10,12,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
            linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
            radial-gradient(circle at 30% 20%, rgba(203,176,122,0.22), transparent 40%);
    display: grid;
    place-items: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    font-family: Georgia, "Times New Roman", serif;
    color: var(--accent);
    font-size: 29px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.brand-copy { display: grid; gap: 4px; }
.brand-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.22em;
}
.brand-subtitle {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav a {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    transition: .2s ease;
}

.nav a:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.nav .cta-mini {
    background: var(--accent);
    color: #111;
    font-weight: 600;
}

.hero {
    padding: 26px 0 46px;
}

.hero-shell {
    min-height: 760px;
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    background:
            linear-gradient(110deg, rgba(6,8,10,0.92) 0%, rgba(6,8,10,0.8) 42%, rgba(6,8,10,0.28) 100%),
            url('./images/template/ar.png') center right / cover no-repeat;
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 80% 18%, rgba(203,176,122,0.2), transparent 18%),
            linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 760px;
}

.hero-content {
    padding: 84px 58px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #c4cad2;
    font-size: 13px;
    margin-bottom: 22px;
}
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(203,176,122,0.5);
}

.hero-title {
    margin: 0 0 20px;
    max-width: 700px;
    font-size: clamp(42px, 7vw, 84px);
    line-height: .94;
    letter-spacing: -0.06em;
    font-weight: 700;
}

.hero-title span {
    display: block;
    color: #d7dde4;
    font-size: .4em;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-top: 16px;
    font-weight: 500;
}

.hero-lead {
    max-width: 680px;
    color: #c1c8d0;
    display: grid;
    gap: 18px;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn {
    min-height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .25s ease;
}
.btn-primary {
    background: linear-gradient(180deg, #d7be8d, #c6a870);
    color: #121212;
    box-shadow: 0 14px 32px rgba(203,176,122,0.24);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-secondary {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    color: var(--text);
}
.btn-secondary:hover { background: rgba(255,255,255,0.07); }

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
}

.point {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
}

.point strong {
    display: block;
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 6px;
}

.point span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.hero-side {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 38px;
}

.hero-side-card {
    width: min(100%, 470px);
    padding: 22px;
    border-radius: 24px;
    background: rgba(8,10,13,0.58);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.34);
    margin-left: auto;
    align-self: flex-end;
}

.hero-side-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.hero-side-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.service-pill {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.service-pill strong {
    display: block;
    color: var(--text);
    margin-bottom: 6px;
}

.slider-shell {
    position: relative;
}

.slider-controls {
    position: absolute;
    right: 0;
    top: -72px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    transition: .2s ease;
    backdrop-filter: blur(16px);
}

.slider-btn:hover { background: rgba(255,255,255,0.09); }

.slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 18px;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.slide {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
}

.card {
    min-height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
}

.service-cover {
    position: relative;
    min-height: 240px;
    background:
            radial-gradient(circle at 72% 20%, rgba(203,176,122,0.22), transparent 22%),
            linear-gradient(135deg, #1b2129 0%, #0f1318 52%, #171c23 100%);
    overflow: hidden;
}

.service-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.36) 100%);
}

.service-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 25px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
    backdrop-filter: blur(16px);
}

.service-scene {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0;
}

.service-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    opacity: .82;
    mix-blend-mode: screen;
    filter: saturate(.95) contrast(1.04);
}

.service-body,
.fleet-body {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.service-body h3,
.fleet-body h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.service-body p,
.fleet-body p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.78;
}

.service-meta,
.fleet-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.tag {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #d8dde4;
    font-size: 12px;
}

.fleet-card {
    display: flex;
    flex-direction: column;
    min-height: 560px;
}

.fleet-cover {
    position: relative;
    min-height: 237px;
    overflow: hidden;
    background: #11161b;
}

.fleet-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.fleet-card:hover .fleet-cover img {
    transform: scale(1.035);
}

.fleet-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.58) 100%),
            radial-gradient(circle at 84% 15%, rgba(203,176,122,0.16), transparent 22%);
    pointer-events: none;
}

.fleet-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(8,10,13,0.58);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    color: var(--text);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.fleet-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

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

.contact-card,
.contact-form {
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-card h3,
.contact-form h3 {
    margin: 0 0 18px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-item .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    flex: none;
}

.contact-item strong { display: block; margin-bottom: 4px; }
.contact-item span { color: var(--muted); line-height: 1.65; font-size: 14px; }

.contact-note {
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.form-grid { display: grid; gap: 14px; }
.input,
.textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font: inherit;
    padding: 16px 18px;
    outline: none;
    transition: .2s ease;
}

.input:focus,
.textarea:focus {
    border-color: rgba(203,176,122,0.55);
    box-shadow: 0 0 0 4px rgba(203,176,122,0.1);
}

.textarea { min-height: 150px; resize: vertical; }

.footer {
    padding: 28px 0 48px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 14px;
}

.btn-order {
    margin-top: 4px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(203,176,122,0.35);
    background: rgba(203,176,122,0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
    white-space: nowrap;
}

.btn-order:hover {
    background: rgba(203,176,122,0.18);
    border-color: rgba(203,176,122,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: min(760px, calc(100% - 32px));
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: rgba(15,19,24,0.92);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: opacity .3s ease, transform .3s ease;
}

.cookie-banner.cookie-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
    pointer-events: none;
}

.cookie-text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    flex: 1;
}

.cookie-btn {
    min-height: 40px;
    padding: 0 22px;
    font-size: 14px;
    flex: none;
}

@media (max-width: 760px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        bottom: 16px;
        gap: 12px;
    }
}

@media (max-width: 1180px) {
    .hero-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 64px 34px 20px; }
    .hero-side { padding: 0 34px 34px; justify-content: flex-start; }
    .hero-side-card { margin-left: 0; }
    .slide { flex-basis: calc((100% - 18px) / 2); }
    .service-strip,
    .hero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .nav { display: none; }
    .section { padding: 68px 0; }
    .hero-shell { min-height: auto; border-radius: 28px; }
    .hero-grid { min-height: auto; }
    .hero-content { padding: 46px 22px 18px; }
    .hero-side { padding: 0 22px 22px; }
    .hero-title { font-size: clamp(36px, 12vw, 58px); }
    .hero-lead { font-size: 16px; }
    .service-strip,
    .hero-points { grid-template-columns: 1fr; }
    .slide { flex-basis: 100%; }
    .slider-controls {
        position: static;
        margin-bottom: 18px;
        justify-content: flex-end;
    }
    .contact-card,
    .contact-form { padding: 22px; }
    .brand-title { font-size: 16px; }
    .section-title { font-size: clamp(30px, 8vw, 44px); }
    .section-subtitle { font-size: 15px; }
}
