:root {
    --bg: #f4f7fb;
    --surface: rgba(255,255,255,0.84);
    --surface-strong: #ffffff;
    --text: #10233f;
    --muted: #62708a;
    --line: #d9e4f3;
    --blue: #2f6fed;
    --blue-dark: #1954cb;
    --green: #1f9d68;
    --shadow: 0 18px 60px rgba(18, 37, 74, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(47,111,237,0.16), transparent 26%),
        radial-gradient(circle at 100% 0%, rgba(34,197,94,0.09), transparent 24%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

a { color: inherit; }

.landing-shell {
    width: min(1280px, calc(100% - 28px));
    margin: 0 auto;
    padding: 18px 0 42px;
}

.topbar {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(217,228,243,0.88);
    border-radius: 24px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #2f6fed 0%, #6ea2ff 100%);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 12px 22px rgba(47, 111, 237, 0.25);
}
.brand strong {
    display: block;
    font-size: 24px;
    line-height: 1.05;
}
.brand small {
    display: block;
    color: var(--muted);
    margin-top: 3px;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 12px;
}
.nav-link:hover { background: #eef4ff; color: var(--blue); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, var(--blue) 0%, #4d8aff 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(47,111,237,0.22);
}
.btn:hover { background: linear-gradient(135deg, var(--blue-dark) 0%, #3b7cf9 100%); }
.btn-secondary {
    background: #edf4ff;
    color: var(--blue);
    box-shadow: none;
    border: 1px solid #d9e6ff;
}
.btn-secondary:hover { background: #e2edff; }
.btn-ghost {
    background: rgba(255,255,255,0.72);
    color: var(--text);
    box-shadow: none;
    border: 1px solid var(--line);
}
.btn-ghost:hover { background: #ffffff; color: var(--blue); }
.btn-large { min-height: 54px; padding: 0 22px; }

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    padding: 44px 0 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(47, 111, 237, 0.10);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero h1,
.section-copy h2,
.register-card h3 {
    margin: 16px 0 0;
    line-height: 1.05;
}
.hero h1 {
    font-size: clamp(38px, 4.8vw, 68px);
    max-width: 780px;
}
.hero h1 span {
    color: var(--blue);
    display: inline-block;
}
.hero-lead,
.section-copy p,
.seo-copy p {
    color: var(--muted);
    line-height: 1.72;
    font-size: 17px;
}
.hero-lead { margin: 18px 0 0; max-width: 760px; }

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(47,111,237,0.08);
    border: 1px solid rgba(47,111,237,0.12);
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 800;
}
.hero-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.hero-actions,
.register-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.hero-badges span,
.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid #d9e4f3;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.status-pill.success { color: var(--green); background: #effaf4; border-color: #caecd9; }

.hero-visual {
    position: relative;
    min-height: 560px;
}
.dashboard-card {
    border: 1px solid rgba(217,228,243,0.92);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,250,255,0.95) 100%);
    box-shadow: var(--shadow);
}
.dashboard-card.main {
    padding: 22px;
    min-height: 540px;
}
.dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
}
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.mini-stat {
    padding: 14px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e4edf8;
}
.mini-stat small {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}
.mini-stat strong {
    font-size: 22px;
    line-height: 1;
}

.map-mock {
    position: relative;
    min-height: 286px;
    margin-top: 18px;
    border-radius: 24px;
    background:
        linear-gradient(rgba(174, 194, 221, 0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(174, 194, 221, 0.28) 1px, transparent 1px),
        radial-gradient(circle at 30% 30%, rgba(129,193,103,0.22), transparent 28%),
        radial-gradient(circle at 70% 68%, rgba(47,111,237,0.12), transparent 30%),
        linear-gradient(180deg, #edf4ff 0%, #dfe9f7 100%);
    background-size: 64px 64px, 64px 64px, auto, auto, auto;
    border: 1px solid #d9e4f3;
    overflow: hidden;
}
.route {
    position: absolute;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f6fed 0%, #61a0ff 100%);
    box-shadow: 0 0 0 4px rgba(47,111,237,0.08);
}
.route-a { width: 190px; left: 80px; top: 78px; transform: rotate(16deg); }
.route-b { width: 140px; left: 180px; top: 164px; transform: rotate(-24deg); }
.route-c { width: 120px; left: 250px; top: 108px; transform: rotate(35deg); }
.city {
    position: absolute;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.94);
    border: 1px solid #d9e4f3;
    font-size: 13px;
    font-weight: 800;
}
.city-a { left: 32px; top: 54px; }
.city-b { left: 210px; top: 78px; }
.city-c { left: 144px; top: 170px; }
.city-d { right: 28px; bottom: 44px; }
.truck-chip {
    position: absolute;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d9e4f3;
    box-shadow: 0 12px 22px rgba(20, 36, 70, 0.14);
    font-size: 24px;
    animation: floatTruck 3.4s ease-in-out infinite;
}
.truck-a { left: 170px; top: 82px; }
.truck-b { left: 248px; top: 132px; animation-delay: 0.8s; }
@keyframes floatTruck {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    max-width: 260px;
}
.floating-top { right: -10px; top: 48px; }
.floating-bottom { left: -10px; bottom: 26px; }
.floating strong { display: block; }
.floating small { display: block; color: var(--muted); margin-top: 3px; }
.floating-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff7d7 0%, #ffddb2 100%);
    font-size: 22px;
}

.stats-strip,
.register-section,

.showcase-section {
    margin-top: 12px;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 16px;
    margin-top: 22px;
}
.shot-card {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    border: 1px solid #dce8f8;
    box-shadow: 0 16px 36px rgba(18,37,74,0.08);
}
.shot-card-wide {
    grid-row: span 2;
}
.shot-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.shot-head strong {
    display: block;
    font-size: 20px;
}
.shot-head small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}
.shot-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #edf4ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    border: 1px solid #d9e6ff;
}
.shot-screen {
    position: relative;
    border-radius: 20px;
    border: 1px solid #dce8f8;
    overflow: hidden;
    background: #f5f9ff;
}
.shot-map-screen {
    min-height: 430px;
    background:
        linear-gradient(rgba(174,194,221,0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(174,194,221,0.28) 1px, transparent 1px),
        radial-gradient(circle at 18% 20%, rgba(129,193,103,0.20), transparent 22%),
        radial-gradient(circle at 70% 72%, rgba(47,111,237,0.10), transparent 28%),
        linear-gradient(180deg, #eef5ff 0%, #dde9f8 100%);
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
}
.shot-topline {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 4;
}
.shot-topline span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid #dce8f8;
    font-size: 12px;
    font-weight: 800;
}
.shot-route {
    position: absolute;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f6fed 0%, #61a0ff 100%);
    box-shadow: 0 0 0 4px rgba(47,111,237,0.08);
}
.shot-route-a { width: 176px; left: 48px; top: 102px; transform: rotate(12deg); }
.shot-route-b { width: 142px; left: 118px; top: 252px; transform: rotate(-26deg); }
.shot-route-c { width: 106px; left: 212px; top: 146px; transform: rotate(26deg); }
.shot-city {
    position: absolute;
    z-index: 3;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.94);
    border: 1px solid #d9e4f3;
    font-size: 13px;
    font-weight: 800;
}
.shot-city-a { left: 18px; top: 74px; }
.shot-city-b { left: 144px; top: 90px; }
.shot-city-c { left: 110px; top: 194px; }
.shot-city-d { left: 102px; bottom: 50px; }
.shot-rig {
    position: absolute;
    width: 84px;
    height: 32px;
    z-index: 2;
    filter: drop-shadow(0 10px 14px rgba(14,26,47,0.16));
}
.shot-rig img { position: absolute; display: block; }
.shot-trailer { width: 54px; left: 2px; top: 12px; transform: scaleX(-1); }
.shot-truck { width: 30px; left: 46px; top: 5px; transform: scaleX(-1); }
.shot-rig-a { left: 106px; top: 106px; transform: rotate(12deg); }
.shot-rig-b { left: 146px; top: 208px; transform: rotate(-26deg); }
.shot-sidebar {
    position: absolute;
    top: 76px;
    right: 12px;
    width: 112px;
    display: grid;
    gap: 12px;
    z-index: 5;
}
.shot-sidebox {
    padding: 10px 11px;
    min-height: 62px;
    border-radius: 14px;
    background: rgba(255,255,255,0.97);
    border: 1px solid #dce8f8;
    box-shadow: 0 12px 28px rgba(18,37,74,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.shot-sidebox b,
.shot-sidebox span { display: block; }
.shot-sidebox span { color: var(--muted); font-size: 12px; margin-top: 4px; }
.shot-garage-screen,
.shot-finance-screen {
    padding: 18px;
    min-height: 240px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}
.shot-truck-hero {
    height: 112px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(230,238,248,0.95) 0%, rgba(241,246,252,0.95) 100%);
}
.shot-truck-hero img { max-width: 200px; max-height: 92px; }
.shot-card-mini {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.88);
    border: 1px solid #dce8f8;
}
.shot-mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
}
.shot-mini-row b { color: var(--green); }
.shot-bars { margin-top: 12px; }
.shot-bar-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}
.shot-bar {
    height: 10px;
    border-radius: 999px;
    background: #e3ebf6;
    overflow: hidden;
    margin-top: 6px;
}
.shot-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f0a13c 0%, #e55b2d 100%);
}
.shot-bar.green i {
    background: linear-gradient(90deg, #1fad6b 0%, #40c28f 100%);
}
.shot-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}
.shot-meta-grid span {
    padding: 9px 10px;
    border-radius: 12px;
    background: #f5f9ff;
    border: 1px solid #e1eaf7;
    font-size: 12px;
    color: var(--muted);
}
.money-card {
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2f6fed 0%, #6aa3ff 100%);
    color: #fff;
}
.money-card small { display: block; opacity: 0.82; }
.money-card strong { display: block; margin-top: 6px; font-size: 28px; }
.finance-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}
.finance-list div,
.bank-actions span {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #dce8f8;
}
.finance-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
}
.finance-list b { color: var(--green); }
.bank-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
    margin-top: 14px;
}
.bank-actions span {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}
.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 24px;
    padding: 28px 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(47,111,237,0.96) 0%, rgba(80,144,255,0.96) 100%);
    color: #fff;
    box-shadow: var(--shadow);
}
.cta-strip h2 { margin: 14px 0 0; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; }
.cta-strip p { margin: 14px 0 0; max-width: 720px; color: rgba(255,255,255,0.86); }
.cta-strip .eyebrow { background: rgba(255,255,255,0.15); color: #fff; }
.cta-strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}
.cta-strip .btn-secondary {
    background: rgba(255,255,255,0.92);
    color: var(--blue);
    border-color: rgba(255,255,255,0.2);
}

.content-section,
.seo-section {
    margin-top: 24px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.stats-strip article {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.84);
    border: 1px solid #d9e4f3;
    box-shadow: var(--shadow);
}
.stats-strip strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}
.stats-strip span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.register-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}
.section-copy,
.register-card,
.seo-copy,
.faq-list,
.feature-grid,
.steps-grid {
    position: relative;
}
.section-copy.compact,
.seo-copy,
.register-card,
.content-section,
.seo-section {
    border-radius: 28px;
}
.section-copy.compact,
.register-card,
.content-section,
.seo-section {
    background: rgba(255,255,255,0.82);
    border: 1px solid #d9e4f3;
    box-shadow: var(--shadow);
}
.section-copy.compact,
.seo-copy {
    padding: 28px;
}
.check-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text);
    font-weight: 700;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}

.register-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(245,249,255,0.96) 100%);
}
.register-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}
.register-form { display: grid; gap: 14px; }
.field-row { display: grid; gap: 14px; }
.field-row.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-group { display: grid; gap: 8px; }
.field-group label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.field-group input,
.field-group select {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid #d9e4f3;
    background: #fff;
    padding: 0 14px;
    font-size: 15px;
    color: var(--text);
}
.field-group input:focus,
.field-group select:focus {
    outline: none;
    border-color: #8bb1ff;
    box-shadow: 0 0 0 4px rgba(47,111,237,0.12);
}
.form-help {
    padding: 12px 14px;
    border-radius: 14px;
    background: #f5f8fd;
    border: 1px solid #dfebfb;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}
.form-alert,
.field-error.block {
    padding: 12px 14px;
    border-radius: 14px;
    background: #edf4ff;
    border: 1px solid #cfe0ff;
    color: #1d4fb8;
}
.form-alert.error,
.field-error,
ul.errorlist {
    color: #a61b1b;
}
.form-alert.error,
.field-error.block,
.field-error,
ul.errorlist {
    background: #fff2f2;
    border: 1px solid #f1c7c7;
}
.field-error {
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
}
ul.errorlist { list-style: none; margin: 0; padding: 0; }
.helptext { display: none; }

.content-section,
.seo-section {
    padding: 30px;
}
.feature-grid,
.steps-grid,
.faq-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card,
.step-card,
.faq-item {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dce8f8;
}
.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #edf4ff 0%, #dce8ff 100%);
    font-size: 24px;
    margin-bottom: 14px;
}
.feature-card h3,
.step-card h3,
.faq-item h3 { margin: 0; font-size: 22px; }
.feature-card p,
.step-card p,
.faq-item p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.62;
}
.content-section.alt {
    background: linear-gradient(180deg, rgba(243,247,255,0.92) 0%, rgba(255,255,255,0.88) 100%);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue) 0%, #7aa8ff 100%);
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
}
.seo-copy { padding: 0; }
.seo-section { background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(241,247,255,0.9) 100%); }
.seo-copy h2 { margin-top: 16px; }
.faq-item { min-height: 100%; }

@media (max-width: 1180px) {
    .hero,
    .register-section {
        grid-template-columns: 1fr;
    }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-visual { min-height: auto; }
    .floating-top { right: 10px; }
    .floating-bottom { left: 10px; }
}

@media (max-width: 860px) {
    .landing-shell { width: min(100% - 20px, 1280px); }
    .topbar {
        position: static;
        flex-direction: column;
        align-items: stretch;
    }
    .topbar-actions { justify-content: flex-start; }
    .stats-strip,
    .feature-grid,
    .faq-list { grid-template-columns: 1fr; }
    .field-row.two-cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .landing-shell { width: calc(100% - 16px); padding-top: 10px; }
    .topbar { padding: 14px; border-radius: 20px; }
    .brand strong { font-size: 21px; }
    .hero { padding-top: 24px; }
    .hero h1 { font-size: 34px; }
    .hero-lead,
    .section-copy p,
    .seo-copy p { font-size: 15px; }
    .dashboard-card.main,
    .content-section,
    .seo-section,
    .register-card,
    .section-copy.compact { padding: 20px; border-radius: 22px; }
    .dashboard-stats { grid-template-columns: 1fr 1fr; }
    .map-mock { min-height: 230px; }
    .floating {
        position: static;
        max-width: none;
        margin-top: 12px;
    }
    .hero-visual { display: grid; gap: 12px; }
    .btn,
    .btn-large { width: 100%; }
    .hero-actions,
    .register-actions { flex-direction: column; }
}

.captcha-field {
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    border: 1px solid #d9e6ff;
}

.captcha-field label {
    color: #1d4fb8;
}


.brand-mark svg {
    width: 26px;
    height: 26px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f6fed 0%, #6ea2ff 100%);
    box-shadow: 0 0 0 4px rgba(47,111,237,0.12);
    margin-right: 8px;
    flex: 0 0 auto;
}

.hero-badges span {
    gap: 0;
}

.map-mock.realistic {
    background:
        linear-gradient(rgba(174, 194, 221, 0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(174, 194, 221, 0.28) 1px, transparent 1px),
        radial-gradient(circle at 26% 32%, rgba(129,193,103,0.24), transparent 24%),
        radial-gradient(circle at 72% 24%, rgba(89,172,255,0.16), transparent 22%),
        radial-gradient(circle at 76% 78%, rgba(89,172,255,0.12), transparent 20%),
        linear-gradient(180deg, #edf4ff 0%, #dfe9f7 100%);
}

.map-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.35;
}

.map-glow-a { width: 130px; height: 90px; left: 44px; top: 34px; background: rgba(151, 211, 100, 0.45); }
.map-glow-b { width: 110px; height: 80px; right: 54px; bottom: 42px; background: rgba(77, 138, 255, 0.28); }

.rig {
    position: absolute;
    width: 138px;
    height: 48px;
    transform-origin: center center;
}

.rig img {
    position: absolute;
    display: block;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 8px 10px rgba(17, 28, 48, 0.18));
}

.rig-shadow {
    position: absolute;
    left: 12px;
    right: 8px;
    bottom: 4px;
    height: 12px;
    background: radial-gradient(ellipse at center, rgba(20,36,70,0.30) 0%, rgba(20,36,70,0.16) 45%, rgba(20,36,70,0.02) 82%);
    filter: blur(9px);
    border-radius: 50%;
    opacity: 0.72;
}

.rig-trailer {
    width: 88px;
    left: 4px;
    top: 18px;
    transform: scaleX(-1);
    transform-origin: center center;
}

.rig-truck {
    width: 50px;
    left: 76px;
    top: 7px;
    transform: scaleX(-1);
    transform-origin: center center;
}

.rig-a {
    left: 124px;
    top: 72px;
    transform: rotate(16deg);
    animation: rigCruiseA 5.6s ease-in-out infinite;
}

.rig-b {
    left: 222px;
    top: 122px;
    transform: rotate(-24deg);
    animation: rigCruiseB 6.2s ease-in-out infinite;
    animation-delay: 0.55s;
}

.rig-a .rig-shadow,
.rig-b .rig-shadow {
    animation: rigShadowPulse 5.6s ease-in-out infinite;
}

.rig-b .rig-shadow {
    animation-duration: 6.2s;
    animation-delay: 0.55s;
}

@keyframes rigCruiseA {
    0%, 100% { translate: 0 0; }
    20% { translate: 2px -2px; }
    45% { translate: 5px -1px; }
    70% { translate: 3px 1px; }
}

@keyframes rigCruiseB {
    0%, 100% { translate: 0 0; }
    25% { translate: 3px -1px; }
    50% { translate: 6px 1px; }
    75% { translate: 2px 2px; }
}

@keyframes rigShadowPulse {
    0%, 100% { opacity: 0.68; scale: 1 1; }
    50% { opacity: 0.82; scale: 1.03 1; }
}

.map-stat-chip {
    position: absolute;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(16, 35, 63, 0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px rgba(16,35,63,0.18);
}

.chip-a { left: 24px; bottom: 56px; }
.chip-b { right: 24px; top: 20px; }

.floating-icon {
    color: #b97722;
}

.floating-icon svg,
.feature-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.icon-gold {
    color: #be7f21;
    background: linear-gradient(135deg, #fff3ca 0%, #ffdca4 100%);
}

.icon-gift {
    color: #068e8e;
    background: linear-gradient(135deg, #d9ffef 0%, #bdf3ff 100%);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef4ff 0%, #dce8fb 100%);
    color: var(--blue);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.developer-footer {
    margin-top: 30px;
    padding: 20px 22px;
    border: 1px solid rgba(217,228,243,0.92);
    border-radius: 22px;
    background: rgba(255,255,255,0.82);
    box-shadow: var(--shadow);
}

.developer-footer strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.developer-footer a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 800;
}

.developer-footer a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .hero-visual { min-height: 500px; }
    .floating-top { right: 0; top: 20px; }
    .floating-bottom { left: 0; bottom: 8px; }
    .rig { width: 118px; height: 44px; }
    .rig-trailer { width: 76px; left: 4px; top: 16px; }
    .rig-truck { width: 44px; left: 65px; top: 6px; }
    .chip-a { left: 14px; bottom: 74px; }
}

@media (max-width: 640px) {
    .brand-mark svg { width: 22px; height: 22px; }
    .map-mock { min-height: 250px; }
    .city { font-size: 12px; padding: 7px 9px; }
    .city-a { left: 16px; top: 40px; }
    .city-b { left: 154px; top: 70px; }
    .city-c { left: 102px; top: 150px; }
    .city-d { right: 14px; bottom: 34px; }
    .rig-a { left: 104px; top: 70px; }
    .rig-b { left: 176px; top: 124px; }
    .map-stat-chip { font-size: 11px; }
    .chip-b { right: 12px; top: 12px; }
    .developer-footer { padding: 18px; }
}

@media (max-width: 1180px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .shot-card-wide {
        grid-row: auto;
    }
    .shot-map-screen {
        min-height: 360px;
    }
    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-strip-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .hero-trust-row {
        gap: 8px;
    }
    .hero-trust-row span {
        font-size: 12px;
    }
    .shot-sidebar {
        position: static;
        width: auto;
        grid-template-columns: repeat(3, minmax(0,1fr));
        margin: 240px 12px 12px;
    }
    .shot-map-screen {
        min-height: 440px;
    }
}

@media (max-width: 720px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .shot-meta-grid,
    .bank-actions,
    .shot-sidebar {
        grid-template-columns: 1fr;
    }
    .shot-map-screen {
        min-height: 470px;
    }
    .shot-topline {
        right: 10px;
    }
    .shot-route-a { width: 144px; left: 32px; top: 102px; transform: rotate(12deg); }
    .shot-route-b { width: 118px; left: 86px; top: 246px; transform: rotate(-26deg); }
    .shot-route-c { width: 86px; left: 184px; top: 146px; transform: rotate(26deg); }
    .shot-city-a { left: 12px; top: 72px; }
    .shot-city-b { left: 118px; top: 88px; }
    .shot-city-c { left: 86px; top: 192px; }
    .shot-city-d { left: 90px; bottom: 24px; }
    .shot-rig-a { left: 82px; top: 106px; }
    .shot-rig-b { left: 108px; top: 202px; }
    .shot-sidebar {
        margin: 286px 10px 10px;
    }
}

/* Mobile landing header polish */
@media (max-width: 720px) {
    .landing-shell {
        width: 100%;
        padding: 0 14px 34px;
    }

    .topbar {
        position: static;
        margin: 10px 0 20px;
        padding: 14px;
        border-radius: 26px;
        align-items: stretch;
        gap: 14px;
        background: rgba(255,255,255,0.9);
        box-shadow: 0 18px 48px rgba(18,37,74,0.13);
    }

    .brand {
        width: 100%;
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
    }

    .brand-mark {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        box-shadow: 0 16px 30px rgba(47,111,237,0.26);
    }

    .brand-mark svg {
        width: 30px;
        height: 30px;
    }

    .brand strong {
        font-size: 26px;
        letter-spacing: -0.02em;
    }

    .brand small {
        font-size: 15px;
        line-height: 1.25;
    }

    .topbar-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .topbar-actions .nav-link,
    .topbar-actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 0 12px;
        border-radius: 16px;
        justify-content: center;
        text-align: center;
        font-size: 15px;
        line-height: 1.15;
    }

    .topbar-actions .nav-link {
        display: inline-flex;
        align-items: center;
        background: #f4f8ff;
        border: 1px solid #dfe9f8;
        color: #52627c;
        font-weight: 850;
    }

    .topbar-actions .btn-secondary,
    .topbar-actions .btn:not(.btn-secondary) {
        grid-column: span 2;
        min-height: 54px;
        font-size: 18px;
        font-weight: 900;
    }

    .topbar-actions .btn-secondary {
        background: #f5f9ff;
        color: var(--blue);
    }
}

@media (max-width: 380px) {
    .topbar-actions .nav-link {
        font-size: 14px;
        min-height: 46px;
    }

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

    .brand small {
        font-size: 14px;
    }
}
.shot-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dce8f8;
    background: #0f172a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.shot-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.shot-video-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.18) 0%,
        rgba(15, 23, 42, 0.78) 100%
    );
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.shot-video-overlay span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shot-video-overlay strong {
    display: block;
    margin-top: 10px;
    font-size: 26px;
    line-height: 1.12;
}

.shot-video-overlay small {
    display: block;
    margin-top: 8px;
    max-width: 520px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 720px) {
    .shot-video-wrap {
        min-height: 260px;
    }

    .shot-video-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px;
    }

    .shot-video-overlay strong {
        font-size: 21px;
    }

    .shot-video-overlay small {
        font-size: 13px;
    }
}