:root {
    --bg: #f6f3ee;
    --surface: #fcfbf8;
    --surface-strong: #ffffff;
    --panel: #eef2f4;
    --ink: #10213d;
    --ink-soft: #5d697c;
    --line: rgba(16, 33, 61, 0.1);
    --line-strong: rgba(16, 33, 61, 0.16);
    --navy: #10213d;
    --teal: #0f8b8d;
    --teal-deep: #0c6b6c;
    --gold: #b79546;
    --success: #198754;
    --processing: #b7791f;
    --danger: #b6504f;
    --footer: #0d162a;
    --shadow-soft: 0 18px 42px rgba(16, 33, 61, 0.07);
    --shadow-card: 0 24px 54px rgba(16, 33, 61, 0.08);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --container: min(1240px, calc(100% - 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", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

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

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-shell {
    overflow: clip;
}

.flash-wrap {
    padding-top: 108px;
}

.flash-banner {
    padding: 14px 18px;
    border: 1px solid rgba(15, 139, 141, 0.18);
    border-radius: 14px;
    background: rgba(15, 139, 141, 0.08);
    color: var(--navy);
    box-shadow: var(--shadow-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0;
    transition: padding 0.25s ease;
}

.site-header.is-condensed {
    padding: 10px 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 22px;
    background: rgba(252, 251, 248, 0.78);
    box-shadow: 0 12px 34px rgba(16, 33, 61, 0.05);
    backdrop-filter: blur(16px);
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #17345f, #0f8b8d);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 0;
}

.brand-copy small {
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.2;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(16, 33, 61, 0.78);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: var(--navy);
    background: rgba(16, 33, 61, 0.04);
}

.nav-link.is-active {
    color: var(--navy);
    background: rgba(16, 33, 61, 0.06);
    box-shadow: inset 0 0 0 1px rgba(16, 33, 61, 0.08);
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: var(--teal);
}

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

.btn {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 33, 61, 0.14);
}

.btn-primary:hover {
    background: #0c1a31;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.68);
    color: var(--navy);
    border-color: rgba(16, 33, 61, 0.09);
}

.btn.accent {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 33, 61, 0.14);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.68);
    color: var(--navy);
    border-color: rgba(16, 33, 61, 0.09);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.nav-toggle,
.mobile-close {
    display: none;
}

.hero-section {
    position: relative;
    padding: 44px 0 56px;
}

.hero-backdrop {
    position: absolute;
    inset: 0 0 auto;
    height: 760px;
    background:
        radial-gradient(circle at top right, rgba(15, 139, 141, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 54px;
    align-items: center;
    min-height: calc(100vh - 132px);
}

.hero-copy {
    padding: 42px 0 56px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 26px;
    height: 1px;
    background: rgba(15, 139, 141, 0.4);
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
}

h1 {
    margin-top: 22px;
    max-width: 860px;
    font-size: clamp(3.2rem, 7vw, 5.85rem);
    line-height: 0.95;
    font-weight: 700;
}

h2 {
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    line-height: 1.03;
    font-weight: 700;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.16;
    font-weight: 650;
}

.hero-lead,
.section-head p,
.positioning-copy p,
.record-access-copy p,
.trust-point p,
.service-card p,
.job-card p,
.footer-copy,
.footer-note,
.page-copy,
.lead,
.muted {
    color: var(--ink-soft);
}

.hero-lead {
    margin: 24px 0 0;
    max-width: 720px;
    font-size: 1.13rem;
    line-height: 1.8;
}

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

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

.hero-meta div {
    padding-top: 16px;
    border-top: 1px solid rgba(16, 33, 61, 0.1);
}

.hero-meta strong,
.preview-grid strong,
.detail strong,
.product-grid strong,
.service-card strong,
.metric-card strong,
.access-note,
.footer-column h3 {
    color: var(--navy);
}

.hero-meta strong,
.product-grid strong,
.preview-grid strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
}

.hero-product {
    position: relative;
}

.product-frame {
    padding: 24px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7)),
        rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.product-topline,
.product-record,
.preview-head,
.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-topline {
    margin-bottom: 20px;
}

.product-chip,
.product-ref,
.job-meta span,
.footer-base span,
.preview-head small,
.product-kicker {
    font-size: 12px;
    line-height: 1.2;
}

.product-chip {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(16, 33, 61, 0.06);
    color: var(--navy);
    font-weight: 700;
}

.product-ref,
.preview-head small,
.product-kicker {
    color: var(--ink-soft);
}

.product-record {
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(16, 33, 61, 0.08);
}

.product-record p,
.rail-step p,
.record-preview p,
.footer-column span,
.footer-column a,
.service-card p,
.trust-point p,
.job-card p {
    margin: 0;
}

.product-record h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.product-grid,
.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.surface-panel,
.preview-grid div {
    padding: 16px 18px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
}

.surface-panel small,
.preview-grid small,
.detail small {
    display: block;
    margin-bottom: 6px;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
}

.product-rail {
    display: grid;
    gap: 16px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(16, 33, 61, 0.08);
}

.rail-step {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 14px;
    align-items: start;
}

.rail-dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(25, 135, 84, 0.12);
}

.rail-dot.rail-processing {
    background: var(--processing);
    box-shadow: 0 0 0 6px rgba(183, 121, 31, 0.14);
}

.status-pill,
.badge {
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-approved {
    color: #fff;
    background: var(--success);
}

.status-processing {
    color: #fff;
    background: var(--processing);
}

.status-rejected {
    color: #fff;
    background: var(--danger);
}

.trust-strip {
    padding: 0 0 34px;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-soft);
}

.trust-strip-grid div {
    position: relative;
    padding-left: 18px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
}

.trust-strip-grid div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--teal);
}

.section-band {
    padding: 86px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(16, 33, 61, 0.05);
    border-bottom: 1px solid rgba(16, 33, 61, 0.05);
}

.section-head,
.positioning-layout,
.record-access-layout,
.careers-layout,
.trust-layout {
    display: grid;
    gap: 28px;
}

.section-head {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: end;
    margin-bottom: 28px;
}

.positioning-layout {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
}

.positioning-copy {
    max-width: 760px;
}

.positioning-copy p + p {
    margin-top: 18px;
}

.service-grid,
.careers-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.job-card,
.verify-box,
.card {
    padding: 24px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.job-card:hover,
.verify-box:hover,
.card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 33, 61, 0.12);
    box-shadow: 0 22px 44px rgba(16, 33, 61, 0.08);
}

.card-index {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--teal-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
}

.trust-panel {
    position: sticky;
    top: 110px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.metric-card {
    padding: 20px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
}

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
}

.metric-card span {
    color: var(--ink-soft);
    font-size: 13px;
}

.trust-points {
    display: grid;
    gap: 14px;
}

.trust-point {
    padding: 22px 22px 22px 24px;
    border-left: 2px solid rgba(15, 139, 141, 0.24);
    background: rgba(255, 255, 255, 0.56);
}

.trust-point h3 {
    margin-bottom: 8px;
}

.record-access-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
    align-items: center;
}

.access-notes {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.access-note {
    padding: 14px 18px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
}

.record-access-module {
    padding: 24px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
}

.access-form {
    display: grid;
    gap: 14px;
}

label {
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 33, 61, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(15, 139, 141, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.12);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.module-divider {
    height: 1px;
    margin: 24px 0;
    background: rgba(16, 33, 61, 0.08);
}

.record-preview {
    display: grid;
    gap: 18px;
}

.preview-grid {
    margin-top: 0;
}

.careers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 8px;
}

.job-card {
    display: grid;
    align-content: start;
    gap: 16px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 33, 61, 0.05);
    color: var(--ink-soft);
    font-weight: 700;
}

.site-footer {
    padding: 72px 0 26px;
    background: var(--footer);
    color: rgba(255, 255, 255, 0.82);
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    padding-bottom: 34px;
}

.brand-footer .brand-copy strong,
.site-footer h3 {
    color: #fff;
}

.brand-footer .brand-copy small,
.footer-copy,
.footer-note,
.footer-column a,
.footer-column span,
.footer-base span {
    color: rgba(255, 255, 255, 0.68);
}

.footer-copy {
    max-width: 460px;
    margin: 24px 0 12px;
}

.footer-note {
    max-width: 520px;
    margin: 0;
    font-size: 14px;
}

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

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-base {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    display: grid;
    align-items: start;
    justify-items: end;
    padding: 16px;
    background: rgba(10, 17, 29, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    width: min(360px, 100%);
    padding: 20px;
    border-radius: 24px;
    background: rgba(252, 251, 248, 0.98);
    box-shadow: var(--shadow-card);
    transform: translateY(-12px);
    transition: transform 0.24s ease;
}

.mobile-menu.is-open .mobile-menu-panel {
    transform: translateY(0);
}

.mobile-menu-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.mobile-links {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.mobile-link {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-radius: 14px;
    font-weight: 650;
    color: var(--navy);
    background: rgba(16, 33, 61, 0.03);
}

.mobile-link.is-active {
    background: rgba(16, 33, 61, 0.07);
    box-shadow: inset 0 0 0 1px rgba(16, 33, 61, 0.08);
}

.mobile-cta {
    width: 100%;
    margin-top: 18px;
}

.verify-box {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

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

.grid {
    display: grid;
    gap: 20px;
}

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

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

.band {
    padding: 78px 0;
}

.band.mist {
    background: rgba(255, 255, 255, 0.52);
}

.result-header {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(16, 33, 61, 0.08);
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    object-fit: cover;
    background: rgba(16, 33, 61, 0.05);
}

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

.detail {
    padding: 16px;
    border: 1px solid rgba(16, 33, 61, 0.07);
    border-radius: 16px;
    background: rgba(16, 33, 61, 0.02);
}

.offer-summary-card {
    gap: 24px;
}

.offer-summary-grid,
.offer-summary-section {
    display: grid;
    gap: 18px;
}

.offer-footer {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
    gap: 18px;
    align-items: end;
    padding-top: 18px;
    border-top: 1px solid rgba(16, 33, 61, 0.08);
}

.offer-assets {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: end;
    flex-wrap: wrap;
}

.offer-asset {
    min-width: 120px;
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 12px;
}

.offer-asset img {
    max-height: 72px;
    width: auto;
}

.offer-asset-qr {
    width: 108px !important;
    max-height: none !important;
    padding: 8px;
    border: 1px solid rgba(16, 33, 61, 0.08);
    border-radius: 16px;
    background: #fff;
}

.error-state {
    padding: 34px;
    border: 1px solid rgba(182, 80, 79, 0.16);
    border-radius: 22px;
    background: rgba(182, 80, 79, 0.06);
    text-align: center;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.page-copy {
    max-width: 820px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .hero-layout,
    .record-access-layout,
    .trust-layout,
    .positioning-layout,
    .section-head,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .trust-panel {
        position: static;
    }

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

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

@media (max-width: 860px) {
    .site-header {
        padding: 12px 0;
    }

    .nav-shell {
        padding: 14px 16px;
    }

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .nav-toggle,
    .mobile-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        min-width: 42px;
        padding: 0 12px;
        border: 1px solid rgba(16, 33, 61, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.82);
        color: var(--navy);
        cursor: pointer;
    }

    .nav-toggle {
        gap: 4px;
        flex-direction: column;
    }

    .nav-toggle span {
        width: 14px;
        height: 1.5px;
        border-radius: 999px;
        background: currentColor;
    }

    .hero-section {
        padding-top: 24px;
    }

    .hero-layout {
        min-height: auto;
        gap: 30px;
    }

    .hero-copy {
        padding: 12px 0 0;
    }

    .hero-meta,
    .product-grid,
    .metric-row,
    .trust-strip-grid,
    .service-grid,
    .careers-grid,
    .form-grid.two,
    .footer-columns,
    .grid.two,
    .grid.three,
    .detail-list,
    .preview-grid {
        grid-template-columns: 1fr;
    }

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

    .offer-assets {
        justify-content: flex-start;
    }

    .product-record,
    .preview-head,
    .result-header {
        align-items: start;
        flex-direction: column;
    }

    .band,
    .section-band {
        padding: 62px 0;
    }

    .footer-base {
        flex-direction: column;
    }
}
