
:root {
    --page-bg: #eef2f8;
    --panel-bg: #ffffff;
    --ink: #10213d;
    --muted: #4f5f7a;
    --line: #d8e1ef;
    --brand: #1f5dff;
    --brand-dark: #0f43c9;
    --fs-nav: 0.875rem;
    --fs-btn: 0.9375rem;
    --fs-display: clamp(2.35rem, 6.2vw, 4.6rem);
    --fs-section: clamp(2rem, 4vw, 3.2rem);
    --fs-body: clamp(1rem, 1.5vw, 1.18rem);
    --fs-card-title: clamp(1.14rem, 1.55vw, 1.4rem);
    --fs-card-body: clamp(0.92rem, 1.05vw, 1rem);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 8%, #dde8ff 0%, #eef2f8 34%),
        radial-gradient(circle at 90% 92%, #dce6ff 0%, #eef2f8 36%);
}

.page-shell {
    width: min(1200px, calc(100% - 24px));
    margin: 12px auto 26px;
    background: var(--panel-bg);
    border: 1px solid #dfe7f3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16, 33, 61, 0.08);
}

.site-nav {
    min-height: 62px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 10px 24px;
    border-bottom: 1px solid #eef2f9;
    background: rgba(255, 255, 255, 0.96);
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-mark {
    width: 198px;
    max-width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    color: #243753;
    text-decoration: none;
    font-size: var(--fs-nav);
    font-weight: 600;
}

.cta-pill {
    text-decoration: none;
    white-space: nowrap;
    font-size: var(--fs-btn);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(180deg, #2f6dff 0%, #1a57f1 100%);
    padding: 11px 20px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(31, 93, 255, 0.28);
}

.hero {
    position: relative;
    min-height: clamp(420px, 66vw, 610px);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(233, 241, 255, 0.1) 0%, rgba(247, 250, 255, 0.64) 58%, rgba(255, 255, 255, 0.9) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 52%, rgba(255, 255, 255, 0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(84px, 16vw, 164px) 20px 34px;
    text-align: center;
}

.eyebrow {
    margin: 0;
    color: #2f6dff;
    font-size: 10px;
    letter-spacing: 0.24em;
    font-weight: 700;
}

.hero h1 {
    margin: 12px 0 0;
    line-height: 0.98;
    font-size: var(--fs-display);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.hero h1 span {
    display: block;
}

.hero h1 .accent {
    color: var(--brand);
}

.hero-subtitle {
    max-width: 720px;
    margin: 22px auto 0;
    color: #354861;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 500;
    line-height: 1.45;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, #2f6dff 0%, #1a57f1 100%);
    box-shadow: 0 10px 28px rgba(31, 93, 255, 0.28);
}

.btn-secondary {
    color: #19345d;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d8e2f0;
    box-shadow: 0 8px 24px rgba(29, 51, 85, 0.09);
}

.register-section {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr);
    gap: 40px;
    padding: clamp(40px, 7vw, 82px) clamp(16px, 4vw, 42px) clamp(42px, 7vw, 84px);
}

.register-copy h2 {
    margin: 0;
    font-size: var(--fs-section);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #122847;
}

.register-copy > p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: var(--fs-body);
    line-height: 1.55;
    max-width: 620px;
}

.feature-list {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.feature-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 66% 34%, #8fb2ff 0%, #8fb2ff 20%, transparent 22%),
        radial-gradient(circle at 34% 70%, #9bc4ff 0%, #9bc4ff 16%, transparent 18%),
        linear-gradient(180deg, #eff5ff 0%, #e4eeff 100%);
    border: 1px solid #d4e2fb;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.feature-item h3 {
    margin: 0;
    color: #12315d;
    font-size: var(--fs-card-title);
    line-height: 1.2;
}

.feature-item p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: var(--fs-card-body);
    line-height: 1.45;
    max-width: 670px;
}

.warranty-section {
    background: #edf2ff;
    padding: clamp(48px, 7vw, 86px) clamp(16px, 4vw, 42px) clamp(52px, 7vw, 92px);
}

.care-section {
    background: #ffffff;
    border-top: 1px solid #edf1f8;
    padding: clamp(46px, 7vw, 82px) clamp(16px, 4vw, 42px) clamp(56px, 8vw, 98px);
}

.expert-section {
    background: #ffffff;
    border-top: 1px solid #edf1f8;
    padding: clamp(44px, 6.5vw, 74px) clamp(16px, 4vw, 42px);
}

.expert-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: center;
}

.slot-card {
    background: #ffffff;
    border: 1px solid #e8edf6;
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: 0 12px 24px rgba(16, 33, 61, 0.08);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.slot-header h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
    color: #0f213e;
}

.slot-nav {
    display: inline-flex;
    gap: 6px;
}

.slot-nav span {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #dde6f5;
    color: #687a98;
    font-size: 0.75rem;
}

.slot-weekdays,
.slot-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    text-align: center;
}

.slot-weekdays {
    margin-bottom: 12px;
}

.slot-weekdays span {
    font-size: 0.625rem;
    font-weight: 700;
    color: #7f8fa9;
    letter-spacing: 0.04em;
}

.slot-days span {
    font-size: 0.86rem;
    line-height: 1;
    color: #0e2240;
    padding: 8px 0;
    border-radius: 10px;
}

.slot-days .muted-day {
    color: #c4cedd;
}

.slot-days .active-day {
    background: linear-gradient(180deg, #2d6bff 0%, #1652ea 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(31, 93, 255, 0.35);
}

.expert-copy h2 {
    margin: 0;
    color: #10223f;
    font-size: var(--fs-section);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.expert-copy > p {
    margin: 14px 0 0;
    max-width: 520px;
    color: var(--muted);
    font-size: var(--fs-body);
    line-height: 1.55;
}

.assigned-tech {
    margin-top: 20px;
    border: 1px solid #cadeff;
    border-left: 3px solid #1f5dff;
    border-right: 3px solid #1f5dff;
    border-radius: 12px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.tech-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #d2dced;
    box-shadow: 0 6px 14px rgba(18, 40, 71, 0.2);
}

.tech-meta h3 {
    margin: 0;
    color: #122847;
    font-size: 1rem;
    line-height: 1.2;
}

.tech-meta p {
    margin: 2px 0 0;
    color: #61728e;
    font-size: 0.78rem;
    line-height: 1.35;
}

.tech-status {
    color: #1f5dff;
    font-size: 0.84rem;
    font-weight: 700;
}

.tracking-section {
    background: #13263d;
    padding: clamp(44px, 6.5vw, 72px) clamp(16px, 4vw, 42px) clamp(58px, 8vw, 98px);
}

.tracking-intro h2 {
    font-size: clamp(2rem, 4.2vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #f4f7fc;
}

.tracking-intro p {
    margin-top: 12px;
    max-width: 640px;
    font-size: clamp(0.95rem, 1.45vw, 1.15rem);
    color: #95a6be;
}

.tracking-badge {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    padding: 3px;
    background: radial-gradient(circle at 30% 30%, #6f819d 0%, #2a3a53 68%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.tracking-badge-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(202, 219, 245, 0.42);
}

.tracking-map-wrap {
    margin-top: clamp(28px, 4vw, 42px);
    max-width: 1160px;
    margin-inline: auto;
}

.tracking-tablet {
    position: relative;
    border: 1px solid rgba(173, 196, 227, 0.38);
    border-radius: 4px;
    background: #edf2fa;
    padding: clamp(18px, 2.8vw, 24px);
}

.tablet-screen {
    position: relative;
    background: #101b2c;
    border-radius: 32px;
    border: 14px solid #080e18;
    box-shadow: inset 0 0 0 2px #2a3c57, 0 12px 28px rgba(2, 6, 12, 0.5);
    min-height: clamp(300px, 42vw, 462px);
    overflow: hidden;
}

.tablet-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(9, 19, 34, 0.34) 0%, rgba(9, 19, 34, 0.34) 100%);
}

.tracker-map-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tracker-label {
    position: absolute;
    top: 16px;
    left: 20px;
    margin: 0;
    z-index: 2;
    color: #c8d9f1;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.driver-card {
    position: absolute;
    right: clamp(10px, 2.4vw, 20px);
    top: 52%;
    transform: translateY(-47%);
    width: clamp(170px, 22vw, 230px);
    border-radius: 14px;
    border: 1px solid rgba(200, 216, 239, 0.76);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(237, 244, 255, 0.77) 100%);
    backdrop-filter: blur(4px);
    padding: 13px;
    text-align: center;
    box-shadow: 0 18px 36px rgba(4, 10, 19, 0.35);
}

.driver-avatar {
    width: 62px;
    height: 62px;
    margin: 0 auto 8px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(226, 236, 255, 0.85);
}

.driver-card h3 {
    margin: 0;
    color: #f4f8ff;
    font-size: 1.72rem;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.driver-rating,
.driver-state,
.driver-eta {
    margin: 7px 0 0;
    font-size: 0.86rem;
    line-height: 1.2;
}

.driver-rating {
    color: #ffdc7a;
    font-weight: 600;
}

.driver-state {
    color: #86f8b7;
    background: rgba(116, 239, 175, 0.18);
    border: 1px solid rgba(139, 247, 189, 0.35);
    border-radius: 999px;
    padding: 6px 10px;
}

.driver-eta {
    color: #dae6fb;
    background: rgba(7, 13, 22, 0.32);
    border-radius: 999px;
    padding: 7px 10px;
}

.professionalism-section {
    background: #ffffff;
    border-top: 1px solid #edf1f8;
    padding: clamp(48px, 7vw, 88px) clamp(16px, 4vw, 42px);
}

.pro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.pro-image-wrap {
    margin: 0;
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 29, 52, 0.2);
}

.pro-image {
    width: 100%;
    height: clamp(260px, 34vw, 360px);
    object-fit: cover;
    display: block;
}

.pro-image-wrap figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 20px 18px;
    background: linear-gradient(180deg, rgba(16, 30, 52, 0) 0%, rgba(16, 30, 52, 0.74) 64%, rgba(16, 30, 52, 0.9) 100%);
    color: #ffffff;
}

.pro-image-wrap figcaption span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(231, 240, 255, 0.9);
}

.pro-image-wrap figcaption strong {
    display: block;
    margin-top: 6px;
    font-size: clamp(1.15rem, 2.05vw, 1.85rem);
    line-height: 1.12;
}

.pro-copy {
    position: relative;
}

.pro-copy-badge {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
    margin-left: auto;
    border-radius: 50%;
    padding: 3px;
    background: radial-gradient(circle at 30% 30%, #6f819d 0%, #2a3a53 68%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.pro-copy-badge-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(202, 219, 245, 0.42);
}

.pro-copy h2 {
    margin: 0;
    font-size: var(--fs-section);
    line-height: 1.03;
    letter-spacing: -0.03em;
    color: #10223f;
}

.pro-copy > p {
    margin: 14px 0 0;
    max-width: 480px;
    color: var(--muted);
    font-size: var(--fs-body);
    line-height: 1.55;
}

.pro-stats {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pro-stats h3 {
    margin: 0;
    color: #1f5dff;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1;
}

.pro-stats p {
    margin: 6px 0 0;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #223451;
}

.dashboard-section {
    background: #eaf0ff;
    border-top: 1px solid #dbe4fb;
    padding: clamp(50px, 7vw, 92px) clamp(16px, 4vw, 42px) clamp(62px, 8vw, 108px);
}

.dashboard-intro h2 {
    color: #122847;
}

.dashboard-intro p {
    color: #596c89;
}

.dashboard-shell {
    margin: clamp(30px, 4vw, 44px) auto 0;
    width: min(920px, 100%);
    background: #ffffff;
    border: 1px solid #e4ebf8;
    border-radius: 26px;
    display: grid;
    grid-template-columns: minmax(0, 0.29fr) minmax(0, 0.71fr);
    box-shadow: 0 24px 48px rgba(17, 38, 69, 0.16);
    overflow: hidden;
}

.dashboard-sidebar {
    border-right: 1px solid #edf2fb;
    padding: 18px 14px;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #122847;
}

.dashboard-brand-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1f5dff;
    box-shadow: 0 0 0 6px rgba(31, 93, 255, 0.14);
}

.dashboard-menu {
    margin-top: 24px;
    display: grid;
    gap: 6px;
}

.dashboard-menu a {
    text-decoration: none;
    color: #2f435f;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 10px;
}

.dashboard-menu a.active {
    color: #1f5dff;
    background: #eef4ff;
}

.dashboard-main {
    padding: 18px 18px 24px;
}

.dashboard-main-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-main-head h3 {
    margin: 0;
    color: #122847;
    font-size: 1.9rem;
    letter-spacing: -0.025em;
}

.dashboard-dots {
    display: inline-flex;
    gap: 4px;
}

.dashboard-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) {
    background: #c7ddff;
}

.dashboard-dots span:nth-child(2) {
    background: #d3f3d8;
}

.dashboard-dots span:nth-child(3) {
    background: #ffd8d8;
}

.dashboard-cards {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-device-card {
    border: 1px solid #e9eff9;
    border-radius: 14px;
    padding: 12px;
    background: #ffffff;
}

.device-title {
    margin: 0;
    color: #162c4d;
    font-size: 0.96rem;
    font-weight: 700;
}

.device-chip {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.dashboard-device-card.good .device-chip {
    color: #2f9f5d;
    background: #e8f7ee;
}

.dashboard-device-card.warn .device-chip {
    color: #c26a18;
    background: #fff1e2;
}

.device-subtitle {
    margin: 8px 0 0;
    color: #60708a;
    font-size: 0.78rem;
    line-height: 1.35;
}

.final-cta-section {
    background: #192a42;
    border-top: 1px solid #2a3b53;
}

.final-hero {
    position: relative;
    min-height: clamp(500px, 62vw, 700px);
    overflow: hidden;
}

.final-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 16, 26, 0.48) 0%, rgba(9, 16, 26, 0.62) 48%, rgba(9, 16, 26, 0.78) 100%),
        radial-gradient(circle at 50% 46%, rgba(26, 63, 120, 0.2) 0%, rgba(6, 11, 18, 0.68) 72%);
}

.final-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: clamp(64px, 8.5vw, 102px) 20px clamp(48px, 7.5vw, 84px);
}

.final-hero-badge {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    border-radius: 50%;
    padding: 3px;
    background: radial-gradient(circle at 30% 30%, #6f819d 0%, #2a3a53 68%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.final-hero-badge-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(202, 219, 245, 0.42);
}

.final-hero-content h2 {
    margin: 0;
    font-size: clamp(2.4rem, 6.2vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.final-hero-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.final-btn-primary {
    color: #1652ea;
    background: #ffffff;
}

.final-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(214, 225, 248, 0.4);
    background: rgba(14, 24, 38, 0.35);
}

.final-brand-strip {
    margin-top: 22px;
    display: inline-flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
    color: rgba(230, 238, 250, 0.68);
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.final-hero-echo {
    margin: clamp(18px, 3vw, 30px) 0 0;
    font-size: clamp(2rem, 4.8vw, 4.3rem);
    color: rgba(218, 229, 247, 0.55);
    letter-spacing: -0.03em;
    filter: blur(0.4px);
}

.site-footer {
    background: #2a3b53;
    color: #c5d1e2;
    border-top: 1px solid rgba(172, 190, 214, 0.15);
    padding: clamp(34px, 4.8vw, 54px) clamp(16px, 4vw, 42px) 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.15fr;
    gap: clamp(18px, 3vw, 30px);
}

.footer-grid h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
    color: #f3f7ff;
}

.footer-grid h4 {
    margin: 2px 0 14px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: #f3f7ff;
}

.footer-grid p {
    margin: 14px 0 0;
    max-width: 280px;
    font-size: 0.94rem;
    line-height: 1.6;
    color: #a8b8ce;
}

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

.footer-grid a {
    color: #b8c7db;
    text-decoration: none;
    font-size: 0.94rem;
}

.footer-subscribe {
    display: flex;
    align-items: center;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(71, 91, 118, 0.72);
    border: 1px solid rgba(158, 178, 204, 0.2);
}

.footer-subscribe input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #dce7f7;
    padding: 12px 12px;
    font-size: 0.92rem;
    outline: none;
}

.footer-subscribe input::placeholder {
    color: #90a3bf;
}

.footer-subscribe button {
    width: 50px;
    border: 0;
    background: #1f5dff;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    min-height: 44px;
}

.footer-bottom {
    margin-top: clamp(24px, 4vw, 36px);
    border-top: 1px solid rgba(161, 180, 205, 0.14);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #8da0bc;
    font-size: 0.82rem;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}

.footer-bottom a {
    color: #9db0cb;
    text-decoration: none;
    font-size: 0.82rem;
}

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

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

.section-intro h2 {
    margin: 0;
    font-size: var(--fs-section);
    line-height: 1.06;
    letter-spacing: -0.028em;
    color: #10223f;
}

.section-intro p {
    margin: 14px auto 0;
    max-width: 560px;
    color: var(--muted);
    font-size: var(--fs-body);
    line-height: 1.55;
}

.benefit-grid,
.service-grid {
    margin-top: clamp(30px, 4vw, 42px);
    display: grid;
    gap: 18px;
}

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

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

.benefit-card,
.service-card {
    background: #ffffff;
    border: 1px solid #e4ebf7;
    border-radius: 20px;
    padding: 24px 22px;
    min-height: 180px;
    box-shadow: 0 10px 24px rgba(30, 54, 93, 0.05);
}

.benefit-icon,
.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f5dff;
    background: #e8efff;
    margin-bottom: 14px;
}

.benefit-icon svg,
.service-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-card h3,
.service-card h3 {
    margin: 0;
    color: #122847;
    font-size: var(--fs-card-title);
    line-height: 1.22;
}

.benefit-card p,
.service-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: var(--fs-card-body);
    line-height: 1.52;
}

.register-media {
    align-self: center;
}

.register-image {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 42px rgba(14, 30, 52, 0.17);
}

.page-hero {
    background: linear-gradient(180deg, #eef3ff 0%, #f7f9ff 100%);
    border-bottom: 1px solid #e1e8f8;
    padding: clamp(54px, 8vw, 92px) clamp(16px, 4vw, 42px) clamp(34px, 6vw, 56px);
}

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

.page-eyebrow {
    margin: 0;
    color: #2f6dff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.page-hero h1 {
    margin: 8px 0 0;
    color: #10223f;
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
}

.page-hero p {
    margin: 14px 0 0;
    max-width: 720px;
    color: #4f5f7a;
    font-size: var(--fs-body);
    line-height: 1.6;
}

.content-page-section {
    background: #ffffff;
    padding: clamp(34px, 6vw, 60px) clamp(16px, 4vw, 42px) clamp(48px, 7vw, 76px);
}

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

.content-card {
    border: 1px solid #e4ebf7;
    border-radius: 18px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(22, 42, 72, 0.06);
}

.content-card h2,
.legal-content h2,
.contact-info h2 {
    margin: 0;
    color: #122847;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.2;
}

.content-card p,
.legal-content p,
.contact-info p,
.contact-info li {
    margin: 12px 0 0;
    color: #4f5f7a;
    font-size: var(--fs-body);
    line-height: 1.62;
}

.content-card ul,
.contact-info ul {
    margin: 14px 0 0;
    padding-left: 20px;
}

.content-card li,
.contact-info li {
    margin-top: 6px;
}

.legal-content {
    border: 1px solid #e4ebf7;
    border-radius: 18px;
    padding: clamp(20px, 3vw, 30px);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(22, 42, 72, 0.06);
}

.legal-content h2 + p {
    margin-top: 10px;
}

.legal-content h2:not(:first-child) {
    margin-top: 22px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
}

.contact-info {
    border: 1px solid #e4ebf7;
    border-radius: 18px;
    padding: 20px;
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.form-success,
.form-errors {
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.form-success {
    border: 1px solid #b9ebc4;
    background: #ecfbf0;
    color: #1f6b39;
}

.form-errors {
    border: 1px solid #f0c0c0;
    background: #fff2f2;
    color: #8e2c2c;
}

.form-errors p {
    margin: 0;
    font-weight: 700;
}

.form-errors ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.contact-form {
    border: 1px solid #e4ebf7;
    border-radius: 18px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(22, 42, 72, 0.06);
}

.contact-form label {
    display: block;
    margin-top: 12px;
    color: #223451;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form label:first-child {
    margin-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #d6dfef;
    border-radius: 10px;
    padding: 10px 12px;
    color: #10213d;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.4;
    background: #ffffff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(31, 93, 255, 0.24);
    border-color: #1f5dff;
}

.contact-form button {
    margin-top: 16px;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    background: linear-gradient(180deg, #2f6dff 0%, #1a57f1 100%);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 980px) {
    .site-nav {
        grid-template-columns: auto auto;
        justify-content: space-between;
        row-gap: 10px;
        padding: 12px 14px;
    }

    .main-nav {
        order: 3;
        grid-column: 1 / -1;
        justify-self: start;
        gap: 18px;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 4px;
    }

    .hero-content {
        padding-top: clamp(68px, 18vw, 122px);
    }

    .register-section {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .expert-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .pro-copy-badge {
        margin-left: 0;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        border-right: 0;
        border-bottom: 1px solid #edf2fb;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
    }

    .content-page-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

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

    .driver-card {
        position: static;
        transform: none;
        width: min(320px, 100%);
        margin: 18px auto 0;
    }

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

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

@media (max-width: 640px) {
    .page-shell {
        width: 100%;
        margin: 0;
        border-radius: 0;
        border-inline: 0;
    }

    .logo-mark {
        width: 154px;
    }

    .cta-pill {
        padding-inline: 14px;
        font-size: 12px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }

    .feature-item {
        grid-template-columns: 32px 1fr;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .section-intro {
        max-width: none;
    }

    .tracking-badge {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

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

    .benefit-card,
    .service-card {
        min-height: auto;
    }

    .dashboard-main-head h3 {
        font-size: 1.4rem;
    }

    .final-btn {
        width: 100%;
        min-width: 0;
    }

    .final-brand-strip {
        gap: 12px;
        font-size: 0.88rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .assigned-tech {
        grid-template-columns: auto 1fr;
        row-gap: 6px;
    }

    .tech-status {
        grid-column: 1 / -1;
        justify-self: end;
    }
}
