/* =====================================================================
   Wizefleet — design system
   Standalone stylesheet for the rebuilt homepage. No framework.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
    --night: #05070C;
    --night-2: #0A0E17;
    --night-3: #111725;

    --ink: #0B1220;
    --ink-2: #3C4759;
    --ink-3: #6B7688;

    --paper: #FFFFFF;
    --page: #F7F8FB;
    --page-2: #EFF2F7;
    --line: #E5E9F0;
    --line-2: #D8DEE8;

    --brand: #0277BD;
    --brand-2: #0EA5E9;
    --brand-3: #38BDF8;
    --brand-ink: #015B92;
    --brand-wash: #EAF4FB;

    --lime: #34D399;
    --amber: #F59E0B;

    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 999px;

    --shadow-1: 0 1px 2px rgba(11, 18, 32, 0.05);
    --shadow-2: 0 14px 40px -18px rgba(11, 18, 32, 0.22);
    --shadow-3: 0 40px 100px -40px rgba(2, 119, 189, 0.55);

    --display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

    --shell: 1280px;
    --gutter: 24px;

    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    background: var(--page);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.006em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

::selection {
    background: rgba(2, 119, 189, 0.2);
}

:focus-visible {
    outline: 2px solid var(--brand-3);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- Layout primitives ---------- */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: 104px 0;
}

.section-sm {
    padding: 72px 0;
}

.section-dark {
    position: relative;
    isolation: isolate;
    background: var(--night);
    color: #fff;
    overflow: hidden;
}

.section-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: var(--grain);
    opacity: 0.13;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Consecutive dark bands read as one chapter split by a hairline */
.section-dark + .section-dark {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

/* ---------- Type ---------- */
.label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
}

.label::before {
    content: "";
    width: 20px;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.label-light {
    color: var(--brand-3);
}

.h1 {
    font-family: var(--display);
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 500;
    line-height: 1.01;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.h2 {
    font-family: var(--display);
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.h3 {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.lead {
    max-width: 56ch;
    color: var(--ink-2);
    font-size: 17px;
    line-height: 1.62;
}

.section-dark .lead {
    color: rgba(255, 255, 255, 0.6);
}

.dim {
    color: rgba(255, 255, 255, 0.4);
}

.section-head {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-head .label {
    margin-bottom: 16px;
}

.section-head .h2 {
    margin-bottom: 14px;
}

.section-head-center {
    margin-inline: auto;
    text-align: center;
}

.section-head-center .label {
    justify-content: center;
}

.section-head-center .lead {
    margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    font-size: 14.5px;
    font-weight: 550;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

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

.btn-sm {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13.5px;
}

.btn-solid {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.btn-solid:hover {
    background: var(--brand);
    border-color: var(--brand);
}

.btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--night);
}

.btn-outline {
    background: var(--paper);
    border-color: var(--line-2);
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--ink);
}

.btn-ghost-dark {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
}

.btn-ghost-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff;
}

.btn-quiet {
    color: var(--ink-2);
}

.btn-quiet:hover {
    background: rgba(11, 18, 32, 0.05);
    color: var(--ink);
    transform: none;
}

.btn-arrow::after {
    content: "→";
    font-family: var(--mono);
    font-size: 13px;
    transition: transform 0.18s ease;
}

.btn:hover.btn-arrow::after {
    transform: translateX(3px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-size: 14.5px;
    font-weight: 550;
}

.text-link:hover {
    color: var(--brand-ink);
}

/* ---------- Announcement bar ---------- */
.announce {
    background: var(--night);
    color: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.01em;
}

.announce-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
}

.announce-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.announce-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}

.announce-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.announce a:hover {
    color: #fff;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(247, 248, 251, 0.72);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-stuck {
    background: rgba(255, 255, 255, 0.88);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px -22px rgba(11, 18, 32, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 68px;
}

.brand img {
    height: 40px;
    width: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 12px;
}

.primary-nav a {
    padding: 8px 13px;
    border-radius: var(--r-pill);
    color: #45516A;
    font-size: 13.5px;
    font-weight: 500;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.primary-nav a:hover {
    background: rgba(11, 18, 32, 0.05);
    color: var(--ink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-2);
    border-radius: var(--r-sm);
    background: var(--paper);
}

.nav-toggle span {
    position: relative;
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--ink);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 1.5px;
    background: var(--ink);
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

/* Mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    grid-template-rows: 1fr;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer.is-open {
    visibility: visible;
    opacity: 1;
}

.drawer-scrim {
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 12, 0.5);
    backdrop-filter: blur(4px);
}

.drawer-panel {
    position: relative;
    width: min(360px, 86vw);
    height: 100%;
    margin-left: auto;
    padding: 24px;
    background: var(--paper);
    border-left: 1px solid var(--line);
    transform: translateX(12px);
    transition: transform 0.25s ease;
    overflow-y: auto;
}

.drawer.is-open .drawer-panel {
    transform: none;
}

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.drawer-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-sm);
    color: var(--ink-2);
    font-size: 18px;
    line-height: 1;
}

.drawer-links {
    display: grid;
    gap: 2px;
    margin-bottom: 24px;
}

.drawer-links a {
    padding: 13px 12px;
    border-radius: var(--r-sm);
    font-family: var(--display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.drawer-links a:hover {
    background: var(--page-2);
}

.drawer-actions {
    display: grid;
    gap: 8px;
}

.drawer-actions .btn {
    width: 100%;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    isolation: isolate;
    background: var(--night);
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(110% 80% at 30% 0%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(110% 80% at 30% 0%, #000 30%, transparent 75%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: var(--grain);
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-glow-1 {
    top: -22%;
    left: 42%;
    width: 46rem;
    height: 32rem;
    background: rgba(2, 119, 189, 0.5);
}

.hero-glow-2 {
    right: -8rem;
    bottom: -14rem;
    width: 34rem;
    height: 26rem;
    background: rgba(56, 189, 248, 0.22);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: center;
    gap: 72px;
    padding: 96px 0 88px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    padding: 6px 13px 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero-eyebrow i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
    animation: pulse 2.6s ease-in-out infinite;
}

.hero h1 {
    margin-bottom: 22px;
}

.hero .lead {
    max-width: 48ch;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.62);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.42);
}

.store-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-badges img {
    height: 40px;
    width: auto;
    opacity: 0.92;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-badges img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Hero visual: framed product shot */
.hero-visual {
    position: relative;
}

.hero-frame {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-xl);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-3);
    backdrop-filter: blur(12px);
}

.hero-frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px 12px;
}

.hero-frame-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.hero-frame-bar span {
    margin-left: 8px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-frame img {
    width: 100%;
    border-radius: var(--r-md);
}

.hero-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-sm);
    background: rgba(10, 14, 23, 0.82);
    box-shadow: var(--shadow-2);
    backdrop-filter: blur(14px);
}

.hero-chip img {
    width: 18px;
    height: 18px;
}

.hero-chip b {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
}

.hero-chip small {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.hero-chip-1 {
    left: -26px;
    bottom: 56px;
}

.hero-chip-2 {
    right: -18px;
    top: 44px;
}

/* ---------- Proof strip ---------- */
.proof {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

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

.proof-item {
    padding: 26px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.proof-item:first-child {
    border-left: none;
    padding-left: 0;
}

.proof-item b {
    display: block;
    margin-bottom: 4px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
}

.proof-item span {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Bento grid ---------- */
.bento {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.tile {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-column: span 2;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--paper);
    box-shadow: var(--shadow-1);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tile:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 119, 189, 0.3);
    box-shadow: var(--shadow-2);
}

.tile-wide {
    grid-column: span 4;
}

.tile-full {
    grid-column: span 6;
}

.tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: var(--r-xs);
    background: var(--brand-wash);
}

.tile-icon img {
    width: 19px;
    height: 19px;
}

.tile h3 {
    margin-bottom: 8px;
}

.tile p {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.6;
}

.tile-meta {
    margin-top: auto;
    padding-top: 20px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
}

/* Map tile */
.tile-map {
    grid-column: span 4;
    min-height: 340px;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.86) 48%, #fff 66%),
        linear-gradient(180deg, rgba(2, 119, 189, 0.14), rgba(2, 119, 189, 0.04)),
        url('images/basemap.png') center top / 115% no-repeat;
    background-color: var(--brand-wash);
}

.tile-map-body {
    margin-top: auto;
    padding: 26px;
}

.tile-map-body h3 {
    margin-bottom: 6px;
}

.tile-map-body p {
    max-width: 46ch;
}

.radar {
    position: absolute;
    top: 48px;
    left: 50%;
    width: 148px;
    height: 148px;
    transform: translateX(-50%);
}

.radar i {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(2, 119, 189, 0.5);
    border-radius: 50%;
    background: rgba(2, 119, 189, 0.14);
    animation: radar 3.4s ease-out infinite;
}

.radar i:nth-child(2) { animation-delay: 1.1s; }
.radar i:nth-child(3) { animation-delay: 2.2s; }

.radar img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    transform: translate(-50%, -50%);
}

/* Visual tile with product art */
.tile-visual {
    grid-column: span 2;
    padding: 0;
    background: linear-gradient(180deg, var(--paper), var(--page-2));
}

.tile-visual img {
    width: 100%;
    margin-top: auto;
    padding: 22px 22px 0;
}

.tile-visual-body {
    padding: 26px 26px 0;
}

/* Dark tile inside light section */
.tile-dark {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(80% 70% at 20% 0%, rgba(2, 119, 189, 0.35), transparent 60%),
        var(--night);
    color: #fff;
}

.tile-dark h3 {
    color: #fff;
}

.tile-dark p {
    color: rgba(255, 255, 255, 0.6);
}

.tile-dark .tile-icon {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.tile-dark .tile-meta {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--paper);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.6;
}

.section-dark .step {
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
}

.section-dark .step h3 {
    color: #fff;
}

.section-dark .step p {
    color: rgba(255, 255, 255, 0.58);
}

.section-dark .step-num {
    background: #fff;
    color: var(--night);
}

/* ---------- Split feature ---------- */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 64px;
}

.split-media {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    background: linear-gradient(150deg, var(--brand-wash), var(--paper));
    box-shadow: var(--shadow-2);
}

.split-media img {
    width: 100%;
    border-radius: var(--r-md);
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.check-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
}

.check-list svg {
    margin-top: 2px;
    color: var(--brand);
}

.check-list b {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

/* ---------- Devices ---------- */
.device-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.device {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.device:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.device-media {
    display: grid;
    place-items: center;
    min-height: 190px;
    margin-bottom: 24px;
}

.device-media img {
    max-height: 190px;
    width: auto;
}

.device-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.device-top h3 {
    color: #fff;
}

.device-price {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-3);
}

.device p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14.5px;
    line-height: 1.6;
}

.spec-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 20px 0 24px;
}

.spec {
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-pill);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.device .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* ---------- Tabs ---------- */
.tabs {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
}

.tab-list {
    display: flex;
    gap: 4px;
    margin-bottom: 26px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--page-2);
}

.tab-btn {
    flex: 1;
    min-height: 40px;
    border-radius: var(--r-xs);
    color: var(--ink-2);
    font-size: 13.5px;
    font-weight: 500;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.tab-btn:hover {
    color: var(--ink);
}

.tab-btn[aria-selected="true"] {
    background: var(--paper);
    color: var(--ink);
    font-weight: 600;
    box-shadow: var(--shadow-1);
}

.tab-panel[hidden] {
    display: none;
}

.tab-panel h3 {
    margin-bottom: 12px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.tab-panel p {
    margin-bottom: 24px;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.65;
}

.tab-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tabs-media {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    background: var(--night);
    box-shadow: var(--shadow-2);
}

.tabs-media img {
    width: 100%;
    border-radius: var(--r-md);
}

/* ---------- FAQ ---------- */
.faq {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 64px;
    align-items: start;
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--paper);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: var(--ink);
    box-shadow: var(--shadow-1);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: -0.02em;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex: none;
    font-family: var(--mono);
    font-size: 18px;
    color: var(--ink-3);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "−";
    color: var(--brand);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.65;
}

.faq-aside {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--paper);
}

.faq-aside p {
    margin: 10px 0 20px;
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    isolation: isolate;
    padding: 108px 0;
    text-align: center;
    background: var(--night);
    color: #fff;
    overflow: hidden;
}

.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: var(--grain);
    opacity: 0.12;
    mix-blend-mode: overlay;
}

.cta-glow {
    top: -40%;
    left: 50%;
    width: 44rem;
    height: 30rem;
    margin-left: -22rem;
    background: rgba(2, 119, 189, 0.45);
}

.cta .label {
    justify-content: center;
    margin-bottom: 18px;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta .lead {
    margin: 0 auto 32px;
    max-width: 52ch;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 72px 0 28px;
    background: var(--night-2);
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 34ch;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
}

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

.footer-contact {
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.footer-phone {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.38);
}

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

/* =====================================================================
   Sub pages
   ===================================================================== */

/* Slim header used on sign-up and legal pages */
.mini-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.mini-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 68px;
}

.mini-header .brand {
    margin-right: auto;
}

.mini-header-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.02em;
    color: var(--ink-3);
}

.mini-header-meta a:hover {
    color: var(--ink);
}

/* ---------- Multi-step form ---------- */
.form-page {
    position: relative;
    padding: 56px 0 96px;
    background:
        radial-gradient(70% 50% at 50% 0%, rgba(2, 119, 189, 0.09), transparent 70%),
        var(--page);
    min-height: 70vh;
}

.form-shell {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.form-card {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    background: var(--paper);
    box-shadow: var(--shadow-2);
}

.form-step {
    display: none;
}

.form-step.is-active {
    display: block;
}

.form-step-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.form-progress {
    height: 3px;
    margin-bottom: 28px;
    border-radius: var(--r-pill);
    background: var(--page-2);
    overflow: hidden;
}

.form-progress span {
    display: block;
    height: 100%;
    border-radius: var(--r-pill);
    background: var(--brand);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-question {
    margin-bottom: 26px;
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.option-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.option {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--paper);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.option:hover {
    border-color: var(--line-2);
    transform: translateY(-2px);
}

.option img {
    width: 26px;
    height: 26px;
}

.option b {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.option small {
    color: var(--ink-3);
    font-size: 12.5px;
    line-height: 1.45;
}

.option.is-selected {
    border-color: var(--brand);
    background: var(--brand-wash);
    box-shadow: inset 0 0 0 1px var(--brand);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.field-grid .field-wide {
    grid-column: span 2;
}

.field-grid input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-sm);
    background: var(--paper);
    font: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field-grid input::placeholder {
    color: var(--ink-3);
}

.field-grid input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(2, 119, 189, 0.14);
}

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

.form-actions .btn-solid {
    margin-left: auto;
}

.form-error {
    margin-top: 14px;
    color: #B42318;
    font-size: 13.5px;
}

.form-error[hidden] {
    display: none;
}

.form-foot {
    margin-top: 20px;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.02em;
    color: var(--ink-3);
}

/* ---------- Legal / article pages ---------- */
.legal-hero {
    padding: 64px 0 40px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(60% 50% at 20% 0%, rgba(2, 119, 189, 0.08), transparent 70%),
        var(--page);
}

.legal-hero h1 {
    margin: 16px 0 12px;
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.legal-hero .shell,
.legal-body {
    max-width: 860px;
}

.legal-body {
    padding: 56px var(--gutter) 96px;
}

.legal-body h2 {
    margin: 40px 0 12px;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    margin: 26px 0 8px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.legal-body strong {
    color: var(--ink);
    font-weight: 600;
}

.privacy-label {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.privacy-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.02em;
    color: var(--ink-3);
}

.legal-hero .lead {
    font-size: 15.5px;
}

.legal-body p,
.legal-body li {
    margin-bottom: 12px;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.7;
}

.legal-body ul {
    margin: 0 0 12px 0;
}

.legal-body li {
    position: relative;
    padding-left: 20px;
}

.legal-body li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
}

.legal-body a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =====================================================================
   Elevation pass — navigation, decision cues and systems detail
   ===================================================================== */

/* 1. Keyboard users reach the product content immediately. */
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 14px;
    border-radius: var(--r-xs);
    background: var(--paper);
    box-shadow: var(--shadow-2);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    transform: translateY(-160%);
    transition: transform 0.18s ease;
}

.skip-link:focus {
    transform: none;
}

/* 2. Header navigation reports the section the visitor is currently reading. */
.primary-nav a.is-active {
    background: var(--brand-wash);
    color: var(--brand-ink);
    box-shadow: inset 0 0 0 1px rgba(2, 119, 189, 0.14);
}

.drawer-links a.is-active {
    background: var(--brand-wash);
    color: var(--brand-ink);
}

/* 3. A compact capability trail improves the hero's decision path. */
.hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: -8px 0 26px;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.hero-signals li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-signals i,
.faq-response i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.12);
}

/* 4. The product image reads as an active system, not a flat screenshot. */
.hero-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(56, 189, 248, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit-a {
    top: 6%;
    right: -8%;
    width: 88%;
    aspect-ratio: 1;
}

.hero-orbit-b {
    top: 17%;
    right: 5%;
    width: 58%;
    aspect-ratio: 1;
    border-color: rgba(56, 189, 248, 0.1);
}

.hero-pulse-panel {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: -20px;
    min-width: 200px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--r-sm);
    background: rgba(10, 14, 23, 0.88);
    box-shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
}

.hero-pulse-panel > span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-pulse-panel strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.hero-pulse-panel > div {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 16px;
    margin-top: 9px;
}

.hero-pulse-panel > div i {
    width: 100%;
    border-radius: var(--r-pill);
    background: linear-gradient(180deg, var(--brand-3), var(--brand));
    animation: signal 1.9s ease-in-out infinite alternate;
}

.hero-pulse-panel > div i:nth-child(1) { height: 35%; animation-delay: .15s; }
.hero-pulse-panel > div i:nth-child(2) { height: 55%; animation-delay: .4s; }
.hero-pulse-panel > div i:nth-child(3) { height: 80%; animation-delay: .2s; }
.hero-pulse-panel > div i:nth-child(4) { height: 45%; animation-delay: .6s; }
.hero-pulse-panel > div i:nth-child(5) { height: 100%; animation-delay: .1s; }
.hero-pulse-panel > div i:nth-child(6) { height: 70%; animation-delay: .45s; }
.hero-pulse-panel > div i:nth-child(7) { height: 50%; animation-delay: .3s; }
.hero-pulse-panel > div i:nth-child(8) { height: 85%; animation-delay: .55s; }

/* 5. Proof points receive a quieter, useful indicator on hover. */
.proof-item {
    position: relative;
    transition: background-color 0.2s ease;
}

.proof-item::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-3);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.proof-item:hover {
    background: rgba(255, 255, 255, 0.035);
}

.proof-item:hover::after {
    opacity: 1;
    transform: none;
}

/* 6. Elevate card affordance while preserving the restrained bento system. */
.tile::before,
.device::before,
.faq-aside::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 40%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.tile:hover::before,
.device:hover::before {
    opacity: 1;
}

.tile-dark::before,
.device::before {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.14), transparent 42%);
}

/* 7. Steps gain a connective path on wider fleet-management screens. */
.steps {
    position: relative;
}

@media (min-width: 901px) {
    .steps::before {
        content: "";
        position: absolute;
        top: 43px;
        left: 16.66%;
        right: 16.66%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.48), transparent);
        pointer-events: none;
    }
}

.step {
    position: relative;
}

.step-num {
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 7px var(--night);
}

.steps-note {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: center;
}

/* 8. Product cards feel like a considered hardware range. */
.device {
    position: relative;
    overflow: hidden;
}

.device-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.1), transparent 65%);
}

.device-media::after {
    content: "";
    position: absolute;
    inset: auto 12% 10px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    filter: blur(12px);
}

.device-media img {
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(.22, 1, .36, 1);
}

.device:hover .device-media img {
    transform: translateY(-5px) scale(1.025);
}

/* 9. TMS has a clearer conversion continuation. */
.split-link {
    margin-top: 28px;
}

.split-link span {
    font-family: var(--mono);
    transition: transform 0.18s ease;
}

.split-link:hover span {
    transform: translateX(3px);
}

/* 10. Reassure visitors at the last objection points. */
.faq-response {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--brand-ink);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.02em;
}

@keyframes signal {
    from { transform: scaleY(.55); opacity: .42; }
    to { transform: scaleY(1); opacity: 1; }
}

/* ---------- Motion ---------- */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes radar {
    0% { transform: scale(0.45); opacity: 0.8; }
    80% { opacity: 0.05; }
    100% { transform: scale(1); opacity: 0; }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

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

    [data-reveal],
    [data-reveal].is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .radar i,
    .hero-eyebrow i,
    .hero-pulse-panel > div i {
        animation: none;
    }

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 72px 0;
    }

    .hero .lead {
        max-width: 56ch;
    }

    .hero-chip-1 { left: 0; }
    .hero-chip-2 { right: 0; }

    .split,
    .tabs,
    .faq {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-media {
        order: -1;
    }

    .tile,
    .tile-wide,
    .tile-map,
    .tile-visual {
        grid-column: span 3;
    }

    .tile-full {
        grid-column: span 6;
    }

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

@media (max-width: 900px) {
    .primary-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-actions .btn-quiet {
        display: none;
    }

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

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

    .proof-item:nth-child(3) {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 720px) {
    :root {
        --gutter: 18px;
    }

    .section {
        padding: 72px 0;
    }

    .announce-links a:not(.announce-phone) {
        display: none;
    }

    .hero-inner {
        padding: 56px 0 64px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-chip {
        display: none;
    }

    .hero-pulse-panel {
        right: 12px;
        bottom: -18px;
        min-width: 184px;
    }

    .hero-signals {
        gap: 8px 13px;
        margin-bottom: 24px;
        font-size: 9.5px;
    }

    .hero-orbit {
        display: none;
    }

    .bento {
        gap: 12px;
    }

    .tile,
    .tile-wide,
    .tile-map,
    .tile-visual,
    .tile-full {
        grid-column: span 6;
    }

    .tile {
        padding: 22px;
    }

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

    .tab-list {
        flex-direction: column;
    }

    .cta {
        padding: 76px 0;
    }

    .cta-actions .btn {
        width: 100%;
    }

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

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

    .form-card {
        padding: 24px 20px;
    }

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

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

    .field-grid .field-wide {
        grid-column: span 1;
    }

    .mini-header-meta a:not(.mini-header-phone) {
        display: none;
    }
}
