:root {
    --font-heading: "Manrope", "Segoe UI", sans-serif;
    --font-body: "Source Sans 3", "Segoe UI", sans-serif;
    --navy: #0c1f38;
    --navy-soft: #173458;
    --sky: #9fd4ff;
    --sky-strong: #5eb3ff;
    --ice: #eef5fb;
    --mist: #f7fafd;
    --text: #1c2c3d;
    --muted: #617282;
    --line: rgba(12, 31, 56, 0.12);
    --line-strong: rgba(12, 31, 56, 0.18);
    --white: #ffffff;
    --danger: #a94e3d;
    --shadow-soft: 0 24px 80px rgba(12, 31, 56, 0.1);
    --shadow-line: 0 12px 36px rgba(12, 31, 56, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(159, 212, 255, 0.22), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f9fbfe 60%, #f4f8fc 100%);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(94, 179, 255, 0.22);
    color: var(--navy);
}

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

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

.site-main {
    overflow: hidden;
}

.site-container {
    max-width: 1340px;
    padding-left: clamp(20px, 4vw, 40px);
    padding-right: clamp(20px, 4vw, 40px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
}

.site-navbar {
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled .site-navbar {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 40px rgba(12, 31, 56, 0.08);
}

.brandmark {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-height: 74px;
    color: var(--navy);
}

.brandmark__line {
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, var(--navy), var(--sky-strong));
    position: relative;
}

.brandmark__line::after {
    content: "";
    position: absolute;
    right: -6px;
    top: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sky-strong);
    box-shadow: 0 0 0 8px rgba(94, 179, 255, 0.12);
}

.brandmark__body {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.brandmark__name {
    font-family: var(--font-heading);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.brandmark__caption {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-navbar__toggle {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.62rem 0.88rem;
}

.site-navbar__toggle:focus {
    box-shadow: 0 0 0 4px rgba(94, 179, 255, 0.16);
}

.site-nav__link {
    position: relative;
    padding: 0.7rem 0.95rem !important;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.4rem;
    height: 1px;
    background: linear-gradient(90deg, var(--navy), var(--sky-strong));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--navy);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
}

.btn-portlivo,
.btn-portlivo:focus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 54px;
    padding: 0.8rem 1.35rem;
    border: 1px solid var(--navy);
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    box-shadow: none;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn-portlivo:hover {
    background: var(--navy-soft);
    border-color: var(--navy-soft);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-portlivo--light,
.btn-portlivo--light:focus {
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--navy);
}

.btn-portlivo--light:hover {
    background: #edf5fb;
    border-color: #edf5fb;
    color: var(--navy);
}

.btn-portlivo--outline,
.btn-portlivo--outline:focus {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--white);
}

.btn-portlivo--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.54);
    color: var(--white);
}

.btn-portlivo--wide {
    min-width: 220px;
}

.link-inline {
    color: var(--navy);
    font-weight: 700;
    border-bottom: 1px solid rgba(12, 31, 56, 0.2);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy-soft);
}

.section-kicker::before {
    content: "";
    width: 52px;
    height: 1px;
    background: rgba(12, 31, 56, 0.28);
}

.section-kicker--footer {
    color: rgba(255, 255, 255, 0.64);
}

.section-kicker--footer::before {
    background: rgba(255, 255, 255, 0.18);
}

.hero {
    position: relative;
    padding: clamp(5.6rem, 9vw, 8rem) 0 4rem;
    isolation: isolate;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(159, 212, 255, 0.16), rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.98) 100%),
        radial-gradient(circle at top right, rgba(12, 31, 56, 0.08), transparent 38%);
    z-index: -2;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 12% -14% auto auto;
    width: min(52vw, 44rem);
    height: min(52vw, 44rem);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(94, 179, 255, 0.12) 0%, rgba(94, 179, 255, 0.04) 36%, transparent 66%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid,
.page-hero__grid,
.split-grid,
.app-layout,
.faq-layout,
.contact-layout,
.band__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: start;
}

.hero-copy {
    padding-top: clamp(1rem, 2.5vw, 2.3rem);
}

.hero h1,
.page-hero h1,
.section-head h2,
.band h2,
.footer-block h2,
.lead-form-shell h2,
.policy-section h2 {
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.hero h1 {
    max-width: 11ch;
    font-size: clamp(2.9rem, 7vw, 5.45rem);
    color: var(--navy);
}

.page-hero {
    position: relative;
    padding: clamp(5rem, 8vw, 7rem) 0 2.6rem;
    isolation: isolate;
}

.page-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: end;
}

.page-hero h1 {
    max-width: 13ch;
    font-size: clamp(2.45rem, 5vw, 4.45rem);
    color: var(--navy);
}

.hero-summary,
.page-hero__summary,
.section-head p,
.footer-block p,
.lead-form-shell__top p,
.policy-section p,
.policy-section li,
.accordion-body p {
    font-size: 1.12rem;
    color: var(--muted);
}

.hero-summary,
.page-hero__summary {
    max-width: 44rem;
    margin: 1.5rem 0 0;
}

.hero-list,
.rule-rows,
.app-flow,
.footer-links,
.policy-meta,
.hero-meta {
    margin: 0;
    padding: 0;
}

.hero-list {
    list-style: none;
    max-width: 42rem;
    margin: 2rem 0 2.2rem;
    border-top: 1px solid var(--line);
}

.hero-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 0.95rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.03rem;
    color: var(--text);
}

.hero-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--sky-strong));
    box-shadow: 0 0 0 8px rgba(94, 179, 255, 0.12);
}

.hero-meta,
.page-hero__meta,
.policy-meta {
    border-top: 1px solid var(--line);
}

.hero-meta__row,
.page-hero__meta-row,
.policy-meta__row {
    display: grid;
    grid-template-columns: minmax(130px, 170px) 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.hero-meta__row span,
.page-hero__meta-row span,
.policy-meta__row span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-meta__row strong,
.page-hero__meta-row strong,
.policy-meta__row strong {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem;
    border: 1px solid rgba(12, 31, 56, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-line);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-1px);
    border-color: rgba(12, 31, 56, 0.2);
}

.store-badge img {
    height: 52px;
    width: auto;
}

.store-badges--footer .store-badge {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 28px rgba(5, 14, 28, 0.18);
}

.section-shell {
    position: relative;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-shell--soft {
    background:
        linear-gradient(180deg, rgba(238, 245, 251, 0.62), rgba(255, 255, 255, 0.92)),
        var(--white);
}

.section-shell--line {
    background:
        linear-gradient(180deg, rgba(12, 31, 56, 0.02), rgba(12, 31, 56, 0)),
        var(--white);
}

.section-shell--tight {
    padding: clamp(3.2rem, 5vw, 4.5rem) 0;
}

.section-divider {
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    background: linear-gradient(90deg, transparent, rgba(12, 31, 56, 0.2), transparent);
}

.section-head {
    display: grid;
    gap: 1.25rem;
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.section-head--split {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: end;
}

.section-head h2 {
    font-size: clamp(2.15rem, 4vw, 3.45rem);
    color: var(--navy);
}

.section-head p {
    margin: 0;
    max-width: 62rem;
}

.split-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.intro-column,
.side-column {
    display: grid;
    gap: 1.5rem;
}

.intro-column p,
.side-column p,
.quiet-note p,
.note-list li,
.step-item p,
.detail-row p,
.detail-row strong,
.rule-row p,
.contact-block p,
.contact-data li {
    margin: 0;
}

.intro-column .lead-line {
    font-size: 1.3rem;
    color: var(--navy);
    max-width: 32rem;
}

.quiet-note {
    padding: 1.35rem 0 0;
    border-top: 1px solid var(--line);
}

.quiet-note strong {
    color: var(--navy);
}

.rule-rows {
    border-top: 1px solid var(--line);
}

.rule-row {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1.25rem 2rem;
    padding: 1.55rem 0;
    border-bottom: 1px solid var(--line);
}

.rule-row h3,
.detail-row strong,
.step-item h3,
.contact-block h2,
.app-flow__label,
.footer-legal__row strong {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.rule-row h3 {
    margin: 0;
    font-size: 1.28rem;
    color: var(--navy);
}

.rule-row p {
    font-size: 1.04rem;
    color: var(--muted);
}

.detail-table {
    border-top: 1px solid var(--line);
}

.detail-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.72fr) minmax(180px, 0.9fr) minmax(0, 1.15fr);
    gap: 1.25rem 1.8rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
}

.detail-row--head {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.detail-row--head span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.detail-row strong {
    font-size: 1.2rem;
    color: var(--navy);
}

.detail-row p {
    color: var(--muted);
    font-size: 1rem;
}

.note-list,
.contact-data,
.policy-section ul {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--muted);
}

.note-list li,
.contact-data li,
.policy-section li {
    margin-bottom: 0.7rem;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.step-item {
    position: relative;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line-strong);
}

.step-item::before {
    content: attr(data-step);
    position: absolute;
    top: -0.35rem;
    left: 0;
    font-family: var(--font-heading);
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(12, 31, 56, 0.1);
}

.step-item h3 {
    position: relative;
    margin: 0 0 0.9rem;
    font-size: 1.36rem;
    color: var(--navy);
}

.step-item p {
    position: relative;
    color: var(--muted);
    font-size: 1rem;
}

.app-layout,
.faq-layout,
.contact-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

.app-flow {
    border-top: 1px solid var(--line);
}

.app-flow__row {
    display: grid;
    grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
    gap: 1.25rem 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line);
}

.app-flow__label {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
}

.app-flow__row p {
    color: var(--muted);
    font-size: 1rem;
}

.faq-aside {
    display: grid;
    gap: 1.4rem;
    align-content: start;
}

.faq-accordion {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line) !important;
    background: transparent;
}

.faq-item .accordion-button {
    padding: 1.3rem 0;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--navy);
    box-shadow: none;
}

.faq-item .accordion-button::after {
    width: 1.1rem;
    height: 1.1rem;
    background-size: 1.1rem;
}

.faq-item .accordion-body {
    padding: 0 0 1.35rem;
}

.accordion-body p {
    max-width: 52rem;
    margin: 0;
}

.band {
    position: relative;
    overflow: hidden;
    padding: clamp(2.2rem, 5vw, 3.2rem);
    border-radius: 34px;
    background:
        linear-gradient(135deg, #0e2442 0%, #12345b 54%, #1a4677 100%);
    color: rgba(255, 255, 255, 0.8);
}

.band::before {
    content: "";
    position: absolute;
    inset: auto auto -25% -8%;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 212, 255, 0.16), transparent 68%);
    pointer-events: none;
}

.band__grid {
    position: relative;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: end;
}

.band h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: var(--white);
}

.band p {
    max-width: 42rem;
    margin: 1rem 0 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.76);
}

.band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-end;
    align-items: center;
}

.lead-form-shell {
    position: relative;
    padding: clamp(1.55rem, 3vw, 2.25rem);
    border: 1px solid rgba(12, 31, 56, 0.12);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 253, 0.92));
    box-shadow: var(--shadow-soft);
}

.lead-form-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94, 179, 255, 0.5), transparent);
}

.lead-form-shell--compact {
    max-width: 100%;
}

.lead-form-shell__top {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.lead-form-shell__top h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    color: var(--navy);
}

.lead-form-shell__top p {
    margin: 0;
    max-width: 34rem;
}

.form-label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.form-control,
.form-select {
    min-height: 56px;
    border: 1px solid rgba(12, 31, 56, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.86rem 1rem;
    font-size: 1rem;
    color: var(--text);
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea.form-control {
    min-height: 142px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(94, 179, 255, 0.72);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(94, 179, 255, 0.16);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: rgba(169, 78, 61, 0.75);
    box-shadow: 0 0 0 4px rgba(169, 78, 61, 0.12);
}

.driver-form__footer {
    display: flex;
    gap: 1.2rem 1.6rem;
    align-items: end;
    justify-content: space-between;
    padding-top: 0.2rem;
}

.driver-form__footer p {
    max-width: 36rem;
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}

.driver-form__footer a {
    color: var(--navy);
    font-weight: 700;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.form-notice {
    display: grid;
    gap: 0.25rem;
    margin-bottom: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid transparent;
}

.form-notice--success {
    background: rgba(94, 179, 255, 0.12);
    border-color: rgba(94, 179, 255, 0.2);
}

.form-notice--error {
    background: rgba(169, 78, 61, 0.1);
    border-color: rgba(169, 78, 61, 0.18);
}

.form-notice__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy-soft);
}

.form-notice p {
    margin: 0;
    color: var(--text);
}

.contact-block,
.policy-section {
    display: grid;
    gap: 1.15rem;
}

.contact-block {
    padding-top: 0.25rem;
}

.contact-block h2,
.policy-section h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--navy);
}

.contact-panel,
.policy-panel {
    border-top: 1px solid var(--line);
}

.contact-panel__row {
    display: grid;
    grid-template-columns: minmax(140px, 170px) 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-panel__row span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-panel__row strong,
.contact-panel__row a {
    color: var(--navy);
    font-weight: 700;
}

.policy-content {
    display: grid;
    gap: 2rem;
}

.policy-section p,
.policy-section ul {
    margin: 0;
}

.site-footer {
    margin-top: 2rem;
    padding: 4rem 0 2rem;
    background: #0a1930;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(240px, 0.75fr);
    gap: 2.4rem;
}

.footer-block {
    display: grid;
    gap: 1rem;
}

.footer-block h2 {
    max-width: 16ch;
    font-size: clamp(1.95rem, 3vw, 2.8rem);
    color: var(--white);
}

.footer-block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal__row {
    display: grid;
    grid-template-columns: minmax(100px, 120px) 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal__row span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.footer-legal__row strong,
.footer-legal__row a {
    font-size: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a {
    display: block;
    padding: 0.9rem 0;
    color: var(--white);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--sky);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1199.98px) {
    .hero-grid,
    .page-hero__grid,
    .split-grid,
    .app-layout,
    .faq-layout,
    .contact-layout,
    .band__grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-grid .footer-block:first-child {
        grid-column: 1 / -1;
    }

    .band__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--line);
    }

    .hero {
        padding-top: 4.8rem;
    }

    .page-hero {
        padding-top: 4.6rem;
    }

    .hero h1 {
        max-width: none;
    }

    .page-hero h1 {
        max-width: none;
    }

    .section-head--split,
    .rule-row,
    .detail-row,
    .app-flow__row,
    .hero-meta__row,
    .page-hero__meta-row,
    .contact-panel__row,
    .policy-meta__row {
        grid-template-columns: 1fr;
    }

    .detail-row--head {
        display: none;
    }

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

    .btn-portlivo--wide {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .brandmark__line {
        width: 42px;
    }

    .section-shell {
        padding: 4rem 0;
    }

    .lead-form-shell,
    .band {
        border-radius: 24px;
    }

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

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

    .store-badge img {
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }

    .page-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .hero-summary,
    .page-hero__summary,
    .section-head p,
    .lead-form-shell__top p,
    .policy-section p,
    .policy-section li,
    .accordion-body p {
        font-size: 1rem;
    }

    .section-head h2,
    .band h2,
    .footer-block h2,
    .lead-form-shell h2 {
        letter-spacing: -0.04em;
    }
}
