:root {
    color-scheme: light;
    --bg: #f3f6fa;
    --ink: #121826;
    --ink-strong: #071225;
    --muted: #667386;
    --line: #dce4ee;
    --surface: #ffffff;
    --surface-soft: #f7f9fc;
    --navy: #071428;
    --navy-2: #0b1d36;
    --blue: #1f5fd0;
    --green: #18a66e;
    --green-dark: #0e7d52;
    --gold: #d7a034;
    --shadow-sm: 0 10px 30px rgba(7, 18, 37, 0.08);
    --shadow-md: 0 24px 70px rgba(7, 18, 37, 0.14);
    --radius: 8px;
    --container: min(1180px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

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

img,
svg {
    display: block;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.96;
    font-weight: 920;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    color: var(--ink-strong);
    font-size: clamp(32px, 4.1vw, 56px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    color: var(--ink-strong);
    font-size: 22px;
    line-height: 1.18;
    font-weight: 860;
    letter-spacing: 0;
}

p {
    color: var(--muted);
    line-height: 1.62;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: var(--container);
    margin: 14px auto 0;
    padding: 10px 12px 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(7, 20, 40, 0.84);
    color: #fff;
    box-shadow: 0 18px 60px rgba(7, 20, 40, 0.24);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(7, 20, 40, 0.96);
    box-shadow: 0 16px 46px rgba(7, 20, 40, 0.3);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 150px;
}

.brand img {
    width: 148px;
    max-height: 48px;
    object-fit: contain;
    padding: 5px 9px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 11px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 780;
    transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-1px);
}

.site-nav .nav-cta {
    margin-left: 6px;
    padding-inline: 16px;
    background: var(--green);
    color: #fff;
}

.site-nav .nav-cta:hover {
    background: var(--green-dark);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 4px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.language-switcher a {
    min-height: 32px;
    padding: 7px 8px;
    font-size: 12px;
}

.language-switcher a.is-active {
    background: #fff;
    color: var(--navy);
}

.menu-button {
    display: none;
    min-height: 42px;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.menu-button strong {
    margin-left: 5px;
    font-size: 13px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 160px max(20px, calc((100vw - 1180px) / 2)) 28px;
    background:
        linear-gradient(100deg, rgba(7, 20, 40, 0.99) 0%, rgba(7, 20, 40, 0.94) 48%, rgba(7, 20, 40, 0.82) 100%),
        #071428;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 72%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-background img {
    position: absolute;
    right: -3vw;
    top: 50%;
    width: min(740px, 56vw);
    opacity: 0.12;
    transform: translateY(-48%);
    filter: grayscale(1) contrast(1.08);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: calc(92vh - 188px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 54px;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.hero-copy {
    max-width: 720px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.48;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 860;
    line-height: 1;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.button-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 15px 34px rgba(24, 166, 110, 0.26);
}

.button-primary:hover {
    background: var(--green-dark);
    box-shadow: 0 18px 42px rgba(14, 125, 82, 0.28);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.13);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-badges span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 760;
}

.hero-visual {
    justify-self: end;
    width: 100%;
}

.fleet-card {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.fleet-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-top: 3px solid rgba(24, 166, 110, 0.82);
    pointer-events: none;
}

.fleet-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 760;
}

.fleet-card-top strong {
    margin-left: auto;
    color: #fff;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(24, 166, 110, 0.14);
}

.fleet-phone {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: var(--radius);
    background: #f8fafc;
    color: var(--ink);
}

.screen-line {
    width: 62%;
    height: 9px;
    border-radius: 999px;
    background: #dce4ee;
}

.screen-line.wide {
    width: 82%;
}

.app-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.app-row span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink-strong);
    font-weight: 860;
}

.route-card {
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
}

.route-card.light {
    background: #eaf6f0;
    color: var(--ink-strong);
}

.route-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.route-card.light span {
    color: var(--green-dark);
}

.plate-card {
    position: absolute;
    right: 26px;
    bottom: -18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 2px solid #111827;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    box-shadow: 0 15px 36px rgba(0, 0, 0, 0.2);
}

.plate-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 32px;
    border-radius: 4px;
    background: #1d4ed8;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.plate-card strong {
    letter-spacing: 0;
}

.trust-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.trust-strip span {
    min-height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

.trust-strip strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 16px;
}

.section,
.contact-section,
.company-section {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 34px;
}

.section-heading.narrow {
    display: block;
    max-width: 780px;
}

.section-heading > p,
.section-heading.narrow p,
.section-copy p,
.contact-intro p {
    font-size: 18px;
}

.platforms-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-card,
.benefit-card {
    position: relative;
    min-height: 250px;
    padding: 24px;
    border: 1px solid rgba(220, 228, 238, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.platform-card::after,
.benefit-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    opacity: 0;
    transition: opacity 180ms ease;
}

.platform-card:hover,
.benefit-card:hover {
    border-color: rgba(31, 95, 208, 0.34);
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.platform-card:hover::after,
.benefit-card:hover::after {
    opacity: 1;
}

.platform-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.platform-card h3 {
    font-size: 28px;
}

.benefit-card svg {
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    padding: 9px;
    border-radius: var(--radius);
    background: #eef5ff;
    color: var(--blue);
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.platform-card p,
.benefit-card p {
    margin-bottom: 0;
}

.benefits-grid .benefit-card:last-child {
    min-height: auto;
    grid-column: span 3;
}

.compact-benefits .benefit-card {
    min-height: 214px;
}

.compact-benefits .benefit-card:last-child {
    grid-column: auto;
}

.trust-company-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.58fr);
    gap: 34px;
    align-items: center;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.96)),
        #fff;
    box-shadow: var(--shadow-md);
}

.trust-company-panel h2 {
    margin-bottom: 18px;
}

.google-note {
    display: inline-flex;
    margin: 10px 0 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: #eef5ff;
    color: var(--blue);
    font-weight: 850;
}

.trust-company-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.trust-company-grid article {
    min-height: 112px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 22px rgba(8, 17, 31, 0.05);
}

.trust-company-grid article:last-child {
    grid-column: 1 / -1;
}

.trust-company-grid span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-company-grid strong {
    color: var(--ink-strong);
    font-size: 20px;
    line-height: 1.18;
}

.area-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.48fr);
    gap: 42px;
    align-items: center;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.96)),
        #fff;
    box-shadow: var(--shadow-md);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.area-grid article {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 880;
    transition: transform 180ms ease, background 180ms ease;
}

.area-grid article:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

.section-dark {
    width: 100%;
    margin: 0;
    padding: 108px max(20px, calc((100vw - 1180px) / 2));
    background: var(--navy);
}

.section-dark h2,
.section-dark .section-heading p {
    color: #fff;
}

.section-dark .section-heading > p {
    color: rgba(255, 255, 255, 0.68);
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-list li {
    min-height: 256px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.74);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.steps-list li:hover {
    border-color: rgba(215, 160, 52, 0.48);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.steps-list span {
    min-width: 42px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    padding: 0 10px;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
}

.steps-list strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 19px;
    line-height: 1.22;
}

.steps-list p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.52;
}

.documents-section {
    border-bottom: 1px solid var(--line);
}

.seo-section {
    padding-top: 0;
}

.seo-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.seo-panel h2 {
    max-width: 920px;
    margin-bottom: 18px;
}

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

.seo-copy p {
    margin-bottom: 0;
}

.documents-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(340px, 0.5fr);
    gap: 58px;
    align-items: start;
}

.required-docs-layout {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.92fr);
}

.section-copy {
    max-width: 720px;
}

.section-copy h2 {
    margin-bottom: 18px;
}

.section-copy small {
    display: block;
    margin-top: 18px;
    padding: 16px;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: #fff8e8;
    color: #6f5a25;
    line-height: 1.55;
}

.document-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.required-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.document-card {
    min-height: 178px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.document-card:hover {
    border-color: rgba(24, 166, 110, 0.36);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.document-card span {
    display: inline-flex;
    min-width: 38px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 0 10px;
    border-radius: var(--radius);
    background: #eaf6f0;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
}

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

.document-card p {
    margin-bottom: 0;
}

.section-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.section-cta strong {
    color: var(--ink-strong);
    font-size: 20px;
}

.section-cta-dark {
    width: var(--container);
    margin: 24px auto 0;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.section-cta-dark strong {
    color: #fff;
}

.document-list li,
.driver-types-grid article {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 14px 18px 14px 52px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 22px rgba(8, 17, 31, 0.05);
    color: var(--ink-strong);
    font-weight: 760;
}

.document-list li::before,
.driver-types-grid article::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: var(--green);
    box-shadow: inset 0 0 0 4px #dff7ed;
}

.driver-types-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.seo-topic-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.seo-topic-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.seo-topic-card:hover {
    border-color: rgba(31, 95, 208, 0.28);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.seo-topic-card span {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 860;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-topic-card strong {
    color: var(--ink-strong);
    font-size: 25px;
    line-height: 1.08;
    font-weight: 900;
}

.seo-topic-card p {
    margin-bottom: 0;
    font-size: 15px;
}

.driver-types-grid article {
    align-items: flex-start;
    min-height: 122px;
    padding-top: 20px;
    line-height: 1.35;
}

.rental-section {
    padding-top: 0;
}

.rental-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 32px;
    border: 1px solid rgba(31, 95, 208, 0.18);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(7, 20, 40, 0.96), rgba(11, 29, 54, 0.94)),
        var(--navy);
    box-shadow: var(--shadow-md);
}

.rental-panel h2,
.rental-panel .section-copy p {
    color: #fff;
}

.rental-panel .section-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.rental-panel .section-copy .button {
    margin-top: 10px;
}

.rental-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.rental-actions .button {
    margin-top: 0;
}

.rental-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.rental-features article {
    min-height: 104px;
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 820;
    line-height: 1.35;
}

.fleet-cars-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fleet-car-card {
    min-height: 248px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fleet-car-card:hover {
    border-color: rgba(141, 224, 189, 0.48);
    background: rgba(255, 255, 255, 0.17);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
    transform: translateY(-3px);
}

.fleet-car-card span {
    color: #9ef0c9;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fleet-car-card h3 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.08;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

.fleet-car-card p {
    margin-bottom: 0;
    color: rgba(237, 244, 252, 0.92);
    font-size: 14px;
    line-height: 1.55;
}

.fleet-car-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 40px;
    margin-top: auto;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 26px rgba(24, 166, 110, 0.28);
    font-weight: 900;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fleet-car-card a:hover {
    background: var(--green-dark);
    color: #fff;
    box-shadow: 0 14px 30px rgba(14, 125, 82, 0.34);
    transform: translateY(-2px);
}

.fleet-car-card-wide {
    grid-column: 1 / -1;
    min-height: 180px;
}

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

.language-card {
    min-height: 210px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.language-card:hover {
    border-color: rgba(24, 166, 110, 0.36);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.language-card span {
    width: 48px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    font-weight: 900;
}

.language-card strong {
    color: var(--ink-strong);
    font-size: 24px;
    line-height: 1.12;
}

.language-card p {
    margin-bottom: 0;
}

.final-cta-section {
    padding-top: 0;
}

.final-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(7, 20, 40, 0.98), rgba(11, 29, 54, 0.94)),
        var(--navy);
    box-shadow: var(--shadow-md);
}

.final-cta-panel h2,
.final-cta-panel p {
    color: #fff;
}

.final-cta-panel h2 {
    margin-bottom: 10px;
    font-size: clamp(30px, 3.6vw, 48px);
}

.final-cta-panel p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(420px, 0.68fr);
    gap: 54px;
    align-items: start;
    padding: 96px 0;
    border-top: 1px solid var(--line);
}

.contact-intro {
    position: sticky;
    top: 112px;
}

.contact-intro h2 {
    margin-bottom: 18px;
}

.quick-contact {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    margin-top: 10px;
    margin-right: 8px;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    font-weight: 840;
    transition: background 180ms ease, transform 180ms ease;
}

.quick-contact:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.quick-contact-alt {
    background: var(--blue);
}

.quick-contact-alt:hover {
    background: var(--navy);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.field {
    display: grid;
    gap: 8px;
}

.field-full,
.form-footer {
    grid-column: 1 / -1;
}

label {
    color: var(--ink-strong);
    font-size: 14px;
    font-weight: 820;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #cfd9e7;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(31, 95, 208, 0.12);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #d03535;
    box-shadow: 0 0 0 4px rgba(208, 53, 53, 0.12);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 4px;
}

.form-status {
    margin: 0;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 760;
}

.form-status.is-error {
    color: #b42318;
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 22px rgba(8, 17, 31, 0.05);
    overflow: hidden;
}

.faq-list summary {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    color: var(--ink-strong);
    cursor: pointer;
    font-size: 18px;
    font-weight: 840;
}

.faq-list summary::after {
    content: "+";
    color: var(--green-dark);
    font-size: 24px;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;
    padding: 0 20px 20px;
}

.company-section {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(340px, 0.5fr);
    gap: 40px;
    align-items: end;
    padding: 78px 0;
    border-top: 1px solid var(--line);
}

.seo-landing .hero-grid {
    min-height: calc(78vh - 150px);
}

.seo-summary-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.seo-summary-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.seo-summary-card strong {
    display: block;
    color: #fff;
    font-size: 30px;
    line-height: 1.08;
}

.seo-summary-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.75);
}

.seo-page-layout {
    width: var(--container);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 34px;
    align-items: start;
    margin: 0 auto;
    padding: 92px 0;
}

.seo-article {
    display: grid;
    gap: 22px;
}

.seo-panel-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.seo-panel-card p,
.seo-panel-card li {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.seo-panel-card p:last-child,
.seo-panel-card ul:last-child,
.seo-panel-card ol:last-child {
    margin-bottom: 0;
}

.seo-panel-card ul,
.seo-panel-card ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.seo-panel-card h2 {
    margin-bottom: 18px;
    font-size: clamp(28px, 3vw, 42px);
}

.seo-panel-card h3 {
    margin-top: 8px;
}

.seo-aside {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 14px;
}

.seo-aside-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.seo-aside-card p {
    color: rgba(255, 255, 255, 0.72);
}

.seo-aside-card .button {
    width: 100%;
    margin-top: 8px;
}

.seo-link-list {
    display: grid;
    gap: 8px;
}

.seo-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink-strong);
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.seo-link-list a:hover {
    border-color: rgba(31, 95, 208, 0.36);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.seo-link-list a::after {
    content: "→";
    color: var(--green-dark);
}

.seo-faq {
    display: grid;
    gap: 10px;
}

address {
    margin-top: 20px;
    color: var(--muted);
    font-style: normal;
    font-size: 18px;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    gap: 12px;
}

.contact-card {
    display: grid;
    gap: 5px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
    border-color: rgba(31, 95, 208, 0.34);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.contact-card strong {
    color: var(--ink-strong);
    font-size: 22px;
}

.qr-page {
    min-height: 100vh;
    background: var(--navy);
}

.compact-header {
    position: fixed;
}

.qr-nav {
    display: flex;
}

.qr-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.62fr);
    gap: 54px;
    align-items: center;
    padding: 150px max(20px, calc((100vw - 1180px) / 2)) 70px;
    background:
        linear-gradient(100deg, rgba(7, 20, 40, 0.99), rgba(7, 20, 40, 0.88)),
        #071428;
    color: #fff;
}

.qr-hero h1 {
    max-width: 760px;
}

.qr-hero-copy {
    max-width: 760px;
}

.qr-form {
    align-self: center;
}

.qr-form .field,
.qr-form .form-footer {
    grid-column: 1 / -1;
}

.footer {
    display: grid;
    gap: 24px;
    padding: 42px max(20px, calc((100vw - 1180px) / 2)) 34px;
    background: var(--navy);
    color: #fff;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: grid;
    gap: 5px;
}

.footer-brand strong {
    font-size: 24px;
}

.footer-brand span,
.footer-links a,
.footer-company {
    color: rgba(255, 255, 255, 0.68);
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a {
    padding: 8px 10px;
    border-radius: var(--radius);
    font-weight: 760;
    transition: background 160ms ease, color 160ms ease;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-company {
    margin: 0;
    font-size: 14px;
}

.mobile-sticky-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: var(--radius);
    background: rgba(7, 20, 40, 0.94);
    box-shadow: 0 16px 40px rgba(7, 20, 40, 0.28);
    backdrop-filter: blur(14px);
}

.mobile-sticky-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.mobile-sticky-actions a:nth-child(2) {
    background: var(--blue);
    color: #fff;
}

.mobile-sticky-actions a:nth-child(3) {
    background: #fff;
    color: var(--navy);
}

.mobile-sticky-actions a:nth-child(4) {
    background: var(--blue);
}

@media (max-width: 1120px) {
    .platforms-grid,
    .driver-types-grid,
    .seo-topic-grid,
    .language-cards,
    .required-docs-grid,
    .fleet-cars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    :root {
        --container: min(100vw - 28px, 760px);
    }

    .site-header {
        width: calc(100vw - 24px);
        margin-top: 10px;
    }

    .menu-button {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 96px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        background: rgba(7, 20, 40, 0.98);
        box-shadow: 0 22px 60px rgba(7, 20, 40, 0.32);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        justify-content: flex-start;
        min-height: 48px;
    }

    .site-nav .nav-cta {
        margin-left: 0;
    }

    .language-switcher {
        margin-left: 0;
        align-self: flex-start;
    }

    .hero {
        padding-top: 134px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-self: stretch;
        max-width: 520px;
    }

    .hero-background img {
        right: -42vw;
        width: 110vw;
        opacity: 0.09;
    }

    .trust-strip,
    .section-heading,
    .area-panel,
    .documents-layout,
    .seo-copy,
    .seo-page-layout,
    .trust-company-panel,
    .rental-panel,
    .contact-section,
    .company-section {
        grid-template-columns: 1fr;
    }

    .fleet-car-card-wide {
        min-height: 220px;
    }

    .seo-aside {
        position: static;
    }

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

    .benefits-grid .benefit-card:last-child {
        grid-column: span 2;
    }

    .compact-benefits .benefit-card:last-child {
        grid-column: auto;
    }

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

    .contact-intro {
        position: static;
    }

    .footer-main,
    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .qr-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --container: calc(100vw - 24px);
    }

    .site-header {
        min-height: 66px;
        padding: 8px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 124px;
        max-height: 42px;
    }

    .menu-button strong {
        display: none;
    }

    .hero {
        padding: 118px 12px 84px;
    }

    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 34px;
    }

    .hero-copy {
        font-size: 18px;
    }

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

    .button {
        width: 100%;
    }

    .hero-badges,
    .trust-strip,
    .app-row,
    .area-grid,
    .platforms-grid,
    .benefits-grid,
    .driver-types-grid,
    .seo-topic-grid,
    .language-cards,
    .trust-company-grid,
    .required-docs-grid,
    .fleet-cars-grid,
    .rental-features,
    .contact-form,
    .steps-list {
        grid-template-columns: 1fr;
    }

    .fleet-car-card,
    .fleet-car-card-wide {
        min-height: auto;
    }

    .benefits-grid .benefit-card:last-child {
        grid-column: span 1;
    }

    .trust-company-grid article:last-child {
        grid-column: auto;
    }

    .fleet-card {
        padding: 14px;
    }

    .plate-card {
        position: static;
        margin-top: 12px;
        justify-content: center;
    }

    .section,
    .contact-section,
    .company-section,
    .seo-page-layout {
        padding: 66px 0;
    }

    .section-dark {
        padding: 72px 12px;
    }

    .platform-card,
    .benefit-card,
    .document-card,
    .steps-list li {
        min-height: auto;
        padding: 20px;
    }

    .area-panel {
        padding: 20px;
    }

    .trust-company-panel,
    .final-cta-panel {
        padding: 20px;
    }

    .section-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form {
        padding: 18px;
    }

    .qr-hero {
        min-height: auto;
        padding: 118px 12px 88px;
    }

    .qr-nav a:not(.nav-cta) {
        display: none;
    }

    .contact-card strong {
        font-size: 19px;
    }

    .footer {
        padding-bottom: 88px;
    }

    .mobile-sticky-actions {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
