@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

    :root {
    --ca-primary: #00a4f3;
    --ca-primary-soft: #062a36;
    --ca-bg: #000000;
    --ca-surface-0: #0b0b0b;
    --ca-surface-1: #0d0d0d;
    --ca-surface-2: #111111;
    --ca-surface-3: #1b1b1b;
    --ca-border: #151515;
    --ca-border-strong: #232323;
    --ca-text: #ffffff;
    --ca-text-muted: #c8c8c8;
    --ca-text-subtle: #919191;
    --ca-success: #51cf66;
    --ca-error: #ff6b6b;
    --ca-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
    --ca-radius-card: 14px;
    --ca-radius-pill: 18px;
    --ca-radius-hero: 24px;
    --ca-container: 1200px;
    --ca-scrollbar-size: 10px;
    --ca-scrollbar-track: rgba(255, 255, 255, 0.05);
    --ca-scrollbar-thumb: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.2));
    --ca-scrollbar-thumb-hover: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
    --ca-scrollbar-thumb-border: rgba(255, 255, 255, 0.12);
    --ca-shell-header-offset: 0px;
    --ca-shell-sticky-gap: 12px;
    --ca-shell-sticky-top: calc(var(--ca-shell-header-offset) + var(--ca-shell-sticky-gap));
    --ca-shell-sidebar-top: calc(var(--ca-shell-header-offset) + 24px);
}

.carabout-shell__header {
    position: sticky;
    top: 0;
    z-index: 30;
    transform: translateY(0);
    transition: transform 220ms ease, opacity 220ms ease;
    will-change: transform;
    backface-visibility: hidden;
}

.carabout-shell__header:has(.language-selector__sheet) {
    z-index: 10050 !important;
    overflow: visible !important;
}

.carabout-shell--header-hidden .carabout-shell__header {
    transform: translateY(calc(-100% - 12px));
    opacity: 0.98;
    pointer-events: none;
}

/* Anchor targets in sticky-navigation routes (results/search/service detail)
   keep content visible under sticky rails + top shells. */
:is(#results-list-section,
    #results-map-launch,
    #results-map-discovery,
    #results-refinement-studio,
    #results-comparison-studio,
    #results-shortlist-compare,
    #results-shortlist,
    #results-viewed-services,
    #results-journey-studio,
    #results-spotlight-card,
    #search-form-shell,
    #search-journey-studio,
    #search-live-preview,
    #search-preview-spotlight,
    #search-preview-radar,
    #search-map-launch,
    #search-shortlist,
    #search-shortlist-compare,
    #search-viewed-services,
    #service-categories,
    #service-gallery,
    #service-contact,
    #service-detail-booking-anchor,
    #service-discovery-cockpit,
    #service-discovery-radar,
    #service-discovery-shortlist,
    #service-discovery-shortlist-compare,
    #service-discovery-viewed,
    #service-detail-map,
    #service-hours,
    #reviews-section,
    #about-problem,
    #about-why-now,
    #about-product,
    #about-advantage,
    #about-moat,
    #about-gtm,
    #about-wins) {
    scroll-margin-top: 110px;
}

.results-aside-radar-card {
    border-color: rgba(0, 164, 243, 0.24);
    background: linear-gradient(180deg, rgba(8, 17, 24, 0.98), rgba(6, 13, 20, 0.94));
}

.results-aside-radar-card .results-status-strip,
.service-detail-radar-card .results-status-strip,
.service-detail-discovery-cockpit .results-status-strip {
    align-items: flex-start;
}


html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    background:
        radial-gradient(circle at top, rgba(0, 164, 243, 0.13), transparent 32%),
        linear-gradient(180deg, #050505 0%, #000000 32%, #020202 100%);
    color: var(--ca-text);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
svg {
    max-width: 100%;
}

body {
    font-size: 14px;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
}

body::-webkit-scrollbar,
.discovery-carousel__viewport::-webkit-scrollbar,
.home-nearest-list__viewport::-webkit-scrollbar,
.gallery-carousel__thumbs::-webkit-scrollbar,
.search-chip-rail::-webkit-scrollbar,
.home-discovery-rail::-webkit-scrollbar,
.results-refinement-strip::-webkit-scrollbar,
.map-panel__surface::-webkit-scrollbar,
.service-search-map__surface::-webkit-scrollbar {
    width: var(--ca-scrollbar-size);
    height: var(--ca-scrollbar-size);
}

body::-webkit-scrollbar-track,
.discovery-carousel__viewport::-webkit-scrollbar-track,
.home-nearest-list__viewport::-webkit-scrollbar-track,
.gallery-carousel__thumbs::-webkit-scrollbar-track,
.search-chip-rail::-webkit-scrollbar-track,
.home-discovery-rail::-webkit-scrollbar-track,
.results-refinement-strip::-webkit-scrollbar-track,
.map-panel__surface::-webkit-scrollbar-track,
.service-search-map__surface::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb,
.discovery-carousel__viewport::-webkit-scrollbar-thumb,
.home-nearest-list__viewport::-webkit-scrollbar-thumb,
.gallery-carousel__thumbs::-webkit-scrollbar-thumb,
.search-chip-rail::-webkit-scrollbar-thumb,
.home-discovery-rail::-webkit-scrollbar-thumb,
.results-refinement-strip::-webkit-scrollbar-thumb,
.map-panel__surface::-webkit-scrollbar-thumb,
.service-search-map__surface::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: var(--ca-scrollbar-thumb);
    background-clip: padding-box;
    box-shadow: inset 0 0 0 1px var(--ca-scrollbar-thumb-border);
}

body::-webkit-scrollbar-thumb:hover,
.discovery-carousel__viewport::-webkit-scrollbar-thumb:hover,
.home-nearest-list__viewport::-webkit-scrollbar-thumb:hover,
.gallery-carousel__thumbs::-webkit-scrollbar-thumb:hover,
.search-chip-rail::-webkit-scrollbar-thumb:hover,
.home-discovery-rail::-webkit-scrollbar-thumb:hover,
.results-refinement-strip::-webkit-scrollbar-thumb:hover,
.map-panel__surface::-webkit-scrollbar-thumb:hover,
.service-search-map__surface::-webkit-scrollbar-thumb:hover {
    background: var(--ca-scrollbar-thumb-hover);
    background-clip: padding-box;
}

.discovery-carousel__viewport,
.home-nearest-list__viewport,
.gallery-carousel__thumbs,
.search-chip-rail,
.home-discovery-rail,
.results-refinement-strip,
.map-panel__surface,
.service-search-map__surface {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 100;
    padding: 10px 14px;
    border: 1px solid rgba(0, 164, 243, 0.32);
    background: rgba(7, 14, 20, 0.94);
    color: var(--ca-text);
    transform: translateY(-140%);
    transition: transform 180ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
}

.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;
}

.discovery-continuity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: var(--ca-radius-card);
    border: 1px solid var(--ca-border);
    background: linear-gradient(135deg, rgba(0, 164, 243, 0.14), rgba(6, 42, 54, 0.72));
    margin: 14px 0 18px;
}

.discovery-continuity__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.discovery-continuity__meta strong {
    font-size: 14px;
    letter-spacing: 0.2px;
}

.discovery-continuity__meta span {
    color: rgba(225, 225, 225, 0.82);
    font-size: 12px;
    line-height: 1.3;
}

.workflow-inactivity-banner {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(15, 20, 28, 0.94), rgba(9, 12, 18, 0.88));
}

.workflow-inactivity-banner__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.workflow-inactivity-banner__header strong {
    font-size: 14px;
    letter-spacing: 0.01em;
}

.workflow-inactivity-banner__header span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.workflow-inactivity-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.workflow-inactivity-banner__meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.workflow-inactivity-banner__meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.workflow-inactivity-banner--info {
    border-color: rgba(0, 164, 243, 0.28);
    background: linear-gradient(135deg, rgba(0, 164, 243, 0.16), rgba(7, 20, 31, 0.94));
}

.workflow-inactivity-banner--warning {
    border-color: rgba(255, 184, 77, 0.32);
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.16), rgba(28, 19, 7, 0.94));
}

.workflow-inactivity-banner--critical {
    border-color: rgba(255, 107, 107, 0.34);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.18), rgba(32, 9, 9, 0.94));
}

.discovery-continuity__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.discovery-continuity__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.discovery-continuity-shell,
.discovery-continuity-region {
    display: grid;
    gap: 12px;
}

.discovery-continuity-toggle {
    display: none;
    width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(6, 12, 17, 0.92);
    color: var(--ca-text);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.discovery-continuity-toggle__eyebrow {
    color: var(--ca-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.discovery-continuity-toggle strong,
.discovery-continuity-toggle small,
.discovery-continuity-toggle__state {
    display: block;
}

.discovery-continuity-toggle strong {
    font-size: 0.98rem;
    line-height: 1.25;
}

.discovery-continuity-toggle small {
    color: var(--ca-text-subtle);
    line-height: 1.45;
}

.discovery-continuity-toggle__state {
    color: var(--ca-text);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 720px) {
    .discovery-continuity {
        flex-direction: column;
        align-items: flex-start;
    }

    .discovery-continuity__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .discovery-continuity-toggle {
        display: grid;
        gap: 4px;
    }

    .discovery-continuity-shell {
        position: sticky;
        top: var(--ca-shell-sticky-top);
        z-index: 10;
    }

    .discovery-continuity-shell--collapsed .discovery-continuity-region {
        display: none;
    }
}

.service-card--interactive {
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card--interactive:hover,
.service-card--interactive:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 164, 243, 0.32);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.service-card--interactive:active {
    transform: translateY(0);
}

.notification-center-shell {
    position: relative;
}

.notification-center__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 15, 22, 0.92);
    color: var(--ca-text);
}

.notification-center__icon {
    font-size: 18px;
}

.notification-center__badge {
    position: absolute;
    top: -6px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ff5d73;
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-center__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(420px, 92vw);
    max-height: 80vh;
    overflow: auto;
    z-index: 60;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(11, 18, 25, 0.98), rgba(8, 13, 18, 0.98));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.notification-center__panel-header,
.notification-center__item-top,
.notification-center__item-footer,
.notification-center__toast-actions,
.notification-center__panel-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notification-center__panel-meta,
.notification-center__item-body,
.notification-center__empty,
.notification-center__error {
    color: var(--ca-text-muted);
    font-size: 12px;
}

.notification-center__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.notification-center__item {
    width: 100%;
    text-align: left;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 24, 32, 0.92);
    color: var(--ca-text);
}

.notification-center__item--unread {
    border-color: rgba(0, 164, 243, 0.32);
    background: rgba(10, 28, 39, 0.96);
}

.notification-center__item-top span,
.notification-center__pill,
.notification-center__preferences label {
    color: var(--ca-text-subtle);
    font-size: 11px;
}

.notification-center__item-body {
    margin-top: 8px;
    line-height: 1.45;
}

.notification-center__item-actions,
.notification-center__attempt-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-center__item-actions {
    margin-top: 10px;
    align-items: flex-start;
}

.notification-center__detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    background: rgba(8, 15, 22, 0.88);
}

.notification-center__detail-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--ca-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.notification-center__detail-debug {
    max-height: 160px;
    overflow: auto;
    padding: 12px;
    border-radius: 12px;
    background: rgba(16, 24, 32, 0.96);
    color: #d7e6f3;
    font-size: 11px;
    white-space: pre-wrap;
    word-break: break-word;
}

.notification-center__attempt {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 24, 32, 0.78);
}

.notification-center__attempt--success {
    border-color: rgba(72, 187, 120, 0.22);
}

.notification-center__attempt--failure {
    border-color: rgba(248, 113, 113, 0.22);
}

.notification-center__pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-center__pill--danger {
    border-color: rgba(248, 113, 113, 0.35);
    color: #fecaca;
}

.notification-center__pill--warning {
    border-color: rgba(251, 191, 36, 0.35);
    color: #fde68a;
}

.notification-center__pill--success {
    border-color: rgba(74, 222, 128, 0.35);
    color: #bbf7d0;
}

.notification-center__preferences {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.notification-center__preferences-title {
    font-size: 13px;
    font-weight: 700;
}

.notification-center__save,
.notification-center__link,
.notification-center__toast-actions button {
    border: 0;
    background: transparent;
    color: #7dd3fc;
}

.notification-center__toasts {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(360px, calc(100vw - 24px));
}

.notification-center__toast {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.notification-center__toast--high {
    background: linear-gradient(135deg, rgba(112, 17, 32, 0.98), rgba(36, 9, 14, 0.96));
}

.notification-center__toast--medium {
    background: linear-gradient(135deg, rgba(8, 61, 89, 0.98), rgba(6, 24, 36, 0.96));
}

.notification-center__toast--low {
    background: linear-gradient(135deg, rgba(28, 38, 46, 0.98), rgba(13, 18, 23, 0.96));
}

@media (max-width: 720px) {
    .notification-center__panel {
        right: -16px;
    }

    .notification-center__toasts {
        right: 12px;
        left: 12px;
        width: auto;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 720px) {
    .discovery-section-nav,
    .home-section-nav,
    .search-section-nav,
    .results-section-nav {
        top: 64px;
        gap: 10px;
        padding: 10px 12px;
    }

    .search-action-card {
        position: static;
    }

    .about-investor-nav .discovery-section-nav {
        top: auto;
    }
}

@media (max-width: 720px) {
    .discovery-section-nav,
    .home-section-nav,
    .search-section-nav,
    .results-section-nav {
        position: sticky;
        z-index: 20;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .discovery-section-nav::-webkit-scrollbar,
    .home-section-nav::-webkit-scrollbar,
    .search-section-nav::-webkit-scrollbar,
    .results-section-nav::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .discovery-section-nav .carabout-button,
    .home-section-nav .carabout-button,
    .search-section-nav .carabout-button,
    .results-section-nav .carabout-button {
        scroll-snap-align: start;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .about-investor-nav .discovery-section-nav {
        position: static;
        overflow: visible;
        scroll-snap-type: none;
        scrollbar-width: auto;
    }

    .results-refinement-strip {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        gap: 10px;
        padding-bottom: 6px;
        padding-right: max(12px, env(safe-area-inset-right));
        scrollbar-width: none;
    }

    .results-refinement-strip::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .results-refinement-strip {
        margin-top: 12px;
        padding-left: max(12px, env(safe-area-inset-left));
    }

    .discovery-cockpit {
        margin-bottom: 8px;
        padding-bottom: max(14px, calc(10px + env(safe-area-inset-bottom)));
    }


    .results-refinement-strip .filter-chip,
    .results-refinement-strip .carabout-button {
        scroll-snap-align: start;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .search-results-layout {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .search-results-aside {
        order: 2;
    }

    .results-list {
        order: 1;
    }

    .search-floating-bar {
        bottom: 88px;
        z-index: 25;
    }

    .discovery-cockpit {
        bottom: 16px;
        z-index: 26;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }

    .carabout-button:hover,
    .filter-chip:hover,
    .results-viewed-card--interactive:hover,
    .search-history-card--interactive:hover,
    .service-card--interactive:hover {
        transform: none;
    }

    .home-featured-viewport {
        scroll-snap-type: none !important;
    }
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1:focus {
    outline: none;
}

#blazor-error-ui {
    background: #7e1f1f;
    color: white;
}

.carabout-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.carabout-page > *,
.carabout-card,
.hero-panel,
.hero-panel__content,
.hero-panel__stats,
.home-side-column,
.home-section-stack,
.results-status-strip,
.home-status-strip,
.carabout-card__actions,
.chip-cloud,
.service-detail-layout,
.service-detail-main,
.service-detail-sidebar,
.service-detail-section-nav,
.discovery-continuity,
.discovery-continuity__meta,
.discovery-continuity__actions,
.discovery-continuity__right {
    min-width: 0;
    max-width: 100%;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px);
}

.loading-overlay__content {
    align-items: center;
}

.loading-overlay__spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(0, 164, 243, 0.2);
    border-top-color: var(--ca-primary);
    animation: ca-spin 0.8s linear infinite;
}

@keyframes ca-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ca-shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

@keyframes ca-fade-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carabout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.carabout-button:hover {
    transform: translateY(-1px);
}

.carabout-button:focus-visible,
.filter-chip:focus-visible,
.availability-chip:focus-visible,
.time-slot-chip:focus-visible,
.service-layout-nav a:focus-visible,
.service-layout-nav__logout:focus-visible,
.admin-shell a:focus-visible,
.admin-shell button:focus-visible,
.carabout-input:focus-visible,
.search-city-selector__toggle:focus-visible,
.search-city-selector__option:focus-visible,
.search-city-picker__close:focus-visible,
.search-city-picker__more:focus-visible,
a:focus-visible {
    outline: 2px solid rgba(0, 164, 243, 0.8);
    outline-offset: 2px;
}

.carabout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carabout-button--primary {
    background: var(--ca-primary);
    color: white;
}

.carabout-button--secondary {
    background: rgba(6, 42, 54, 0.92);
    border-color: rgba(0, 164, 243, 0.24);
    color: var(--ca-text);
}

.carabout-button--ghost {
    background: rgba(17, 17, 17, 0.9);
    border-color: var(--ca-border-strong);
    color: var(--ca-text-muted);
}

.carabout-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.96) 0%, rgba(11, 11, 11, 0.98) 100%);
    border: 1px solid var(--ca-border);
    border-radius: var(--ca-radius-card);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.ca-fade-up {
    animation: ca-fade-up 220ms ease;
}

.ca-fade-up--delay-1 {
    animation-delay: 60ms;
    animation-fill-mode: both;
}

.ca-fade-up--delay-2 {
    animation-delay: 120ms;
    animation-fill-mode: both;
}

.ca-fade-up--delay-3 {
    animation-delay: 180ms;
    animation-fill-mode: both;
}

.carabout-card--accent {
    border-color: rgba(0, 164, 243, 0.24);
}

.carabout-card__header,
.section-header,
.results-header,
.service-card__top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.carabout-card__body,
.section-header__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.carabout-card__title,
.section-header__title,
.results-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-header__subtitle,
.results-header p {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--ca-border-strong);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.96);
    color: var(--ca-text-muted);
    cursor: pointer;
    touch-action: manipulation;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.filter-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 164, 243, 0.2);
}

.filter-chip--selected {
    background: rgba(0, 164, 243, 0.14);
    border-color: rgba(0, 164, 243, 0.28);
    color: var(--ca-text);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid transparent;
}

.status-badge--open {
    background: rgba(76, 175, 80, 0.16);
    color: #7de08b;
    border-color: rgba(76, 175, 80, 0.22);
}

.status-badge--closed {
    background: rgba(244, 67, 54, 0.14);
    color: #ff8a80;
    border-color: rgba(244, 67, 54, 0.22);
}

.status-badge--verified {
    background: rgba(33, 150, 243, 0.14);
    color: #7bc4ff;
    border-color: rgba(33, 150, 243, 0.22);
}

.status-badge--promoted {
    background: rgba(255, 193, 7, 0.14);
    color: #ffd760;
    border-color: rgba(255, 193, 7, 0.22);
}

.status-badge--pending {
    background: rgba(255, 140, 0, 0.14);
    color: #ffb55e;
    border-color: rgba(255, 140, 0, 0.22);
}

.status-badge--neutral {
    background: rgba(145, 145, 145, 0.14);
    color: var(--ca-text-muted);
    border-color: rgba(145, 145, 145, 0.22);
}

.carabout-input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--ca-border-strong);
    border-radius: 14px;
    background: rgba(11, 11, 11, 0.95);
    color: var(--ca-text);
}

.carabout-input:focus {
    outline: 2px solid rgba(0, 164, 243, 0.22);
    border-color: rgba(0, 164, 243, 0.36);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
    gap: 16px;
    padding: 22px;
    background: linear-gradient(145deg, rgba(0, 164, 243, 0.16), rgba(13, 13, 13, 0.95));
    border: 1px solid rgba(0, 164, 243, 0.22);
    border-radius: var(--ca-radius-hero);
    box-shadow: var(--ca-shadow);
}

.hero-panel__content,
.hero-panel__stats,
.home-side-column,
.home-section-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-panel__eyebrow,
.section-header__eyebrow,
.carabout-card__eyebrow {
    color: var(--ca-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-panel h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.02;
}

.hero-panel p,
.carabout-card p,
.empty-state p {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.about-page,
.contact-page,
.client-entry-page {
    gap: 28px;
}

.about-hero,
.contact-hero,
.client-entry-hero {
    border-color: rgba(0, 164, 243, 0.26);
}

.about-hero {
    background: linear-gradient(145deg, rgba(0, 164, 243, 0.2), rgba(15, 18, 28, 0.96));
}

.contact-hero {
    background: linear-gradient(145deg, rgba(6, 42, 54, 0.94), rgba(12, 14, 19, 0.97));
}

.client-entry-hero {
    background: linear-gradient(145deg, rgba(0, 164, 243, 0.16), rgba(7, 19, 28, 0.96));
}

.about-story-grid,
.about-principles-grid,
.about-stack-grid,
.contact-grid,
.contact-flow-grid,
.contact-help-grid {
    display: grid;
    gap: 16px;
}

.about-story-grid,
.about-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-stack-grid,
.contact-grid,
.contact-flow-grid,
.contact-help-grid,
.client-entry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-flow-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.client-entry-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.about-story-card,
.about-principle-card,
.about-stack-card,
.contact-step-card,
.contact-help-card {
    min-height: 100%;
}

.about-vision-panel,
.about-cta-panel,
.contact-help-panel,
.contact-card,
.client-entry-card {
    gap: 16px;
    border-color: rgba(0, 164, 243, 0.2);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.about-page .section-header__content,
.contact-page .section-header__content {
    max-width: 860px;
}

.about-hero .hero-panel__content p,
.contact-hero .hero-panel__content p {
    max-width: 68ch;
}

.about-story-card,
.about-principle-card,
.about-stack-card,
.contact-step-card,
.contact-help-card {
    border-color: rgba(0, 164, 243, 0.16);
    background: linear-gradient(180deg, rgba(11, 18, 24, 0.98), rgba(8, 13, 18, 0.94));
}

.about-vision-panel {
    border-color: rgba(255, 193, 7, 0.18);
    background: linear-gradient(180deg, rgba(21, 19, 11, 0.98), rgba(9, 14, 20, 0.94));
}

.about-cta-panel {
    border-color: rgba(0, 164, 243, 0.24);
}

.about-page--deck {
    gap: 32px;
}

.about-release-strip,
.about-operating-grid,
.about-release-cta-grid {
    display: grid;
    gap: 16px;
}

.about-release-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-hero--deck {
    position: relative;
    overflow: hidden;
    border-color: rgba(0, 164, 243, 0.3);
    background:
        radial-gradient(circle at top right, rgba(0, 164, 243, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(0, 164, 243, 0.22), rgba(13, 16, 27, 0.96));
}

.about-hero--deck::after {
    content: "";
    position: absolute;
    inset: auto -10% -30% auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 164, 243, 0.14), transparent 68%);
    pointer-events: none;
}

.about-hero-stat {
    position: relative;
    z-index: 1;
}

.about-release-card {
    min-height: 100%;
    border-color: rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(9, 17, 24, 0.98), rgba(7, 12, 18, 0.94));
}

.about-release-card strong,
.about-operating-card__grid strong,
.about-business-card__list strong,
.about-roadmap-panel__grid strong {
    color: var(--ca-text);
}

.about-release-card span,
.about-operating-card__grid span,
.about-business-card__list span,
.about-roadmap-panel__grid span {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.about-investor-nav {
    gap: 18px;
    border-color: rgba(0, 164, 243, 0.24);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(7, 12, 18, 0.94));
    position: sticky;
    top: 78px;
    z-index: 12;
    backdrop-filter: blur(14px);
}

.about-investor-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-investor-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(0, 164, 243, 0.22);
    border-radius: 999px;
    background: rgba(6, 13, 20, 0.88);
    color: var(--ca-text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    appearance: none;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.about-investor-nav__link:hover,
.about-investor-nav__link:focus-visible {
    border-color: rgba(0, 164, 243, 0.42);
    color: var(--ca-text);
    transform: translateY(-1px);
}

.about-journey-board {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(7, 10, 14, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-journey-board__brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ca-text-muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-journey-board__brand img {
    width: min(170px, 48vw);
    height: auto;
}

.about-journey-board__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.about-journey-board__steps div {
    display: grid;
    gap: 8px;
    min-height: 94px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.about-journey-board__steps strong {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 164, 243, 0.18);
    color: var(--ca-text);
    font-size: .78rem;
}

.about-journey-board__steps span {
    color: var(--ca-text);
    font-size: .84rem;
    font-weight: 800;
    line-height: 1.25;
}

.about-deck-section,
.about-moat-grid,
.about-product-grid,
.about-gtm-grid,
.about-compare-grid {
    display: grid;
    gap: 18px;
}

.about-deck-panel,
.about-timing-panel,
.about-compound-panel,
.about-gtm-panel,
.about-product-focus-card,
.about-final-panel {
    border-color: rgba(0, 164, 243, 0.22);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(7, 12, 18, 0.94));
}

.about-deck-panel--problem {
    border-color: rgba(255, 107, 107, 0.18);
    background: linear-gradient(180deg, rgba(30, 14, 16, 0.96), rgba(8, 12, 17, 0.94));
}

.about-deck-panel--product,
.about-final-panel {
    border-color: rgba(81, 207, 102, 0.2);
    background: linear-gradient(180deg, rgba(11, 22, 18, 0.96), rgba(8, 13, 18, 0.94));
}

.about-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-operating-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

.about-moat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-gtm-grid,
.about-compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-stack-card--accent {
    border-color: rgba(0, 164, 243, 0.22);
}

.about-timing-panel__grid,
.about-compound-panel__grid,
.about-gtm-panel__grid,
.about-operating-card__grid,
.about-roadmap-panel__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-timing-panel__grid > div,
.about-compound-panel__grid > div,
.about-gtm-panel__grid > div,
.about-operating-card__grid > div,
.about-roadmap-panel__grid > div,
.about-business-card__list > div {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(0, 164, 243, 0.14);
    border-radius: 16px;
    background: rgba(6, 13, 20, 0.72);
}

.about-timing-panel__grid strong,
.about-compound-panel__grid strong,
.about-gtm-panel__grid strong {
    color: var(--ca-text);
}

.about-timing-panel__grid span,
.about-compound-panel__grid span,
.about-gtm-panel__grid span {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.about-business-card__list {
    display: grid;
    gap: 14px;
}

.about-roadmap-panel {
    border-color: rgba(255, 193, 7, 0.2);
    background: linear-gradient(180deg, rgba(22, 19, 10, 0.96), rgba(8, 13, 18, 0.94));
}

.about-principle-card--release {
    justify-content: space-between;
}

.about-release-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-product-focus-card .carabout-card__body,
.about-final-panel .discovery-feature-panel__summary {
    position: relative;
    z-index: 1;
}

/* =========================================================
   ABOUT PAGE - SCROLL ANIMATIONS
   ========================================================= */

.about-page.about-scroll-ready .reveal,
.about-page.about-scroll-ready .reveal-up,
.about-page.about-scroll-ready .reveal-scale,
.about-page.about-scroll-ready .reveal-left,
.about-page.about-scroll-ready .reveal-right {
    opacity: 0;
    transition:
        opacity 0.65s var(--ease-smooth, cubic-bezier(0.16, 1, 0.3, 1)),
        transform 0.65s var(--ease-smooth, cubic-bezier(0.16, 1, 0.3, 1));
    will-change: opacity, transform;
}

.about-page.about-scroll-ready .reveal-up {
    transform: translateY(48px);
}

.about-page.about-scroll-ready .reveal-scale {
    transform: scale(0.94);
}

.about-page.about-scroll-ready .reveal-left {
    transform: translateX(-48px);
}

.about-page.about-scroll-ready .reveal-right {
    transform: translateX(48px);
}

.about-page.about-scroll-ready .reveal {
    transform: translateY(32px);
}

.about-page.about-scroll-ready .reveal.is-visible,
.about-page.about-scroll-ready .reveal-up.is-visible,
.about-page.about-scroll-ready .reveal-scale.is-visible,
.about-page.about-scroll-ready .reveal-left.is-visible,
.about-page.about-scroll-ready .reveal-right.is-visible {
    opacity: 1;
    transform: none;
}

[data-stagger-group] > * {
    transition-delay: calc(var(--stagger-i, 0) * 90ms);
}

.about-deck-section[data-sticky-section] {
    --scroll-progress: 0;
    position: relative;
}

.about-deck-section[data-sticky-section]::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 3rem;
    transform: scaleX(var(--scroll-progress));
    transform-origin: left center;
    background: linear-gradient(90deg, var(--ca-primary, #00a4f3) 0%, transparent 100%);
    transition: transform 120ms linear;
}

.about-page .section-header::before {
    content: "";
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 1px;
    margin-bottom: 3rem;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, var(--ca-primary, #00a4f3) 0%, transparent 100%);
    transition: transform 1s ease;
}

.about-page .section-header.is-visible::before {
    transform: scaleX(1);
}

.about-section-nav a.active {
    border-color: rgba(0, 164, 243, 0.62);
    color: var(--ca-text);
    box-shadow: 0 0 0 1px rgba(0, 164, 243, 0.16), 0 10px 26px rgba(0, 164, 243, 0.14);
}

.about-hero h1 {
    animation: aboutHeroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-hero .hero-panel__content > p {
    animation: aboutHeroIn 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-hero .hero-panel__actions {
    animation: aboutHeroIn 0.8s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-hero .hero-panel__chips {
    animation: aboutHeroIn 0.8s 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-hero .about-journey-board {
    animation: aboutHeroIn 0.9s 0.48s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-hero .results-status-strip {
    animation: aboutHeroIn 0.7s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes aboutHeroIn {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-panel__stats .stat-card {
    opacity: 0;
    transform: translateY(40px);
    animation: statCardIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-panel__stats .stat-card:nth-child(1) {
    animation-delay: 0.6s;
}

.hero-panel__stats .stat-card:nth-child(2) {
    animation-delay: 0.72s;
}

.hero-panel__stats .stat-card:nth-child(3) {
    animation-delay: 0.84s;
}

.hero-panel__stats .stat-card:nth-child(4) {
    animation-delay: 0.96s;
}

@keyframes statCardIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-release-strip .about-release-card {
    opacity: 0;
    transform: translateY(28px);
    animation: releaseCardIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-release-strip .about-release-card:nth-child(1) {
    animation-delay: 1.1s;
}

.about-release-strip .about-release-card:nth-child(2) {
    animation-delay: 1.2s;
}

.about-release-strip .about-release-card:nth-child(3) {
    animation-delay: 1.3s;
}

.about-release-strip .about-release-card:nth-child(4) {
    animation-delay: 1.4s;
}

@keyframes releaseCardIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-journey-board__steps > div {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    animation: journeyStepIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-journey-board__steps > div:nth-child(1) {
    animation-delay: 0.7s;
}

.about-journey-board__steps > div:nth-child(2) {
    animation-delay: 0.82s;
}

.about-journey-board__steps > div:nth-child(3) {
    animation-delay: 0.94s;
}

.about-journey-board__steps > div:nth-child(4) {
    animation-delay: 1.06s;
}

.about-journey-board__steps > div:nth-child(5) {
    animation-delay: 1.18s;
}

@keyframes journeyStepIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-panel__chips .tag-chip {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    animation: chipIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-panel__chips .tag-chip:nth-child(1) {
    animation-delay: 0.55s;
}

.hero-panel__chips .tag-chip:nth-child(2) {
    animation-delay: 0.63s;
}

.hero-panel__chips .tag-chip:nth-child(3) {
    animation-delay: 0.71s;
}

.hero-panel__chips .tag-chip:nth-child(4) {
    animation-delay: 0.79s;
}

.hero-panel__chips .tag-chip:nth-child(5) {
    animation-delay: 0.87s;
}

@keyframes chipIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-panel__eyebrow {
    animation: eyebrowIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes eyebrowIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-up,
    .reveal-scale,
    .reveal-left,
    .reveal-right,
    .about-hero h1,
    .about-hero .hero-panel__content > p,
    .about-hero .hero-panel__actions,
    .about-hero .hero-panel__chips,
    .about-hero .about-journey-board,
    .about-hero .results-status-strip,
    .hero-panel__stats .stat-card,
    .about-release-strip .about-release-card,
    .about-journey-board__steps > div,
    .hero-panel__chips .tag-chip,
    .hero-panel__eyebrow {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .about-deck-section[data-sticky-section]::before,
    .about-page .section-header::before {
        width: 100%;
        transform: none !important;
        transition: none !important;
    }
}

.contact-help-panel {
    border-color: rgba(0, 164, 243, 0.24);
}

.client-entry-page .section-header,
.client-entry-stat .carabout-card__header,
.client-entry-card .carabout-card__header {
    flex-direction: column;
    align-items: flex-start;
}

.client-entry-page .section-header__content {
    max-width: 820px;
}

.client-entry-stat {
    min-height: 0;
}

.client-entry-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-entry-guide,
.client-auth-card,
.service-auth-card {
    gap: 16px;
    border-color: rgba(0, 164, 243, 0.22);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.client-entry-guide__copy,
.client-auth-highlight-list,
.client-auth-form-grid,
.client-auth-consent-list,
.client-auth-context-list,
.service-auth-highlight-list,
.service-auth-form-grid,
.service-auth-consent-list,
.service-auth-context-list {
    display: grid;
    gap: 12px;
}

.client-entry-guide__copy h2,
.client-entry-guide__copy p {
    margin: 0;
}

.client-entry-guide__copy h2 {
    font-size: clamp(1.25rem, 2.8vw, 1.8rem);
}

.client-auth-page,
.service-auth-page {
    gap: 24px;
}

.client-auth-page .section-header__content,
.service-auth-page .section-header__content {
    max-width: 820px;
}

.client-auth-grid,
.service-auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 16px;
    align-items: start;
}

.service-auth-grid--registration {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.client-auth-card--context,
.service-auth-card--context {
    border-color: rgba(81, 207, 102, 0.2);
    background: linear-gradient(180deg, rgba(10, 22, 18, 0.96), rgba(8, 13, 18, 0.92));
}

.client-auth-highlight,
.service-auth-highlight {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.client-auth-highlight strong,
.service-auth-highlight strong {
    color: var(--ca-text);
}

.client-auth-highlight span,
.client-auth-context-list,
.service-auth-highlight span,
.service-auth-context-list {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.client-auth-context-list,
.service-auth-context-list {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.client-auth-consent-list,
.service-auth-consent-list {
    margin-top: 4px;
}

.client-auth-consent-row,
.service-auth-consent-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.client-auth-consent-row input,
.service-auth-consent-row input {
    margin-top: 3px;
}

.client-auth-actions .carabout-button,
.client-entry-guide .carabout-button,
.service-auth-actions .carabout-button {
    min-width: 0;
}

.service-auth-card__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-auth-card__brand h2,
.service-auth-card__brand p {
    margin: 0;
}

.service-auth-card__logo {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(0, 164, 243, 0.12);
    color: var(--ca-primary);
    font-size: 26px;
}

.service-auth-hidden-input {
    display: none;
}

.client-entry-card--login {
    border-color: rgba(0, 164, 243, 0.26);
}

.client-entry-card--register {
    border-color: rgba(81, 207, 102, 0.22);
    background: linear-gradient(180deg, rgba(10, 22, 18, 0.96), rgba(8, 13, 18, 0.92));
}

.contact-card--client {
    border-color: rgba(0, 164, 243, 0.24);
}

.contact-card--service {
    border-color: rgba(81, 207, 102, 0.2);
    background: linear-gradient(180deg, rgba(10, 22, 18, 0.96), rgba(8, 13, 18, 0.92));
}

.contact-card--product {
    border-color: rgba(255, 193, 7, 0.2);
    background: linear-gradient(180deg, rgba(25, 21, 10, 0.96), rgba(8, 13, 18, 0.92));
}

.about-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-channel-list {
    margin: 0;
    padding-left: 18px;
    color: var(--ca-text-muted);
    line-height: 1.8;
}

.contact-help-card strong,
.about-stack-card strong,
.about-story-card strong,
.about-principle-card strong,
.contact-step-card strong {
    color: var(--ca-text);
}

.contact-help-card span {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.about-stack-section,
.contact-help-panel {
    display: grid;
    gap: 18px;
}

.legal-page,
.gdpr-request-page,
.support-fallback-page {
    gap: 24px;
}

.legal-page .section-header__content {
    max-width: 860px;
}

.support-overview-card,
.legal-overview-card,
.gdpr-overview-card,
.support-fallback-card {
    gap: 16px;
    border-color: rgba(0, 164, 243, 0.2);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.about-overview-card {
    border-color: rgba(0, 164, 243, 0.24);
}

.contact-overview-card {
    border-color: rgba(0, 164, 243, 0.22);
}

.legal-overview-card {
    border-color: rgba(255, 193, 7, 0.18);
    background: linear-gradient(180deg, rgba(22, 19, 10, 0.96), rgba(8, 13, 18, 0.92));
}

.gdpr-overview-card {
    border-color: rgba(81, 207, 102, 0.2);
    background: linear-gradient(180deg, rgba(10, 22, 18, 0.96), rgba(8, 13, 18, 0.92));
}

.support-overview-grid,
.support-fallback-grid,
.gdpr-request-grid {
    display: grid;
    gap: 16px;
}

.support-overview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-overview-card .support-overview-grid,
.contact-overview-card .support-overview-grid,
.gdpr-overview-card .support-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-fallback-grid,
.gdpr-request-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-overview-grid .results-summary-tile,
.support-fallback-card {
    min-height: 100%;
}

.support-fallback-hero {
    border-color: rgba(0, 164, 243, 0.24);
    background: linear-gradient(145deg, rgba(0, 164, 243, 0.16), rgba(11, 15, 22, 0.97));
}

.support-fallback-hero--error {
    border-color: rgba(255, 193, 7, 0.22);
    background: linear-gradient(145deg, rgba(44, 35, 10, 0.96), rgba(11, 15, 22, 0.97));
}

.support-fallback-page .hero-panel__content p {
    max-width: 70ch;
}

.support-fallback-card .carabout-card__actions,
.support-overview-card .carabout-card__actions {
    align-items: stretch;
}

.about-investor-nav .discovery-section-nav {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    position: static;
    top: auto;
}

.hero-panel__actions,
.hero-panel__chips,
.home-status-strip,
.carabout-card__actions,
.chip-cloud,
.service-preview-card__body {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-mobile-launch,
.home-mobile-launch__copy,
.home-mobile-discovery-head,
.home-resume-chip {
    display: none;
}

@media (max-width: 720px) {
    .home-page > * {
        order: 20;
    }

    .home-page > #home-featured-section {
        order: 1;
    }

    .home-page > #home-mobile-launch {
        order: 2;
    }

    .home-page > .discovery-section-nav-mobile-shell {
        order: 3;
    }

    .home-page > #home-quick-discovery {
        order: 4;
    }

    .home-page > #home-recent-searches,
    .home-page > #home-shortlist,
    .home-page > #home-shortlist-compare,
    .home-page > #home-viewed-services {
        order: 5;
    }

    .home-page > .hero-panel,
    .home-page > .discovery-cockpit {
        display: none;
    }

    .home-page .discovery-carousel__item,
    .home-page .home-nearest-list__item {
        flex-basis: min(270px, calc(100vw - 40px));
    }
}

/* V2 service-detail mobile base styles. A final guard override appears near
   the end because older responsive service-detail rules still follow here. */
.service-detail-mobile-summary,
.service-detail-mobile-segments,
.service-detail-mobile-mini-cta {
    display: none !important;
}

@media (max-width: 720px) {
    .service-detail-page {
        gap: 12px;
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .service-detail-page,
    .service-detail-layout,
    .service-detail-main,
    .service-detail-mobile-summary,
    .service-detail-mobile-segments {
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .service-detail-page > .section-header,
    .service-detail-page > .discovery-section-nav-mobile-shell,
    .service-detail-page > .service-detail-section-nav.discovery-section-nav--desktop,
    .service-detail-page .service-hero-card,
    .service-detail-page .service-detail-sidebar {
        display: none !important;
    }

    .service-detail-page > .discovery-continuity-shell {
        order: 0;
        position: sticky;
        top: var(--ca-shell-sticky-top);
        z-index: 16;
    }

    .service-detail-mobile-summary {
        display: grid !important;
        order: 1;
    }

    .service-detail-mobile-segments {
        display: flex !important;
        order: 2;
    }

    .service-detail-layout {
        order: 3;
        gap: 12px;
    }

    .service-detail-booking-anchor {
        order: 1;
    }

    #service-categories {
        order: 2;
    }

    #service-catalog {
        order: 3;
    }

    #service-detail-map {
        order: 4;
    }

    #service-contact {
        order: 5;
    }

    #service-hours {
        order: 6;
    }

    #service-gallery {
        order: 7;
    }

    #reviews-section {
        order: 8;
    }

    #service-location {
        order: 9;
    }

    #service-description {
        order: 10;
    }

    #service-review-panel {
        order: 11;
    }

    .service-detail-page .service-action-bar {
        order: 12;
    }

    .service-detail-mobile-mini-cta {
        display: grid !important;
    }
}

/* V2 public discovery mobile specificity overrides. The end-of-file guard
   below locks the same route ordering after older responsive blocks. */
@media (max-width: 720px) {
    .search-results-page > .results-mobile-start {
        order: 1 !important;
    }

    .search-results-page > .results-summary-shell {
        display: none !important;
    }

    .search-results-page > .discovery-section-nav-mobile-shell {
        order: 2 !important;
    }

    .search-results-page > .search-results-flow {
        order: 3 !important;
    }

    .search-results-page--list-focus .search-results-flow__layout,
    .search-results-flow__layout {
        order: 1 !important;
    }

    .search-results-page--list-focus .search-results-flow__map-launch,
    .search-results-flow__map-launch {
        display: grid !important;
        order: 2 !important;
    }

    .search-results-page--list-focus .search-results-flow__refinement,
    .search-results-flow__refinement {
        order: 3 !important;
    }

    .search-results-page--list-focus .search-results-flow__map,
    .search-results-flow__map {
        order: 4 !important;
    }

    .search-results-page--map-focus .search-results-flow__map-launch {
        order: 1 !important;
    }

    .search-results-page--map-focus .search-results-flow__layout {
        order: 2 !important;
    }

    .search-results-page--map-focus .search-results-flow__map {
        order: 3 !important;
    }

    .search-map-all-flow__launch {
        display: grid !important;
        order: 1 !important;
    }

    .search-map-all-flow__summary {
        order: 2 !important;
    }

    .search-map-all-flow__map {
        order: 3 !important;
    }

    .search-map-all-flow__layout {
        order: 4 !important;
    }

    .search-map-all-flow__launch p,
    .search-map-all-flow__summary .discovery-feature-panel__subtitle,
    .search-map-all-flow__aside {
        display: none !important;
    }

    .ai-search-page > .ai-search-shell-wrap {
        order: 1 !important;
    }

    .ai-search-page > .discovery-section-nav-mobile-shell {
        order: 2 !important;
    }

    .ai-search-page > .ai-search-hero {
        order: 3 !important;
    }

    .ai-search-hero__organism,
    .ai-search-hero__badges,
    .ai-search-shell__signal-row,
    .ai-search-preview-board .ai-search-preview-card:not(.ai-search-preview-card--primary) {
        display: none !important;
    }

    .ai-search-shell__textarea-wrap {
        min-height: 0 !important;
        padding: 10px !important;
        border-radius: 18px !important;
    }

    .ai-search-textarea {
        min-height: 88px !important;
        resize: none !important;
        border-radius: 16px !important;
    }

    .search-choice-page::before,
    .search-choice-page::after,
    .search-choice-hero__organism,
    .search-choice-hero__badges,
    .search-choice-summary-grid,
    .search-choice-card .results-status-strip,
    .search-choice-hero .results-status-strip,
    .search-choice-hero p,
    .search-choice-card p {
        display: none !important;
    }

    .search-choice-hero,
    .search-choice-card {
        border-radius: 18px !important;
        padding: 14px !important;
    }

    .search-choice-hero {
        min-height: 0 !important;
        gap: 12px !important;
        grid-template-columns: 1fr !important;
    }

    .search-choice-hero__content {
        gap: 12px !important;
    }

    .search-choice-hero h1 {
        max-width: none !important;
        font-size: clamp(1.35rem, 8vw, 1.85rem) !important;
    }

    .search-choice-hero__actions,
    .search-choice-card__actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

/* V2 public discovery mobile audit: list-first results and compact decision surfaces. */
.public-discovery-mobile-start {
    display: none;
}

@media (max-width: 720px) {
    .search-page,
    .search-results-page,
    .search-map-all-page,
    .ai-search-page,
    .search-choice-page {
        overflow-x: hidden;
        overflow-x: clip;
    }

    .public-discovery-mobile-start {
        display: grid;
        gap: 10px;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        margin-inline: auto;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(0, 164, 243, 0.22);
        background: linear-gradient(180deg, rgba(7, 17, 24, 0.98), rgba(5, 10, 15, 0.96));
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    }

    .public-discovery-mobile-start__header {
        display: grid;
        gap: 4px;
        min-width: 0;
    }

    .public-discovery-mobile-start__eyebrow {
        color: var(--ca-primary);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .public-discovery-mobile-start h2 {
        margin: 0;
        font-size: clamp(1.12rem, 6vw, 1.45rem);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .public-discovery-mobile-start p {
        margin: 0;
        color: var(--ca-text-subtle);
        font-size: 0.86rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .public-discovery-mobile-start__status {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .public-discovery-mobile-start__status::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .public-discovery-mobile-start__status .results-status-pill {
        flex: 0 0 auto;
        min-height: 30px;
        padding-inline: 10px;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .public-discovery-mobile-start__actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .public-discovery-mobile-start__actions .carabout-button {
        min-width: 0;
        min-height: 42px;
        padding-inline: 10px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .search-page > .section-header {
        order: 0;
    }

    .search-page > .search-mobile-start {
        order: 1;
    }

    .search-page > #search-form-shell {
        order: 2;
    }

    .search-page > .discovery-section-nav-mobile-shell {
        order: 3;
    }

    .search-page > #search-preview-section {
        order: 4;
    }

    .search-page > .search-live-preview-card {
        order: 5;
    }

    .search-page > #search-memory-section {
        order: 6;
    }

    .search-page > .search-live-preview-card .results-summary-grid,
    .search-page > .search-live-preview-card .discovery-feature-panel__subtitle {
        display: none;
    }

    .search-page .search-chip-rail {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .search-page .search-chip-rail::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .search-page .search-chip-rail .filter-chip {
        white-space: nowrap;
    }

    .search-page #search-review-section .carabout-card__actions,
    .search-page #search-preview-section .carabout-card__actions,
    .search-page > .search-live-preview-card .carabout-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .search-page #search-review-section .carabout-card__actions .carabout-button[type="submit"],
    .search-page #search-review-section .carabout-card__actions .carabout-button:last-child {
        order: -1;
    }

    .search-results-page > .section-header {
        order: 0;
    }

    .search-results-page > .results-mobile-start {
        order: 1;
    }

    .search-results-page > .results-summary-shell {
        display: none;
    }

    .search-results-page > .discovery-section-nav-mobile-shell {
        order: 2;
    }

    .search-results-page > .search-results-flow {
        order: 3;
    }

    .search-results-flow__layout {
        order: 1;
    }

    .search-results-flow__map-launch {
        display: grid;
        order: 2;
    }

    .search-results-flow__refinement {
        order: 3;
    }

    .search-results-flow__map {
        order: 4;
    }

    .search-results-page--map-focus .search-results-flow__map-launch {
        order: 1;
    }

    .search-results-page--map-focus .search-results-flow__layout {
        order: 2;
    }

    .search-results-page--map-focus .search-results-flow__map {
        order: 3;
    }

    .search-results-aside #results-continuity-radar {
        display: none;
    }

    .results-list-shell .discovery-feature-panel__subtitle,
    .results-map-summary-card .discovery-feature-panel__subtitle,
    .results-refinement-card .discovery-feature-panel__subtitle {
        display: none;
    }

    .results-list-shell .discovery-feature-panel__actions,
    .results-map-summary-card .discovery-feature-panel__actions,
    .results-refinement-card .discovery-feature-panel__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .results-refinement-card .results-refinement-strip {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .results-refinement-card .results-refinement-strip::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .results-refinement-card .filter-chip {
        flex: 0 0 auto;
        width: auto;
        white-space: nowrap;
    }

    .search-map-all-flow__launch {
        order: 1;
    }

    .search-map-all-flow__summary {
        order: 2;
    }

    .search-map-all-flow__map {
        order: 3;
    }

    .search-map-all-flow__layout {
        order: 4;
    }

    .search-map-all-flow__launch p,
    .search-map-all-flow__summary .discovery-feature-panel__subtitle,
    .search-map-all-flow__aside {
        display: none;
    }

    .search-map-all-flow__launch .carabout-card__actions,
    .search-map-all-flow__summary .discovery-feature-panel__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-search-map__canvas {
        min-height: min(62vh, 390px);
    }

    .ai-search-hero__organism,
    .ai-search-hero__badges,
    .ai-search-shell__signal-row,
    .ai-search-preview-board .ai-search-preview-card:not(.ai-search-preview-card--primary) {
        display: none;
    }

    .ai-search-shell__textarea-wrap {
        padding: 10px;
        border-radius: 18px;
    }

    .ai-search-textarea {
        min-height: 88px;
        resize: none;
        border-radius: 16px;
    }

    .ai-search-submit {
        min-width: 0;
        min-height: 48px;
        border-radius: 16px;
    }

    .search-choice-page::before,
    .search-choice-page::after,
    .search-choice-hero__organism,
    .search-choice-hero__badges,
    .search-choice-summary-grid,
    .search-choice-card .results-status-strip {
        display: none;
    }

    .search-choice-hero,
    .search-choice-card {
        border-radius: 18px;
        padding: 14px;
    }

    .search-choice-hero {
        min-height: 0;
    }

    .search-choice-hero h1 {
        max-width: none;
        font-size: clamp(1.35rem, 8vw, 1.85rem);
    }

    .search-choice-hero p,
    .search-choice-card p {
        display: none;
    }

    .search-choice-hero__actions,
    .search-choice-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .home-page > .public-discovery-workspace-mobile-shell-wrapper {
        display: none;
    }

    .home-page.home-page--workspace-ready > .public-discovery-workspace-mobile-shell-wrapper {
        display: grid !important;
        order: 2 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        gap: 10px;
    }

    .home-page.home-page--workspace-ready > #home-mobile-launch,
    .home-page.home-page--workspace-ready > .discovery-section-nav-mobile-shell,
    .home-page.home-page--workspace-ready > #home-featured-section,
    .home-page.home-page--workspace-ready > #home-quick-discovery {
        display: none !important;
    }

    .home-page.home-page--workspace-ready > #home-recent-searches,
    .home-page.home-page--workspace-ready > #home-shortlist,
    .home-page.home-page--workspace-ready > #home-shortlist-compare,
    .home-page.home-page--workspace-ready > #home-viewed-services {
        order: 3 !important;
    }

    .home-page.home-page--workspace-ready .home-discovery-workspace-mobile-stage {
        display: block !important;
    }

    .home-discovery-workspace-mobile-stage__section {
        display: grid;
        gap: 10px;
    }

    .home-discovery-workspace-mobile-stage__tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-discovery-workspace-mobile-stage__tiles--continuity {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-discovery-workspace-mobile-stage__actions {
        gap: 10px;
    }

    .home-discovery-workspace-mobile-stage__actions .carabout-button {
        width: 100%;
    }

    .home-workspace-mobile-rail .discovery-carousel__track,
    .home-workspace-mobile-rail .home-nearest-list__track {
        gap: 10px;
    }

    .home-workspace-mobile-rail .discovery-carousel__item,
    .home-workspace-mobile-rail .home-nearest-list__item {
        flex-basis: min(230px, calc(100vw - 96px));
    }

    .home-workspace-mobile-rail .service-card {
        border-radius: 15px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .home-workspace-mobile-rail .service-card__media {
        min-height: 88px;
        border-radius: 15px 15px 0 0;
    }

    .home-workspace-mobile-rail .service-card__body {
        gap: 7px;
        padding: 30px 12px 12px;
    }

    .home-workspace-mobile-rail .service-card__logo-badge {
        left: 12px;
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .home-workspace-mobile-rail .service-card__meta-row {
        font-size: 0.72rem;
    }

    .home-workspace-mobile-rail .service-card__footer .carabout-button--secondary {
        min-height: 32px;
        padding: 5px 10px;
        font-size: 0.78rem;
    }

    .home-workspace-mobile-rail .service-card__mobile-reveal .mobile-density-disclosure__summary {
        padding: 10px;
    }

    .home-workspace-mobile-rail .service-card__mobile-reveal .mobile-density-disclosure__body {
        padding-inline: 10px;
        padding-bottom: 10px;
    }

    .public-discovery-mobile-start__actions {
        grid-template-columns: 1fr;
    }

    .service-operations-mobile-start__actions {
        grid-template-columns: 1fr;
    }

    .service-search-map__canvas {
        min-height: 340px;
    }
}

.auth-mobile-context-shell {
    display: grid;
    gap: 12px;
}

.auth-mobile-context-shell__mobile {
    display: none;
}

.auth-mobile-context-shell__summary {
    align-items: flex-start;
}

.auth-mobile-context-shell__summary-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.auth-mobile-context-shell__eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ca-text-subtle);
}

.auth-mobile-context-shell__body .client-auth-highlight-list,
.auth-mobile-context-shell__body .service-auth-highlight-list {
    gap: 8px;
}

.auth-mobile-context-shell__body .client-auth-highlight,
.auth-mobile-context-shell__body .service-auth-highlight,
.auth-mobile-context-shell__body .client-auth-context-list,
.auth-mobile-context-shell__body .service-auth-context-list {
    padding: 12px 14px;
}

.auth-mobile-context-shell__body .carabout-card__actions {
    display: grid;
    gap: 10px;
}

.order-flow-mobile-card-shell {
    display: grid;
    gap: 12px;
}

.order-flow-mobile-card-shell__mobile {
    display: none;
    gap: 10px;
}

.order-flow-mobile-card-shell__desktop {
    display: grid;
    gap: 12px;
}

.order-flow-mobile-card-shell__summary {
    align-items: flex-start;
}

.order-flow-mobile-card-shell__summary-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.order-flow-mobile-card-shell__eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ca-text-subtle);
}

.order-flow-mobile-card-shell__primary,
.order-flow-mobile-card-shell__body {
    display: grid;
    gap: 10px;
}

.order-flow-mobile-card-shell__body .carabout-card__actions,
.order-flow-mobile-card-shell__body .service-booking-card__summary,
.order-flow-mobile-card-shell__body .order-detail-summary-row,
.order-flow-mobile-card-shell__body .service-contact-list {
    display: grid;
    gap: 8px;
}

.order-flow-mobile-card-shell__body .order-detail-summary-row {
    align-items: flex-start;
}

.order-workspace-mobile-shell {
    display: none;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(7, 18, 27, 0.96), rgba(8, 13, 20, 0.94));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.order-workspace-mobile-shell__copy,
.order-workspace-mobile-shell__actions {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.order-workspace-mobile-shell__eyebrow,
.order-workspace-mobile-shell__meta {
    color: var(--ca-text-subtle);
    font-size: 11px;
}

.order-workspace-mobile-shell__eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.order-workspace-mobile-shell__title {
    margin: 0;
    color: var(--ca-text);
    font-size: 1.05rem;
    line-height: 1.2;
}

.order-workspace-mobile-shell__summary {
    margin: 0;
    color: var(--ca-text-subtle);
    font-size: 0.92rem;
    line-height: 1.5;
}

.order-workspace-mobile-shell__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.order-workspace-mobile-shell__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(0, 164, 243, 0.08);
    color: var(--ca-text);
    font-size: 12px;
    font-weight: 700;
}

.order-workspace-mobile-shell__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-workspace-mobile-shell__actions .carabout-button {
    width: 100%;
    min-width: 0;
    white-space: normal;
}

.order-create-wizard-mobile-shell,
.mobile-calendar-month-disclosure {
    display: none;
}

.client-booking-calendar-shell__month-panel--mobile {
    display: none;
}

.order-create-wizard-mobile-shell__summary-copy,
.mobile-calendar-month-disclosure__summary-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.order-create-wizard-mobile-shell__eyebrow,
.mobile-calendar-month-disclosure__eyebrow {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ca-text-subtle);
}

.order-create-wizard-mobile-shell__body,
.order-create-wizard-mobile-shell__steps {
    display: grid;
    gap: 10px;
}

.mobile-calendar-month-disclosure__summary {
    align-items: flex-start;
}

.mobile-calendar-month-disclosure__body {
    padding: 0;
}

.mobile-density-disclosure[open] .mobile-calendar-month-disclosure__body {
    padding: 12px 0 0;
}

@media (max-width: 720px) {
    .auth-mobile-context-shell__mobile {
        display: block;
    }

    .auth-mobile-context-shell__desktop {
        display: none;
    }

    .client-auth-grid,
    .service-auth-grid {
        gap: 12px;
    }

    .client-auth-page .results-status-strip,
    .service-auth-page .results-status-strip {
        gap: 8px;
    }

    .client-auth-page .results-status-pill,
    .service-auth-page .results-status-pill {
        padding: 8px 10px;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .service-auth-page--registration .results-status-pill {
        font-size: 0.68rem;
    }

    .auth-mobile-context-shell__body .carabout-button {
        width: 100%;
    }

    .order-flow-mobile-card-shell__mobile {
        display: grid;
    }

    .order-flow-mobile-card-shell__desktop {
        display: none;
    }

    .order-flow-mobile-card-shell__primary .carabout-button,
    .order-flow-mobile-card-shell__body .carabout-button {
        width: 100%;
    }

    .order-create-wizard-mobile-shell,
    .mobile-calendar-month-disclosure {
        display: block;
    }

    .client-booking-calendar-shell__month-panel--mobile {
        display: block;
    }

    .order-create-wizard--desktop,
    .service-calendar-month-panel--desktop,
    .client-booking-calendar-shell__month-panel--desktop {
        display: none;
    }

    .order-create-wizard-mobile-shell__steps .order-create-wizard__step {
        width: 100%;
        text-align: left;
    }
}

.mobile-density-disclosure,
.notification-center__item-compact-meta,
.service-card__mobile-reveal,
.order-card__mobile-workflow-summary,
.order-card__mobile-reveal,
.order-card__mobile-actions,
.order-card__actions--mobile-primary,
.service-image-card__mobile-primary,
.service-image-card__mobile-actions,
.service-catalog-row__mobile-primary,
.service-catalog-row__mobile-actions {
    display: none;
}

.mobile-density-disclosure {
    margin: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.mobile-density-disclosure__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    cursor: pointer;
}

.mobile-density-disclosure__summary::-webkit-details-marker {
    display: none;
}

.mobile-density-disclosure__title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ca-text);
}

.mobile-density-disclosure__meta {
    font-size: 0.7rem;
    color: var(--ca-text-subtle);
    text-align: right;
}

.mobile-density-disclosure[open] {
    border-color: rgba(0, 164, 243, 0.16);
    background: rgba(7, 17, 24, 0.9);
}

.mobile-density-disclosure__body {
    display: grid;
    gap: 10px;
    padding: 0 12px 12px;
}

.mobile-density-disclosure[open] .mobile-density-disclosure__body {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.notification-center-mobile-workspace-shell-wrapper {
    display: none;
}

.order-queue-workspace-mobile-shell-wrapper {
    display: none;
}

.public-discovery-workspace-mobile-shell-wrapper {
    display: none;
}

.public-discovery-workspace-mobile-shell__body {
    display: grid;
    gap: 10px;
}

.public-discovery-workspace-mobile-stage > .mobile-density-disclosure__summary {
    align-items: flex-start;
}

.order-queue-workspace-mobile-shell__facts {
    display: grid;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--ca-text-subtle);
}

.order-queue-workspace-mobile-shell__summary-copy,
.order-queue-mobile-stage__summary-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.order-queue-workspace-mobile-shell__eyebrow,
.order-queue-mobile-stage__eyebrow {
    color: var(--ca-primary);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.order-queue-workspace-mobile-shell__body,
.order-queue-mobile-stage__body {
    display: grid;
    gap: 10px;
}

.order-queue-workspace-mobile-shell__actions {
    margin-top: 10px;
}

.order-queue-mobile-stage__body .order-list-grid,
.order-queue-mobile-stage__body .results-pagination,
.order-queue-mobile-stage__body .carabout-card__actions,
.order-queue-mobile-stage__body .service-contact-list {
    width: 100%;
}

.order-queue-mobile-stage__body .carabout-button {
    width: 100%;
}

.notification-center-mobile-workspace-shell__summary-copy,
.notification-center-mobile-stage__summary-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.notification-center-mobile-workspace-shell__eyebrow,
.notification-center-mobile-stage__eyebrow {
    color: var(--ca-primary);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.notification-center-mobile-workspace-shell__body,
.notification-center-mobile-stage__body {
    display: grid;
    gap: 10px;
}

@media (max-width: 720px) {
    .service-card {
        border-radius: 18px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .service-card__media {
        min-height: 118px;
        border-radius: 18px 18px 0 0;
    }

    .service-card__body {
        gap: 8px;
        padding: 38px 14px 14px;
    }

    .service-card__logo-badge {
        left: 14px;
        width: 48px;
        height: 48px;
        border-width: 3px;
        border-radius: 14px;
    }

    .service-card__logo-initials {
        font-size: 16px;
    }

    .service-card__name {
        padding-right: 0;
        font-size: 0.94rem;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .service-card__meta-list {
        gap: 6px;
    }

    .service-card__meta-row {
        gap: 6px;
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .service-card__icon-wrap {
        width: 20px;
        height: 20px;
        border-radius: 6px;
    }

    .service-card__stars {
        gap: 1px;
    }

    .service-card__star {
        width: 10px;
        height: 10px;
    }

    .service-card__rating-text {
        font-size: 0.7rem;
    }

    .service-card__status-pill,
    .service-card__distance-pill {
        top: 10px;
        padding: 4px 8px;
        font-size: 0.62rem;
    }

    .service-card__status-pill {
        left: 10px;
    }

    .service-card__distance-pill {
        right: 10px;
    }

    .service-card__signal-row--desktop,
    .service-card__secondary-actions--desktop,
    .order-card__workflow-badges--desktop,
    .order-card__blocking-list--desktop,
    .order-card__payment-banner--desktop,
    .order-card__actions--desktop,
    .notification-center__chips--desktop,
    .notification-center__item-actions--desktop,
    .notification-center__item-deferred--desktop,
    .notification-center__primary-hint--desktop,
    .service-catalog-row__actions--desktop {
        display: none;
    }

    .service-card__mobile-reveal,
    .order-card__mobile-workflow-summary,
    .order-card__mobile-reveal,
    .order-card__mobile-actions,
    .order-card__actions--mobile-primary,
    .notification-center__item-compact-meta,
    .notification-center__item-disclosure,
    .service-catalog-row__mobile-primary,
    .service-catalog-row__mobile-actions {
        display: grid;
    }

    .service-card__soft-chip {
        min-height: 24px;
        padding: 3px 8px;
        font-size: 0.62rem;
    }

    .service-card__footer {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding-top: 10px;
    }

    .service-card__category-badge {
        min-height: 24px;
        padding: 4px 8px;
        font-size: 0.62rem;
    }

    .service-card__footer .carabout-button--secondary {
        width: auto;
        min-height: 34px;
        padding: 6px 12px;
        border-radius: 9px;
        font-size: 0.82rem;
    }

    .service-card__mobile-reveal .service-card__signal-row,
    .service-card__mobile-reveal .service-card__secondary-actions,
    .order-card__mobile-workflow-summary,
    .order-card__mobile-reveal .order-card__workflow-badges,
    .order-card__mobile-actions .mobile-density-disclosure__body,
    .notification-center__item-disclosure .notification-center__chips,
    .notification-center__item-disclosure .notification-center__item-actions,
    .service-catalog-row__mobile-actions .service-catalog-row__actions {
        gap: 8px;
    }

    .service-card__mobile-reveal .service-card__secondary-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card__mobile-reveal .carabout-button,
    .order-card__actions--mobile-primary .carabout-button,
    .order-card__mobile-actions .carabout-button,
    .service-catalog-row__mobile-primary .carabout-button,
    .service-catalog-row__mobile-actions .carabout-button {
        width: 100%;
    }

    .orders-overview-card,
    .service-operations-summary-card {
        gap: 12px;
    }

    .order-detail-summary-row {
        justify-content: flex-start;
        gap: 8px;
    }

    .order-detail-summary-row span,
    .order-card__meta span {
        display: inline-flex;
        align-items: center;
        min-height: 26px;
        padding: 4px 8px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        color: var(--ca-text-subtle);
        font-size: 0.72rem;
    }

    .orders-overview-card__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .order-card {
        gap: 12px;
    }

    .order-card__header,
    .order-card__meta {
        gap: 8px;
    }

    .order-card__workflow {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .notification-center__list {
        gap: 8px;
    }

    .notification-center__item {
        padding: 12px;
        border-radius: 16px;
    }

    .notification-center__item-top {
        align-items: flex-start;
        gap: 6px;
    }

    .notification-center__item-top strong {
        font-size: 0.92rem;
        line-height: 1.25;
    }

    .notification-center__item-body {
        font-size: 0.78rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .notification-center__item-compact-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
    }

    .notification-center__item-disclosure .notification-center__chips,
    .notification-center__item-disclosure .notification-center__item-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .notification-center__item-disclosure .notification-center__text-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .service-catalog-row {
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
    }

    .service-catalog-row__content {
        gap: 6px;
    }

    .service-catalog-row__title {
        font-size: 0.92rem;
    }

    .service-catalog-row__description,
    .service-catalog-row__includes {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .service-catalog-row__mobile-actions .service-catalog-row__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-calendar-order-card {
        padding: 14px;
        gap: 8px;
    }

    .service-calendar-order-card__title {
        font-size: 0.94rem;
    }

    .service-calendar-order-card__subtitle,
    .service-calendar-order-card__summary,
    .service-calendar-order-card__meta {
        font-size: 0.76rem;
        line-height: 1.4;
    }
}

@media (max-width: 640px) {
    .service-card__mobile-reveal .service-card__secondary-actions,
    .orders-overview-card__actions {
        grid-template-columns: 1fr;
    }

    .order-card__status-stack {
        justify-items: start;
    }
}

@media (max-width: 720px) {
    .service-detail-page {
        gap: 12px;
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .service-detail-page > .section-header,
    .service-detail-page > .discovery-section-nav-mobile-shell,
    .service-detail-page > .service-detail-section-nav.discovery-section-nav--desktop {
        display: none !important;
    }

    .service-detail-page > .discovery-continuity-shell {
        order: 0;
        z-index: 16;
    }

    .service-detail-mobile-summary {
        order: 1;
        display: grid;
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid rgba(0, 164, 243, 0.22);
        background: linear-gradient(145deg, rgba(7, 18, 26, 0.98), rgba(6, 8, 11, 0.98));
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    }

    .service-detail-mobile-summary__identity {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        min-width: 0;
    }

    .service-detail-mobile-summary__logo {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        object-fit: cover;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(8, 17, 24, 0.88);
    }

    .service-detail-mobile-summary__logo--placeholder {
        display: grid;
        place-items: center;
        font-size: 24px;
    }

    .service-detail-mobile-summary__title {
        display: grid;
        gap: 4px;
        min-width: 0;
    }

    .service-detail-mobile-summary__title h1 {
        font-size: clamp(1.22rem, 7vw, 1.7rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .service-detail-mobile-summary__title p {
        color: var(--ca-text-muted);
        font-size: 0.88rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .service-detail-mobile-summary__facts {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .service-detail-mobile-summary__fact {
        display: grid;
        gap: 4px;
        min-width: 0;
        padding: 10px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(11, 15, 19, 0.92);
    }

    .service-detail-mobile-summary__fact span,
    .service-detail-mobile-summary__fact small,
    .service-detail-mobile-mini-cta__meta span {
        color: var(--ca-text-subtle);
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .service-detail-mobile-summary__fact strong,
    .service-detail-mobile-mini-cta__meta strong {
        color: var(--ca-text);
        font-size: 0.9rem;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .service-detail-mobile-summary__status {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        min-width: 0;
    }

    .service-detail-mobile-summary__actions {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }

    .service-detail-mobile-summary__reserve {
        flex: 1 1 auto;
        min-width: 0;
        min-height: 44px;
    }

    .service-detail-mobile-summary__icon-action {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid rgba(0, 164, 243, 0.18);
        background: rgba(10, 24, 34, 0.96);
        color: var(--ca-text);
        font-size: 1rem;
        font-weight: 800;
        cursor: pointer;
    }

    .service-detail-mobile-segments {
        order: 2;
        display: flex;
        gap: 8px;
        position: sticky;
        top: var(--ca-shell-sticky-top);
        z-index: 18;
        overflow-x: auto;
        padding: 8px 2px 10px;
        margin: -2px 0 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.78));
    }

    .service-detail-mobile-segments::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .service-detail-mobile-segment {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 13px;
        border-radius: 999px;
        border: 1px solid rgba(0, 164, 243, 0.18);
        background: rgba(7, 17, 24, 0.92);
        color: var(--ca-text-muted);
        font: inherit;
        font-size: 0.78rem;
        font-weight: 700;
        white-space: nowrap;
        cursor: pointer;
        transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
    }

    .service-detail-mobile-segment:hover,
    .service-detail-mobile-segment:focus-visible {
        border-color: rgba(0, 164, 243, 0.32);
        color: var(--ca-text);
        transform: translateY(-1px);
    }

    .service-detail-mobile-segment--active {
        border-color: rgba(0, 164, 243, 0.46);
        background: linear-gradient(180deg, rgba(0, 164, 243, 0.18), rgba(6, 42, 54, 0.94));
        color: var(--ca-text);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .service-detail-layout {
        order: 3;
        gap: 12px;
    }

    .service-detail-main {
        gap: 12px;
    }

    .service-detail-page .service-hero-card,
    .service-detail-page .service-detail-sidebar {
        display: none;
    }

    .service-detail-booking-anchor {
        order: 1;
    }

    #service-categories {
        order: 2;
    }

    #service-catalog {
        order: 3;
    }

    #service-detail-map {
        order: 4;
    }

    #service-contact {
        order: 5;
    }

    #service-hours {
        order: 6;
    }

    #service-gallery {
        order: 7;
    }

    #reviews-section {
        order: 8;
    }

    #service-location {
        order: 9;
    }

    #service-description {
        order: 10;
    }

    #service-review-panel {
        order: 11;
    }

    .service-detail-page .service-action-bar {
        order: 12;
        padding: 12px;
        border-radius: 16px;
    }

    .service-detail-page .service-action-bar .carabout-card__header {
        display: none;
    }

    .service-detail-page .service-action-bar__grid {
        display: flex;
        grid-template-columns: none;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .service-detail-page .service-action-bar__grid::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .service-detail-page .service-action-tile {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 12px;
        border-radius: 999px;
        gap: 8px;
        white-space: nowrap;
    }

    .service-detail-page .service-action-tile strong {
        font-size: 0.82rem;
        line-height: 1.15;
    }

    .service-detail-page .service-booking-card {
        gap: 12px;
        border-radius: 18px;
    }

    .service-detail-page .service-detail-booking-panel--mobile .discovery-feature-panel__subtitle,
    .service-detail-page .service-detail-sidebar__legal-note,
    .service-detail-page .service-detail-description-card {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .service-detail-page .service-detail-booking-panel--mobile .discovery-feature-panel__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .service-detail-page .service-detail-booking-panel--mobile .discovery-feature-panel__actions .carabout-button:first-child {
        grid-column: 1 / -1;
        min-height: 46px;
    }

    .service-detail-page .service-catalog-row {
        gap: 10px;
        padding: 12px;
    }

    .service-detail-page .service-contact-item {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
        gap: 10px;
        padding: 12px;
    }

    .service-detail-page .service-contact-item__action {
        grid-column: 1 / -1;
        width: 100%;
    }

    .service-detail-page .service-hours-grid,
    .service-detail-page .service-location-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-mobile-mini-cta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 24;
        min-width: 0;
        padding: 9px 10px 9px 12px;
        border-radius: 16px;
        border: 1px solid rgba(0, 164, 243, 0.24);
        background: rgba(5, 11, 16, 0.96);
        backdrop-filter: blur(16px);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
    }

    .service-detail-mobile-mini-cta__meta {
        display: grid;
        gap: 2px;
        min-width: 0;
    }

    .service-detail-mobile-mini-cta__meta strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .service-detail-mobile-mini-cta__button {
        min-height: 40px;
        padding-inline: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .service-detail-mobile-summary {
        padding: 12px;
    }

    .service-detail-mobile-summary__facts {
        gap: 6px;
    }

    .service-detail-mobile-summary__fact {
        padding: 8px;
    }

    .service-detail-mobile-summary__icon-action {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .service-detail-mobile-mini-cta {
        left: 8px;
        right: 8px;
        padding-inline: 10px;
    }
}

.home-mobile-launch {
    gap: 16px;
    border-color: rgba(0, 164, 243, 0.22);
    background: linear-gradient(180deg, rgba(8, 18, 25, 0.98), rgba(8, 13, 18, 0.94));
}

.home-mobile-launch__eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(173, 223, 255, 0.88);
}

.home-mobile-launch__copy h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    letter-spacing: -.03em;
}

.home-mobile-launch__copy p {
    margin: 0;
    color: var(--ca-text-subtle);
    line-height: 1.6;
}

.home-mobile-discovery-head {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-mobile-discovery-head__eyebrow,
.home-resume-chip__eyebrow {
    color: var(--ca-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-mobile-discovery-head h2 {
    margin: 0;
}

.home-resume-chip {
    color: inherit;
    text-decoration: none;
}

.home-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--ca-border-strong);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.9);
    color: var(--ca-text-muted);
    font-size: 12px;
    font-weight: 700;
}

.home-status-pill--live {
    background: rgba(81, 207, 102, 0.12);
    border-color: rgba(81, 207, 102, 0.22);
    color: #8ae39b;
}

.home-status-pill--accent {
    background: rgba(0, 164, 243, 0.14);
    border-color: rgba(0, 164, 243, 0.28);
    color: var(--ca-text);
}

.home-status-pill--warn {
    background: rgba(255, 140, 0, 0.14);
    border-color: rgba(255, 140, 0, 0.24);
    color: #ffbf73;
}

.home-status-pill--loading {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--ca-text);
}

.tag-chip,
.metric-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--ca-border-strong);
    border-radius: var(--ca-radius-pill);
    background: rgba(17, 17, 17, 0.9);
    color: var(--ca-text-muted);
}

.tag-chip--accent {
    background: rgba(0, 164, 243, 0.14);
    border-color: rgba(0, 164, 243, 0.28);
    color: var(--ca-text);
}

.home-page .hero-panel__chips,
.home-page .home-status-strip {
    align-items: center;
}

.home-page .hero-panel__chips .tag-chip,
.home-page .home-status-pill {
    justify-content: center;
    box-sizing: border-box;
    padding-block: 8px;
    line-height: 1.15;
    text-align: center;
}

.home-grid-section,
.domain-grid,
.service-preview-grid,
.search-page__grid,
.results-grid {
    display: grid;
    gap: 16px;
}

.home-grid-section {
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
}

#home-featured-section {
    grid-template-columns: minmax(0, 1fr);
}

#home-featured-section .home-side-column {
    width: 100%;
}

#home-quick-discovery {
    grid-template-columns: minmax(0, 1fr);
}

#home-quick-discovery .home-side-column {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

#home-quick-discovery .home-side-column > * {
    min-height: 100%;
    min-width: 0;
}

#home-quick-discovery .home-highlight-card,
#home-quick-discovery .home-insight-card,
#home-quick-discovery .results-summary-tile {
    min-width: 0;
}

#home-quick-discovery .home-highlight-card strong,
#home-quick-discovery .home-insight-card strong,
#home-quick-discovery .results-summary-tile strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.08;
}

.home-featured-section__status {
    align-items: flex-start;
}

.search-page__grid,
.results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-preview-grid,
.domain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-preview-card--highlight {
    background: linear-gradient(180deg, #00a4f3 0%, #0899da 100%);
    color: white;
}

.service-preview-card--highlight .carabout-card__body,
.service-preview-card--highlight .service-preview-card__meta,
.service-preview-card--highlight .metric-pill {
    color: white;
}

.service-preview-card--highlight .metric-pill {
    background: rgba(14, 47, 66, 0.22);
    border-color: rgba(255, 255, 255, 0.18);
}

.service-preview-card__header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.service-preview-card__logo {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(10, 36, 51, 0.28);
    font-size: 22px;
}

.service-preview-card__title {
    font-size: 17px;
    font-weight: 700;
}

.service-preview-card__meta {
    color: var(--ca-text-muted);
    font-size: 12px;
}

.foundation-list {
    margin: 0;
    padding-left: 18px;
    color: var(--ca-text-muted);
    line-height: 1.7;
}

.skeleton-card__line {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(35, 35, 35, 0.9) 15%, rgba(0, 164, 243, 0.16) 50%, rgba(35, 35, 35, 0.9) 85%);
    background-size: 220% 100%;
    animation: ca-shimmer 1.2s linear infinite;
}

.skeleton-card__line--title {
    width: 62%;
    height: 16px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.empty-state__icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(0, 164, 243, 0.12);
    color: var(--ca-primary);
    font-size: 26px;
}

.error-state .empty-state__icon {
    background: rgba(244, 67, 54, 0.12);
    color: #ff6b6b;
}

.search-input-group {
    position: relative;
}

.search-input-group__clear {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 10px;
    background: rgba(6, 42, 54, 0.9);
    color: white;
    cursor: pointer;
}

.search-city-selector,
.search-filters-grid,
.results-toolbar,
.search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-city-selector__panel,
.search-city-selector__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-chip-rail {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.home-discovery-rail {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.search-chip-rail .filter-chip {
    flex: 0 0 auto;
}

.search-city-selector__empty,
.search-action-card__hint {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.search-city-picker {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vw, 42px);
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(18px);
}

.search-city-picker__dialog {
    width: min(720px, 100%);
    max-height: min(86vh, 760px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(14, 18, 22, 0.98);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.search-city-picker__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.search-city-picker__heading {
    display: grid;
    gap: 8px;
}

.search-city-picker__heading h2 {
    margin: 0;
    color: var(--ca-text);
    font-size: 1.35rem;
    line-height: 1.2;
}

.search-city-picker__heading p {
    margin: 0;
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.search-city-picker__close {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ca-border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--ca-text);
    font-size: 24px;
    cursor: pointer;
}

.search-city-picker__search {
    display: grid;
    gap: 8px;
}

.search-city-picker__count {
    color: var(--ca-text-muted);
    font-size: 0.88rem;
}

.search-city-picker__results {
    min-height: 120px;
    max-height: min(52vh, 460px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding-right: 4px;
}

.search-city-picker__more {
    min-height: 44px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ca-text);
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 640px) {
    .search-city-picker {
        align-items: stretch;
        padding: 12px;
    }

    .search-city-picker__dialog {
        max-height: 92vh;
        border-radius: 20px;
    }

    .search-city-selector__toggle {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-city-selector__meta {
        text-align: left;
    }
}

.results-pagination,
.results-status-strip,
.service-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.results-status-strip {
    flex-direction: row;
    flex-wrap: wrap;
}

.results-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    max-width: 100%;
    border: 1px solid var(--ca-border-strong);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.9);
    color: var(--ca-text-muted);
    font-size: 12px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.results-status-pill--accent {
    background: rgba(0, 164, 243, 0.14);
    border-color: rgba(0, 164, 243, 0.28);
    color: var(--ca-text);
}

.results-status-pill--live {
    background: rgba(81, 207, 102, 0.12);
    border-color: rgba(81, 207, 102, 0.22);
    color: #8ae39b;
}

.results-status-pill--muted {
    color: var(--ca-text-subtle);
}

.results-pagination {
    align-items: center;
    justify-content: center;
}

.results-pagination__info {
    color: var(--ca-text-muted);
    font-weight: 600;
}

.results-summary-grid,
.service-card__meta-grid,
.search-results-layout,
.results-list,
.results-list__items,
.results-viewed-list,
.results-viewed-card__meta {
    display: grid;
    gap: 12px;
}

.results-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#search-results-page {
    --ca-search-results-sidebar-top: calc(var(--ca-shell-header-offset) + 8px);
}

#search-basics-section,
#search-catalog-section,
#search-preferences-section,
#search-review-section,
#search-preview-section,
#search-memory-section,
#search-map-all-summary,
#search-map-all-launch,
#search-map-all-surface,
#search-map-all-marker,
#search-map-all-tools {
    scroll-margin-top: calc(var(--ca-shell-header-offset, 76px) + 12px);
}

.search-results-layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    align-items: start;
}

.search-results-aside {
    position: sticky;
    top: var(--ca-search-results-sidebar-top, var(--ca-shell-sidebar-top));
}

.search-results-flow,
.search-results-flow__map,
.search-results-flow__refinement,
.search-results-flow__layout {
    display: grid;
    gap: 16px;
}

.search-results-flow__map-launch,
.service-detail-booking-panel--mobile {
    display: none;
}

.search-results-aside__card {
    gap: 16px;
}

.results-aside-feature-card,
.results-aside-memory-card,
.service-detail-feature-panel,
.service-detail-memory-card {
    gap: 16px;
    border-color: rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.results-aside-summary-grid,
.service-booking-card__grid {
    grid-template-columns: 1fr;
}

.results-aside-stack {
    display: grid;
    gap: 10px;
}

.results-aside-insight-grid {
    grid-template-columns: 1fr;
}

.results-aside-spotlight {
    display: grid;
    gap: 10px;
    border-color: rgba(255, 193, 7, 0.18);
    background: linear-gradient(180deg, rgba(24, 24, 12, 0.96), rgba(10, 18, 24, 0.94));
}

.results-aside-spotlight strong {
    color: var(--ca-text);
    font-size: 15px;
}

.results-aside-spotlight span {
    color: var(--ca-text-muted);
    line-height: 1.5;
}

.service-detail-memory-card .discovery-memory-section__status,
.service-detail-memory-card .discovery-memory-section__actions,
.results-aside-memory-card .discovery-memory-section__status,
.results-aside-memory-card .discovery-memory-section__actions {
    align-items: flex-start;
}

.service-detail-radar-card {
    border-color: rgba(255, 193, 7, 0.18);
    background: linear-gradient(180deg, rgba(23, 20, 11, 0.96), rgba(9, 16, 22, 0.94));
}

.service-detail-radar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-radar-list {
    display: grid;
    gap: 10px;
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.service-detail-radar-list strong {
    color: var(--ca-text);
}

.service-detail-discovery-cockpit {
    margin-top: 4px;
}

.shortlist-summary-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.results-viewed-card {
    gap: 14px;
    border-color: rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.discovery-feature-panel,
.discovery-feature-panel__content,
.discovery-feature-panel__summary,
.discovery-feature-panel__status,
.discovery-feature-panel__body,
.discovery-feature-panel__actions {
    display: grid;
    gap: 12px;
}

.discovery-feature-panel__subtitle {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.discovery-feature-panel__status,
.discovery-feature-panel__actions {
    align-items: flex-start;
}

.discovery-memory-section,
.discovery-memory-section__content,
.discovery-memory-section__body,
.discovery-memory-link-card__body,
.discovery-memory-link-card__actions {
    display: grid;
    gap: 12px;
}

.discovery-memory-section__subtitle {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.discovery-memory-section__actions,
.discovery-memory-section__status {
    align-items: flex-start;
}

.discovery-memory-section--card {
    gap: 16px;
}

.discovery-memory-link-card__badges {
    align-items: flex-start;
}

.continuity-memory-card {
    display: grid;
    gap: 10px;
}

.continuity-memory-card__meta-strip {
    align-items: flex-start;
}

.results-viewed-card--interactive {
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.results-viewed-card--interactive:hover,
.results-viewed-card--interactive:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 164, 243, 0.3);
    background: linear-gradient(180deg, rgba(12, 22, 30, 0.98), rgba(8, 15, 22, 0.96));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.results-viewed-card--interactive:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 164, 243, 0.12), 0 18px 34px rgba(0, 0, 0, 0.24);
}

.results-viewed-card__meta strong {
    color: var(--ca-text);
    font-size: 14px;
}

.results-viewed-card__meta span {
    color: var(--ca-text-subtle);
    font-size: 12px;
    line-height: 1.5;
}

.results-viewed-card .results-status-strip,
.continuity-memory-card .results-status-strip,
.search-history-card .results-status-strip,
.search-history-section .results-status-strip,
.results-comparison-card .results-status-strip,
.results-journey-card .results-status-strip,
.results-spotlight-card .results-status-strip,
.home-journey-card .results-status-strip,
.home-spotlight-card .results-status-strip,
.search-journey-card .results-status-strip,
.search-preview-spotlight-card .results-status-strip,
.discovery-compare-card .results-status-strip {
    align-items: flex-start;
}

.results-list__item {
    transition: transform 180ms ease, opacity 180ms ease;
}

.results-list__item--map-focused {
    transform: translateY(-2px);
}

.service-card__footer-actions {
    justify-content: flex-end;
}

.service-card__shortlist-button {
    border-color: rgba(0, 164, 243, 0.18);
}

.service-card__map-button {
    border-color: rgba(255, 255, 255, 0.18);
}

.service-card__shortlist-button--active {
    background: rgba(0, 164, 243, 0.14);
    border-color: rgba(0, 164, 243, 0.32);
    color: var(--ca-text);
}

.service-card__map-button--active {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.34);
    color: white;
}

.results-summary-tile {
    min-height: 96px;
    justify-content: center;
    align-items: flex-start;
}

.results-summary-tile strong {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    color: var(--ca-primary);
}

.results-summary-tile span {
    color: var(--ca-text-muted);
}

.search-city-selector__toggle,
.search-city-selector__option {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--ca-border-strong);
    border-radius: 14px;
    background: rgba(11, 11, 11, 0.95);
    color: var(--ca-text);
    cursor: pointer;
}

.search-city-selector__option {
    justify-content: flex-start;
}

.search-city-selector__value,
.search-city-selector__meta {
    min-width: 0;
    overflow-wrap: anywhere;
}

.search-city-selector__value {
    color: var(--ca-text);
    font-weight: 800;
}

.search-city-selector__meta {
    color: var(--ca-text-muted);
    font-size: 0.88rem;
    text-align: right;
}

.search-range-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--ca-text-muted);
}

.search-range-row input {
    width: 100%;
}

.search-action-card {
    position: sticky;
    bottom: 16px;
    z-index: 5;
}

.search-floating-bar,
.search-floating-bar__meta,
.search-floating-bar__actions,
.search-floating-bar__body,
.search-floating-bar__anchor-actions,
.results-refinement-strip {
    display: flex;
    gap: 12px;
}

.search-floating-bar {
    position: sticky;
    bottom: 12px;
    z-index: 9;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(9, 12, 17, 0.92);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.search-floating-bar__body {
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
}

.search-history-grid,
.search-history-card__meta {
    display: grid;
    gap: 12px;
}

.search-history-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.search-history-card {
    gap: 14px;
    min-height: 188px;
    justify-content: space-between;
    border-color: rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.search-history-card--interactive {
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.search-history-card--interactive:hover,
.search-history-card--interactive:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(0, 164, 243, 0.3);
    background: linear-gradient(180deg, rgba(12, 22, 30, 0.98), rgba(8, 15, 22, 0.96));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.search-history-card--interactive:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 164, 243, 0.12), 0 18px 34px rgba(0, 0, 0, 0.28);
}

.search-history-card__meta {
    align-content: start;
}

.search-history-card__title {
    color: var(--ca-text);
    font-size: 15px;
}

.search-history-card__meta span,
.search-floating-bar__share-status {
    color: var(--ca-text-subtle);
    font-size: 12px;
    line-height: 1.5;
}

.search-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.search-floating-bar__meta {
    flex-direction: column;
    min-width: 0;
}

.search-floating-bar__meta strong {
    color: var(--ca-text);
    font-size: 13px;
}

.search-floating-bar__meta span {
    color: var(--ca-text-subtle);
    font-size: 12px;
    line-height: 1.5;
}

.search-floating-bar__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.search-floating-bar__status,
.search-floating-bar__anchor-actions {
    flex-wrap: wrap;
}

.search-floating-bar__anchor-actions {
    justify-content: flex-end;
}

.discovery-section-nav,
.home-section-nav,
.search-section-nav {
    display: flex;
    gap: 12px;
    position: sticky;
    top: var(--ca-shell-sticky-top);
    z-index: 8;
    margin-top: 4px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.16);
    background: rgba(7, 14, 20, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.discovery-section-nav .carabout-button,
.home-section-nav .carabout-button,
.search-section-nav .carabout-button,
.results-section-nav .carabout-button {
    white-space: nowrap;
}

.discovery-cockpit,
.discovery-cockpit__body,
.discovery-cockpit__meta,
.discovery-cockpit__actions,
.discovery-cockpit__status {
    display: flex;
    gap: 12px;
}

.discovery-cockpit {
    position: sticky;
    bottom: 12px;
    z-index: 10;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.24);
    background: rgba(6, 12, 17, 0.94);
    backdrop-filter: blur(18px);
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.discovery-cockpit__body {
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
}

.discovery-cockpit__meta {
    flex-direction: column;
    min-width: 0;
}

.discovery-cockpit__meta strong {
    color: var(--ca-text);
    font-size: 13px;
}

.discovery-cockpit__meta span {
    color: var(--ca-text-subtle);
    font-size: 12px;
    line-height: 1.5;
}

.discovery-cockpit__status {
    flex-wrap: wrap;
}

.discovery-cockpit__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.search-history-card .discovery-memory-link-card__badges {
    align-items: flex-start;
}

.search-history-card .discovery-memory-link-card__actions {
    margin-top: auto;
}

.service-detail-continuity,
.service-detail-continuity__meta,
.service-detail-continuity__actions {
    display: flex;
    gap: 12px;
}

.service-detail-continuity {
    margin-top: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.22);
    background: rgba(6, 12, 17, 0.92);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.service-detail-continuity__meta {
    flex-direction: column;
    min-width: 0;
}

.service-detail-continuity__meta strong {
    color: var(--ca-text);
    font-size: 13px;
}

.service-detail-continuity__meta span {
    color: var(--ca-text-subtle);
    font-size: 12px;
    line-height: 1.5;
}

.service-detail-continuity__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.service-search-map-marker-shell {
    background: transparent;
    border: 0;
    overflow: visible;
}

.service-search-map-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    transform: translateY(-40px);
}

.service-search-map-badge__label {
    max-width: 168px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 164, 243, 0.24);
    background: linear-gradient(180deg, rgba(8, 16, 22, 0.97), rgba(7, 12, 18, 0.94));
    color: var(--ca-text);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.service-search-map-badge__stem {
    width: 2px;
    height: 12px;
    background: linear-gradient(180deg, rgba(0, 164, 243, 0.6), rgba(0, 164, 243, 0));
}

.service-search-map-badge--active .service-search-map-badge__label {
    border-color: rgba(255, 193, 7, 0.36);
    background: linear-gradient(180deg, rgba(33, 24, 6, 0.98), rgba(15, 12, 7, 0.94));
    color: #fff7d6;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.12), 0 14px 28px rgba(0, 0, 0, 0.28);
}

.service-search-map-badge--active .service-search-map-badge__stem {
    background: linear-gradient(180deg, rgba(255, 193, 7, 0.72), rgba(255, 193, 7, 0));
}

.service-search-map-marker {
    position: relative;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
    background: linear-gradient(180deg, #1ab1f6 0%, #008dd5 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.service-search-map-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(0, 164, 243, 0.24);
    transform: translateX(-50%) rotate(45deg);
    filter: blur(2px);
}

.service-search-map-marker__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: 0 0 0 3px rgba(5, 20, 30, 0.14);
}

.service-search-map-marker--active {
    background: linear-gradient(180deg, #ffd760 0%, #ffb300 100%);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2), 0 16px 30px rgba(0, 0, 0, 0.34);
}

.service-search-map-marker--active::after {
    background: rgba(255, 193, 7, 0.26);
}

.gallery-carousel,
.gallery-carousel__header,
.gallery-carousel__nav,
.gallery-carousel__thumbs {
    display: flex;
    gap: 12px;
}

.gallery-carousel {
    flex-direction: column;
}

.gallery-carousel__header {
    align-items: flex-start;
    justify-content: space-between;
}

.gallery-carousel__counter {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 164, 243, 0.22);
    background: rgba(0, 164, 243, 0.12);
    color: var(--ca-text);
    font-size: 12px;
    font-weight: 700;
}

.gallery-carousel__stage-wrap {
    position: relative;
}

.gallery-carousel__stage {
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
    min-height: min(56vw, 420px);
}

.gallery-carousel__stage img,
.gallery-carousel__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-carousel__nav {
    position: absolute;
    right: 14px;
    bottom: 14px;
}

.gallery-carousel__nav-button {
    min-width: 46px;
}

.gallery-carousel__thumbs {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.gallery-carousel__thumb {
    flex: 0 0 88px;
    height: 68px;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--ca-border-strong);
    background: rgba(11, 11, 11, 0.95);
    cursor: pointer;
}

.gallery-carousel__thumb--active {
    border-color: rgba(0, 164, 243, 0.42);
    box-shadow: 0 0 0 2px rgba(0, 164, 243, 0.16);
}

.map-panel,
.map-panel__preview,
.map-panel__actions,
.map-panel__status {
    display: flex;
    gap: 14px;
}

.map-panel {
    position: relative;
    overflow: hidden;
    flex-direction: column;
    scroll-margin-top: 108px;
}

.map-panel::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% 35%;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 164, 243, 0.16), transparent 70%);
    pointer-events: none;
}

.map-panel__preview {
    align-items: center;
}

.map-panel__marker {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(0, 164, 243, 0.14);
    color: var(--ca-primary);
    font-size: 24px;
    border: 1px solid rgba(0, 164, 243, 0.22);
    flex: 0 0 auto;
}

.map-panel__chips {
    position: relative;
    z-index: 1;
}

.map-panel__status,
.map-panel__actions {
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.map-panel__surface {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.map-panel__canvas {
    width: 100%;
    min-height: 300px;
}

.map-panel__coordinates {
    font-family: "Segoe UI", Consolas, monospace;
    letter-spacing: 0.02em;
}

.map-panel__actions {
    justify-content: flex-start;
}

.service-search-map,
.service-search-map__header,
.service-search-map__status,
.service-search-map__meta,
.service-search-map__actions {
    display: flex;
    gap: 14px;
}

.service-search-map {
    margin-top: 4px;
    scroll-margin-top: 108px;
}

#home-discovery-radar,
#home-journey-studio,
#home-spotlight-card,
#home-shortlist-compare,
#search-journey-studio,
#search-form-shell,
#search-live-preview,
#search-preview-spotlight,
#search-shortlist-compare,
#search-viewed-services,
#results-journey-studio,
#results-spotlight-card,
#results-continuity-radar,
#results-insights-card,
#results-radar-spotlight,
#results-comparison-studio,
#results-shortlist-compare,
#results-list-section {
    scroll-margin-top: 124px;
}

#search-map-launch,
.results-map-summary-card {
    scroll-margin-top: 108px;
}

.results-map-summary-card {
    gap: 16px;
}

.results-summary-shell,
.results-list-shell,
.results-refinement-card,
.results-empty-recovery-card {
    gap: 16px;
    border-color: rgba(0, 164, 243, 0.22);
    background: linear-gradient(180deg, rgba(9, 18, 25, 0.98), rgba(8, 13, 18, 0.94));
}

.results-summary-shell__grid,
.results-list-shell__grid,
.results-refinement-grid,
.results-empty-recovery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.results-list-active-card,
.results-list-active-card__header {
    display: grid;
    gap: 10px;
}

.results-list-active-card {
    border-color: rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(8, 17, 24, 0.98), rgba(6, 13, 20, 0.94));
}

.results-list-active-card__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
}

.results-list-active-card__header strong {
    color: var(--ca-text);
    font-size: 15px;
}

.results-list-active-card__header span,
.results-list-active-card__summary {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.results-list-active-card__meta {
    align-items: flex-start;
}

.search-map-launch-card,
.home-discovery-radar-card,
.home-journey-card,
.home-spotlight-card,
.home-shortlist-compare-card,
.search-journey-card,
.search-live-preview-card,
.search-preview-radar-card,
.search-preview-spotlight-card,
.search-shortlist-compare-card,
.results-map-handoff-card,
.results-journey-card,
.results-spotlight-card,
.results-map-follow-card,
.results-comparison-card {
    gap: 16px;
    border-color: rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.search-map-launch-grid,
.search-live-preview-grid,
.home-journey-grid,
.home-spotlight-grid,
.search-journey-grid,
.search-preview-spotlight-grid,
.results-map-handoff-grid,
.results-journey-grid,
.results-spotlight-grid,
.results-map-focus-grid,
.results-comparison-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.search-map-launch-tile {
    min-height: 110px;
}

.search-map-launch-tile strong,
.home-journey-card .results-summary-tile strong,
.home-spotlight-card .results-summary-tile strong,
.search-journey-card .results-summary-tile strong,
.search-preview-spotlight-card .results-summary-tile strong,
.results-map-handoff-card .results-summary-tile strong,
.results-journey-card .results-summary-tile strong,
.results-spotlight-card .results-summary-tile strong,
.results-map-follow-card .results-summary-tile strong,
.results-comparison-card .results-summary-tile strong {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.results-map-handoff-card {
    border-color: rgba(81, 207, 102, 0.18);
    background: linear-gradient(180deg, rgba(11, 26, 18, 0.98), rgba(8, 13, 18, 0.94));
}

.search-preview-spotlight-card {
    border-color: rgba(255, 193, 7, 0.18);
    background: linear-gradient(180deg, rgba(22, 25, 13, 0.96), rgba(10, 18, 24, 0.94));
}

.home-spotlight-card {
    border-color: rgba(255, 193, 7, 0.18);
    background: linear-gradient(180deg, rgba(24, 24, 12, 0.96), rgba(10, 18, 24, 0.94));
}

.home-discovery-radar-card {
    border-color: rgba(0, 164, 243, 0.22);
}

.home-nearest-companion-card {
    border-color: rgba(0, 164, 243, 0.22);
    background: linear-gradient(180deg, rgba(8, 18, 25, 0.98), rgba(8, 13, 18, 0.94));
}

.home-nearest-companion-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-nearest-list {
    display: grid;
    gap: 12px;
}

.home-nearest-list__viewport {
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.home-nearest-list__viewport:focus-visible {
    outline: 2px solid rgba(0, 164, 243, 0.8);
    outline-offset: 4px;
    border-radius: 20px;
}

.home-nearest-list__track {
    display: flex;
    gap: 12px;
    min-width: max-content;
}

.home-nearest-list__item {
    flex: 0 0 min(340px, calc(100vw - 72px));
}

.home-nearest-list__item .skeleton-card,
.home-nearest-list__item .service-card {
    height: 100%;
}

.home-nearest-list--loading .home-nearest-list__track,
.home-nearest-list--loading {
    display: flex;
    gap: 12px;
}

.search-live-preview-card {
    border-color: rgba(0, 164, 243, 0.22);
    background: linear-gradient(180deg, rgba(8, 18, 25, 0.98), rgba(8, 13, 18, 0.94));
}

.search-form,
.search-flow-section,
.search-map-all-flow,
.search-map-all-flow__summary,
.search-map-all-flow__map,
.search-map-all-flow__layout {
    display: grid;
    gap: 16px;
}

.search-flow-section__intro {
    display: none;
}

.search-flow-section__copy {
    display: grid;
    gap: 4px;
}

.search-flow-section__eyebrow,
.search-map-all-flow__eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(173, 223, 255, 0.88);
}

.search-flow-section__summary {
    color: var(--ca-text-subtle);
    line-height: 1.5;
}

.search-flow-section__toggle {
    display: none;
}

.search-flow-section__body {
    display: grid;
    gap: 16px;
}

.search-map-all-flow__launch,
.search-map-all-flow__launch-copy {
    display: grid;
    gap: 12px;
}

.search-map-all-flow__launch {
    border-color: rgba(0, 164, 243, 0.2);
    background: linear-gradient(180deg, rgba(9, 18, 25, 0.98), rgba(7, 13, 19, 0.94));
}

.search-map-all-flow__launch h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.search-map-all-flow__launch p {
    margin: 0;
    color: var(--ca-text-subtle);
}

.search-map-all-location {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    border-radius: 14px;
    background: rgba(8, 18, 26, 0.72);
}

.search-map-all-location__copy {
    display: grid;
    gap: 4px;
}

.search-map-all-location__copy strong {
    color: var(--ca-text);
    font-size: 0.96rem;
}

.search-map-all-location__copy span,
.search-map-all-location__status {
    color: var(--ca-text-subtle);
    line-height: 1.45;
}

.search-map-all-location__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.search-map-all-location__form .carabout-button {
    white-space: nowrap;
}

.results-spotlight-card {
    border-color: rgba(255, 193, 7, 0.18);
    background: linear-gradient(180deg, rgba(24, 24, 12, 0.96), rgba(10, 18, 24, 0.94));
}

.results-map-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-search-map__header,
.service-search-map__meta {
    align-items: flex-start;
    justify-content: space-between;
}

.service-search-map__status,
.service-search-map__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.service-search-map__surface {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.service-search-map__canvas {
    min-height: 420px;
    width: 100%;
}

.service-search-map__meta {
    flex-direction: column;
}

.results-header__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.service-search-map-popup {
    display: grid;
    gap: 6px;
}

.service-search-map-popup strong {
    color: #081118;
    font-size: 14px;
}

.service-search-map-popup__meta {
    color: #29414f;
    font-size: 12px;
    line-height: 1.5;
}

.service-search-map-popup__link {
    color: #0078d4;
    font-weight: 700;
}

.leaflet-container {
    background: #071118;
    font: inherit;
}

.leaflet-control-zoom a,
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #ffffff;
    color: #081118;
}

.leaflet-control-attribution {
    background: rgba(7, 17, 24, 0.78) !important;
    color: rgba(255, 255, 255, 0.72);
}

.leaflet-control-attribution a {
    color: #8ccfff;
}

.results-refinement-strip {
    flex-wrap: wrap;
    margin-top: 8px;
    align-items: center;
}

.results-refinement-card .results-refinement-strip {
    margin-top: 0;
}

.discovery-compare-board,
.discovery-compare-card__header,
.discovery-compare-card__grid {
    display: grid;
    gap: 12px;
}

.discovery-compare-board {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.discovery-compare-card {
    gap: 14px;
    border-color: rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(9, 17, 24, 0.98), rgba(7, 13, 18, 0.94));
}

.discovery-compare-card__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
}

.discovery-compare-card__title {
    color: var(--ca-text);
    font-size: 16px;
}

.discovery-compare-card__location,
.discovery-compare-card__categories {
    color: var(--ca-text-subtle);
    line-height: 1.6;
}

.discovery-compare-card__score {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 164, 243, 0.24);
    background: rgba(0, 164, 243, 0.12);
    color: var(--ca-text);
    font-weight: 800;
}

.discovery-compare-card__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.discovery-compare-card__metric {
    min-height: 88px;
    justify-content: center;
    align-items: flex-start;
}

.discovery-compare-card__metric strong {
    font-size: 1.05rem;
    color: var(--ca-primary);
}

.discovery-compare-card__metric span {
    color: var(--ca-text-muted);
}

.discovery-compare-card__badges {
    min-height: 34px;
}

.discovery-compare-card__continuity {
    align-items: flex-start;
}

.order-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.order-flow-section,
.order-create-step,
.order-create-wizard,
.order-create-wizard__meta,
.order-create-wizard__progress,
.chat-workspace,
.chat-composer-card__header {
    display: grid;
    gap: 14px;
}

.order-create-wizard {
    display: grid;
}

.order-create-wizard__progress-track {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.order-create-wizard__progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(0, 164, 243, 0.95), rgba(67, 210, 255, 0.88));
}

.order-create-wizard__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.order-create-wizard__step {
    min-height: 96px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 17, 22, 0.92);
    color: var(--ca-text);
    display: grid;
    gap: 6px;
    text-align: left;
}

.order-create-wizard__step:disabled {
    opacity: 0.45;
}

.order-create-wizard__step--active {
    border-color: rgba(0, 164, 243, 0.28);
    background: rgba(0, 164, 243, 0.14);
}

.order-create-wizard__step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 164, 243, 0.24);
    background: rgba(0, 164, 243, 0.1);
    font-weight: 800;
}

.order-create-wizard__step small,
.order-create-wizard__meta span,
.order-card__blocking-list,
.order-card__payment-banner,
.chat-composer-card__header .carabout-card__eyebrow {
    color: var(--ca-text-subtle);
}

.order-create-step__actions,
.orders-overview-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.order-create-step__actions {
    align-items: stretch;
}

.order-create-mobile-review {
    display: grid;
}

.order-create-step--inactive {
    display: none;
}

.service-detail-layout.order-create-layout {
    grid-template-columns: minmax(0, 1fr);
}

.service-detail-layout.order-create-layout .order-create-main {
    width: min(100%, 980px);
    margin-inline: auto;
}

.order-create-sidebar {
    display: none;
}

.order-form-grid__full {
    grid-column: 1 / -1;
}

.service-order-guided-bar,
.service-order-guided-bar__meta,
.service-order-guided-bar__progress,
.service-order-guided-bar__steps,
.service-order-guided-panel,
.service-order-guided-panel__facts,
.service-order-guided-panel__actions,
.service-order-checklist-card,
.service-order-checklist-card__items,
.service-order-action-modal__warning,
.service-order-action-modal__preview,
.service-order-status-calendar-shell,
.service-order-status-day-panel {
    display: grid;
    gap: 14px;
}

.service-order-guided-bar {
    border: 1px solid rgba(0, 164, 243, 0.14);
    background: linear-gradient(180deg, rgba(9, 17, 26, 0.96), rgba(7, 12, 18, 0.96));
}

.service-order-guided-panel__warning-chip,
.service-order-guided-bar__warning-chip,
.order-card__workflow-warning-chip {
    color: #ffe3a6;
}

.service-order-guided-bar__status-row,
.service-order-guided-panel__meta,
.service-order-guided-panel__actions,
.order-card__workflow-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.service-order-guided-bar__steps {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.service-order-guided-step {
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.service-order-guided-step:hover {
    transform: translateY(-1px);
}

.service-order-guided-step__number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.service-order-guided-step__content {
    display: grid;
    gap: 4px;
}

.service-order-guided-step__state {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ca-text-subtle);
}

.service-order-guided-step--current {
    border-color: rgba(0, 164, 243, 0.42);
    background: linear-gradient(180deg, rgba(0, 164, 243, 0.18), rgba(9, 18, 26, 0.96));
}

.service-order-guided-step--current .service-order-guided-step__number,
.service-order-guided-step--active-step .service-order-guided-step__number {
    border-color: rgba(96, 214, 255, 0.6);
    background: rgba(0, 164, 243, 0.16);
}

.service-order-guided-step--completed {
    border-color: rgba(118, 210, 169, 0.3);
    background: linear-gradient(180deg, rgba(118, 210, 169, 0.12), rgba(8, 18, 16, 0.96));
}

.service-order-guided-step--waiting {
    border-color: rgba(255, 184, 77, 0.28);
    background: linear-gradient(180deg, rgba(255, 184, 77, 0.12), rgba(21, 15, 8, 0.96));
}

.service-order-guided-step--blocked {
    border-color: rgba(255, 107, 107, 0.24);
    background: linear-gradient(180deg, rgba(255, 107, 107, 0.1), rgba(22, 9, 10, 0.96));
}

.service-order-guided-step--terminal {
    border-color: rgba(255, 132, 132, 0.34);
    background: linear-gradient(180deg, rgba(255, 132, 132, 0.14), rgba(24, 8, 9, 0.96));
}

.service-order-guided-step--selected {
    box-shadow: 0 0 0 1px rgba(96, 214, 255, 0.34), 0 18px 32px rgba(0, 0, 0, 0.24);
}

.service-order-guided-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(10, 16, 24, 0.98), rgba(7, 12, 18, 0.98));
}

.service-order-guided-panel__summary,
.service-order-guided-panel__support-text,
.service-orders-page__workflow-intro {
    margin: 0;
    color: var(--ca-text-subtle);
}

.service-order-guided-panel__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-order-guided-panel__facts > div {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.service-order-guided-panel__facts strong {
    font-size: 0.88rem;
}

.service-order-guided-panel__notice {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.service-order-guided-panel__notice strong,
.service-order-action-modal__warning strong,
.service-order-action-modal__preview strong {
    font-size: 0.95rem;
}

.service-order-guided-panel__notice p,
.service-order-action-modal__warning p,
.service-order-action-modal__preview p {
    margin: 0;
    color: var(--ca-text-subtle);
}

.service-order-guided-panel__notice--success {
    border-color: rgba(118, 210, 169, 0.28);
    background: linear-gradient(135deg, rgba(118, 210, 169, 0.12), rgba(8, 18, 16, 0.94));
}

.service-order-guided-panel__notice--warning,
.service-order-action-modal__warning {
    border-color: rgba(255, 184, 77, 0.3);
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.14), rgba(24, 17, 8, 0.94));
}

.service-order-guided-panel__notice--terminal {
    border-color: rgba(255, 132, 132, 0.32);
    background: linear-gradient(135deg, rgba(255, 132, 132, 0.16), rgba(23, 9, 10, 0.94));
}

.service-order-guided-panel__utility-actions {
    justify-content: flex-start;
}

.service-order-checklist-card__item {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.service-order-action-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    padding: 24px;
    background: rgba(3, 7, 12, 0.72);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
}

.service-order-action-modal {
    width: min(100%, 640px);
}

.service-order-action-modal__card,
.service-order-action-modal__actions {
    display: grid;
    gap: 14px;
}

.service-order-action-modal__preview {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 164, 243, 0.2);
    background: rgba(0, 164, 243, 0.08);
}

.service-order-action-modal__acknowledgement {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.service-order-status-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
}

.order-card__workflow-badges {
    margin-top: 10px;
}

.order-card__workflow-warning-chip {
    border-color: rgba(255, 184, 77, 0.3);
    background: rgba(255, 184, 77, 0.12);
}

.order-card__workflow-terminal-chip,
.service-order-guided-bar__terminal-chip {
    border-color: rgba(255, 132, 132, 0.32);
    background: rgba(255, 132, 132, 0.12);
    color: #ffcdcd;
}

.carabout-textarea {
    min-height: 140px;
    padding-top: 14px;
    resize: vertical;
}

.availability-grid,
.time-slot-grid,
.order-list-grid {
    display: grid;
    gap: 12px;
}

.availability-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.time-slot-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.order-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.availability-chip,
.time-slot-chip {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--ca-border-strong);
    background: rgba(17, 17, 17, 0.95);
    color: var(--ca-text);
    text-align: left;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.availability-chip small,
.time-slot-chip small,
.order-card__meta span {
    color: var(--ca-text-subtle);
}

.availability-chip--selected,
.time-slot-chip--selected {
    background: linear-gradient(180deg, rgba(7, 52, 70, 0.98), rgba(4, 28, 40, 0.98));
    border-color: rgba(96, 214, 255, 0.92);
    box-shadow: 0 0 0 2px rgba(96, 214, 255, 0.18), 0 16px 28px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(163, 236, 255, 0.14);
    transform: translateY(-2px);
}

.time-slot-chip--selected small {
    color: rgba(232, 248, 255, 0.84);
}

.availability-chip--open {
    border-color: rgba(76, 175, 80, 0.2);
}

.availability-chip--busy {
    border-color: rgba(255, 193, 7, 0.2);
}

.availability-chip--full,
.availability-chip--closed,
.time-slot-chip--disabled {
    opacity: 0.5;
}

.time-slot-chip--disabled {
    cursor: not-allowed;
}

.service-calendar-rework-page .service-calendar-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.service-calendar-rework-page .service-calendar-month-panel,
.service-calendar-rework-page .service-calendar-day-panel {
    min-width: 0;
}

.order-create-page .client-booking-calendar-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.service-calendar-rework-page .service-calendar-day-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 22px;
}

.service-calendar-rework-page .service-calendar-weekdays,
.service-calendar-rework-page .service-calendar-grid {
    gap: 10px;
}

.service-calendar-rework-page .service-calendar-cell {
    min-height: 188px;
    padding: 12px;
}

.service-calendar-rework-page .service-calendar-cell__top {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
}

.service-calendar-rework-page .service-calendar-cell__hours,
.service-calendar-rework-page .service-calendar-cell__meta,
.service-calendar-rework-page .service-calendar-cell__footer {
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.35;
}

.service-calendar-rework-page .service-calendar-cell__note {
    white-space: normal;
    border-radius: 14px;
}

.order-create-page .client-booking-calendar-day-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.order-create-page .client-booking-calendar-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px 18px;
}

.order-create-page .client-booking-calendar-toolbar__summary {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.order-create-page .client-booking-calendar-toolbar__headline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    align-items: center;
}

.order-create-page .client-booking-calendar-toolbar__actions {
    justify-content: flex-start;
    gap: 10px;
}

.order-create-page .service-calendar-weekdays,
.order-create-page .service-calendar-grid {
    gap: 10px;
}

.order-create-page .service-calendar-cell {
    min-height: 156px;
    padding: 12px;
}

.order-create-page .service-calendar-cell__top {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
}

.order-create-page .service-calendar-cell__hours,
.order-create-page .service-calendar-cell__meta,
.order-create-page .service-calendar-cell__footer {
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.35;
}

.order-create-page .service-calendar-cell__note {
    white-space: normal;
    border-radius: 14px;
}

.service-calendar-cell__today-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 164, 243, 0.16);
    border: 1px solid rgba(0, 164, 243, 0.28);
    color: var(--ca-text);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.service-create-order-page .service-create-order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.92fr);
    gap: 22px;
    align-items: start;
}

.service-create-order-page .service-create-order-main,
.service-create-order-page .service-create-order-sidebar {
    display: grid;
    gap: 22px;
}

.service-create-order-page .service-create-order-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-create-order-page .service-create-order-form-grid--compact {
    grid-template-columns: minmax(0, 1fr);
}

.service-create-order-page .service-create-order-field {
    display: grid;
    gap: 8px;
}

.service-create-order-page .service-create-order-field > span {
    color: var(--ca-text-subtle);
    font-size: 0.92rem;
    font-weight: 600;
}

.service-create-order-page .service-create-order-field--full {
    grid-column: 1 / -1;
}

.service-create-order-page .service-create-order-verified-client,
.service-create-order-page .service-create-order-review-list,
.service-create-order-page .service-create-order-day-detail {
    display: grid;
    gap: 10px;
}

.service-create-order-page .service-create-order-verified-client {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.32);
    background: rgba(0, 164, 243, 0.08);
}

.service-create-order-page .service-create-order-slot-cloud {
    margin-top: 18px;
}

.service-create-order-page .service-create-order-readiness-strip {
    margin-bottom: 10px;
}

.service-create-order-page .service-create-order-issue-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.service-calendar-toolbar__eyebrow {
    color: var(--ca-text-subtle);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.service-create-order-page .service-create-order-slot {
    min-width: 8.4rem;
    display: inline-grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid var(--ca-border-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ca-text);
    text-align: left;
}

.service-create-order-page .service-create-order-slot span {
    color: var(--ca-text-subtle);
    font-size: 0.82rem;
}

.service-create-order-page .service-create-order-slot--selected {
    border-color: rgba(0, 164, 243, 0.6);
    background: rgba(0, 164, 243, 0.16);
}

.service-create-order-page .service-create-order-slot--disabled {
    opacity: 0.56;
}

.service-create-order-page .service-create-order-sidebar__actions {
    flex-wrap: wrap;
}

.service-calendar-day-summary,
.service-calendar-order-card__header,
.service-calendar-order-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.service-calendar-toolbar__group,
.service-calendar-day-summary,
.service-calendar-order-card__header,
.service-calendar-order-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.service-calendar-toolbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px 16px;
    align-items: end;
    margin-bottom: 18px;
}

.service-calendar-toolbar__group {
    min-width: 0;
}

.service-calendar-toolbar__group--start {
    justify-content: flex-start;
}

.service-calendar-toolbar__group--jump {
    justify-content: center;
}

.service-calendar-toolbar__month-input {
    flex: 1 1 188px;
    min-width: 168px;
    width: min(100%, 220px);
}

.service-calendar-toolbar__group--end {
    justify-content: flex-end;
}

.service-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

.service-calendar-legend__item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--ca-text-subtle);
    font-size: 0.92rem;
}

.service-calendar-legend__swatch {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid var(--ca-border-strong);
    background: rgba(255, 255, 255, 0.06);
}

.service-calendar-legend__swatch--open {
    background: rgba(76, 175, 80, 0.22);
    border-color: rgba(76, 175, 80, 0.36);
}

.service-calendar-legend__swatch--active {
    background: rgba(0, 164, 243, 0.18);
    border-color: rgba(0, 164, 243, 0.32);
}

.service-calendar-legend__swatch--busy {
    background: rgba(255, 193, 7, 0.22);
    border-color: rgba(255, 193, 7, 0.32);
}

.service-calendar-legend__swatch--full {
    background: rgba(255, 93, 93, 0.2);
    border-color: rgba(255, 93, 93, 0.36);
}

.service-calendar-legend__swatch--closed {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-calendar-weekdays,
.service-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.service-calendar-weekdays {
    margin-bottom: 12px;
}

.service-calendar-weekdays span {
    padding: 0 6px;
    color: var(--ca-text-subtle);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-calendar-cell {
    display: grid;
    gap: 8px;
    min-height: 138px;
    padding: 14px;
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--ca-border-strong);
    background: linear-gradient(180deg, rgba(13, 18, 24, 0.96), rgba(9, 14, 18, 0.96));
    color: var(--ca-text);
    text-align: left;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-calendar-cell:hover {
    transform: translateY(-1px);
}

.service-calendar-cell__top,
.service-calendar-cell__hours,
.service-calendar-cell__meta,
.service-calendar-cell__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.service-calendar-cell__top strong {
    font-size: 1.05rem;
}

.service-calendar-cell__hours {
    color: var(--ca-text-subtle);
    font-size: 0.9rem;
}

.service-calendar-cell__meta,
.service-calendar-cell__footer {
    color: var(--ca-text-muted);
    font-size: 0.82rem;
}

.service-calendar-cell__note {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 164, 243, 0.12);
    color: var(--ca-text);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-calendar-cell--selected {
    border-color: rgba(0, 164, 243, 0.42);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
}

.service-calendar-cell--today {
    box-shadow: inset 0 0 0 1px rgba(0, 164, 243, 0.18);
}

.service-calendar-cell--open {
    border-color: rgba(76, 175, 80, 0.18);
}

.service-calendar-cell--active {
    border-color: rgba(0, 164, 243, 0.24);
    background: linear-gradient(180deg, rgba(8, 28, 42, 0.98), rgba(10, 18, 26, 0.96));
}

.service-calendar-cell--busy {
    border-color: rgba(255, 193, 7, 0.3);
    background: linear-gradient(180deg, rgba(44, 30, 8, 0.96), rgba(17, 15, 12, 0.96));
}

.service-calendar-cell--full {
    border-color: rgba(255, 93, 93, 0.3);
    background: linear-gradient(180deg, rgba(46, 15, 15, 0.96), rgba(19, 12, 12, 0.96));
}

.service-calendar-cell--closed {
    opacity: 0.82;
}

.service-calendar-cell--outside {
    opacity: 0.56;
}

.service-calendar-cell--selected,
.service-calendar-cell--selected.service-calendar-cell--open,
.service-calendar-cell--selected.service-calendar-cell--active,
.service-calendar-cell--selected.service-calendar-cell--busy,
.service-calendar-cell--selected.service-calendar-cell--full,
.service-calendar-cell--selected.service-calendar-cell--closed {
    border-color: rgba(96, 214, 255, 0.96);
    box-shadow: 0 0 0 2px rgba(0, 164, 243, 0.58), 0 18px 34px rgba(0, 0, 0, 0.34), inset 0 0 0 999px rgba(0, 164, 243, 0.12);
    transform: translateY(-2px);
}

.service-calendar-cell--selected:hover {
    transform: translateY(-2px);
}

.service-calendar-cell--selected .service-calendar-cell__top strong,
.service-calendar-cell--selected .service-calendar-cell__hours,
.service-calendar-cell--selected .service-calendar-cell__meta,
.service-calendar-cell--selected .service-calendar-cell__footer {
    color: var(--ca-text);
}

.service-calendar-day-summary {
    margin-bottom: 14px;
}

.service-calendar-note-panel {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 164, 243, 0.16);
    background: linear-gradient(180deg, rgba(8, 24, 36, 0.92), rgba(10, 17, 22, 0.92));
    color: var(--ca-text-subtle);
}

.service-calendar-quick-day-card {
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 17, 17, 0.82);
}

.service-calendar-quick-day-card h3 {
    margin: 0;
    font-size: 1rem;
}

.service-calendar-note-panel strong {
    color: var(--ca-text);
}

.service-calendar-window-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.service-calendar-window-strip--blocked .tag-chip {
    color: #ffd6d6;
    border-color: rgba(255, 93, 93, 0.26);
    background: rgba(255, 93, 93, 0.12);
}

.service-calendar-order-list {
    display: grid;
    gap: 14px;
}

.service-calendar-order-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--ca-border-strong);
    background: rgba(17, 17, 17, 0.92);
}

.service-calendar-order-card__status {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.service-calendar-order-card__title {
    margin: 4px 0 0;
    font-size: 1rem;
}

.service-calendar-order-card__subtitle,
.service-calendar-order-card__summary,
.service-calendar-order-card__meta {
    margin: 0;
    color: var(--ca-text-subtle);
}

.service-calendar-order-card__meta {
    justify-content: flex-start;
}

.service-calendar-order-card__summary {
    line-height: 1.55;
}

.service-calendar-management-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 22px;
    align-items: start;
}

.service-calendar-editor-card {
    display: grid;
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--ca-border-strong);
    background: linear-gradient(180deg, rgba(13, 18, 24, 0.98), rgba(9, 14, 18, 0.96));
}

.service-calendar-editor-card__header,
.service-calendar-rule-card__header,
.service-calendar-slot-override-row,
.service-calendar-window-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.service-calendar-editor-card__header h3,
.service-calendar-rule-card__header strong {
    margin: 0;
}

.service-calendar-inline-hint,
.service-calendar-editor-card .home-inline-status {
    margin: 0;
    color: var(--ca-text-subtle);
    line-height: 1.55;
}

.service-calendar-rule-list,
.service-calendar-window-list,
.service-calendar-slot-override-list {
    display: grid;
    gap: 14px;
}

.service-calendar-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.service-calendar-help-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.16);
    background: linear-gradient(180deg, rgba(10, 22, 30, 0.94), rgba(9, 15, 22, 0.92));
}

.service-calendar-help-card strong {
    color: var(--ca-text);
}

.service-calendar-help-card p {
    margin: 0;
    color: var(--ca-text-subtle);
    line-height: 1.6;
}

.service-calendar-field {
    display: grid;
    gap: 8px;
    align-content: start;
}

.service-calendar-field > span {
    color: var(--ca-text);
    font-size: 0.92rem;
    font-weight: 700;
}

.service-calendar-field small {
    color: var(--ca-text-subtle);
    line-height: 1.5;
}

.service-calendar-field--hint {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px dashed rgba(96, 214, 255, 0.24);
    background: rgba(0, 164, 243, 0.06);
}

.service-calendar-field--compact {
    flex: 1 1 220px;
}

.service-calendar-window-row--guided,
.service-calendar-slot-override-row--guided {
    align-items: flex-end;
}

.service-calendar-checkbox-note {
    align-self: flex-end;
    min-width: 130px;
    margin-bottom: 6px;
}

.service-calendar-rule-card {
    display: grid;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 17, 17, 0.82);
}

.service-calendar-window-row,
.service-calendar-slot-override-row {
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.service-calendar-window-row .carabout-input,
.service-calendar-slot-override-row .carabout-input {
    flex: 1 1 150px;
}

.service-calendar-slot-override-row .working-hours-editor__closed {
    min-width: 120px;
}

.time-slot-chip--danger {
    border-color: rgba(255, 93, 93, 0.32);
    background: linear-gradient(180deg, rgba(46, 15, 15, 0.96), rgba(19, 12, 12, 0.96));
}

.order-card__header,
.order-detail-summary-row,
.order-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.order-card__identity,
.order-card__status-stack {
    display: grid;
    gap: 8px;
}

.order-card__status-stack {
    justify-items: end;
}

.order-card__subtitle {
    margin: 0;
    color: var(--ca-text-muted);
    line-height: 1.5;
}

.order-card__workflow,
.order-card__payment-banner,
.order-card__blocking-list {
    margin: 0;
}

.order-card__blocking-list {
    padding-left: 18px;
}

.order-card--service {
    gap: 16px;
}

.chat-thread,
.chat-composer {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chat-date-separator {
    align-self: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 164, 243, 0.08);
    color: var(--ca-text-subtle);
    font-size: 12px;
}

.chat-bubble {
    max-width: min(720px, 90%);
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--ca-border-strong);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-bubble--own {
    align-self: flex-end;
    background: rgba(0, 164, 243, 0.14);
    border-color: rgba(0, 164, 243, 0.24);
}

.chat-bubble--other {
    align-self: flex-start;
    background: rgba(17, 17, 17, 0.95);
}

.chat-bubble--system {
    align-self: center;
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.14);
}

.chat-bubble--payment-request {
    align-self: center;
    width: min(760px, 100%);
    max-width: min(760px, 100%);
    padding: 18px;
    border-radius: 22px;
    border-color: rgba(0, 164, 243, 0.32);
    background: linear-gradient(180deg, rgba(5, 34, 50, 0.96), rgba(6, 22, 34, 0.94));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    align-items: center;
    text-align: center;
}

.chat-composer-card {
    gap: 16px;
}

.chat-composer-card--dockable {
    transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.chat-page-shell {
    --chat-composer-height: 96px;
}

.chat-flow-shell,
.chat-context-block,
.chat-context-desktop,
.chat-thread-panel,
.chat-mobile-context__body,
.chat-mobile-context__summary,
.chat-thread-toolbar,
.chat-thread-toolbar__copy,
.chat-composer-card__title-wrap,
.chat-workspace-mobile-shell,
.chat-workspace-mobile-shell__copy,
.chat-workspace-mobile-shell__actions {
    display: grid;
    gap: 14px;
}

.chat-context-desktop {
    gap: 14px;
}

.chat-workspace-mobile-shell {
    display: none;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(7, 18, 27, 0.96), rgba(8, 13, 20, 0.94));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.chat-workspace-mobile-shell__copy {
    gap: 6px;
}

.chat-workspace-mobile-shell__eyebrow,
.chat-workspace-mobile-shell__meta {
    color: var(--ca-text-subtle);
    font-size: 11px;
}

.chat-workspace-mobile-shell__eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chat-workspace-mobile-shell__title {
    margin: 0;
    color: var(--ca-text);
    font-size: 1.05rem;
    line-height: 1.2;
}

.chat-workspace-mobile-shell__summary {
    margin: 0;
    color: var(--ca-text-subtle);
    font-size: 0.92rem;
    line-height: 1.5;
}

.chat-workspace-mobile-shell__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-workspace-mobile-shell__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(0, 164, 243, 0.08);
    color: var(--ca-text);
    font-size: 12px;
    font-weight: 700;
}

.chat-workspace-mobile-shell__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chat-workspace-mobile-shell__actions .carabout-button {
    width: 100%;
    min-width: 0;
    white-space: normal;
}

.chat-mobile-context__details {
    display: none;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(9, 21, 31, 0.94), rgba(9, 13, 19, 0.92));
}

.chat-mobile-context__summary {
    list-style: none;
    cursor: pointer;
    padding: 16px;
}

.chat-mobile-context__summary::-webkit-details-marker {
    display: none;
}

.chat-mobile-context__details[open] .chat-mobile-context__summary {
    padding-bottom: 14px;
}

.chat-mobile-context__body {
    padding: 0 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-thread-panel {
    gap: 12px;
}

.chat-thread-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(0, 164, 243, 0.14);
    background: rgba(8, 14, 20, 0.82);
}

.chat-thread-toolbar__copy {
    gap: 4px;
}

.chat-thread-toolbar__eyebrow,
.chat-thread-toolbar__meta,
.chat-mobile-context__eyebrow,
.chat-mobile-context__copy,
.chat-mobile-context__state,
.chat-composer-card__status,
.chat-composer-card__hint {
    color: var(--ca-text-subtle);
}

.chat-thread-toolbar__eyebrow,
.chat-mobile-context__eyebrow,
.chat-composer-card__status {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chat-thread-toolbar__copy strong,
.chat-mobile-context__summary strong {
    color: var(--ca-text);
    font-size: 1rem;
}

.chat-thread-toolbar__meta,
.chat-mobile-context__copy,
.chat-mobile-context__state,
.chat-composer-card__hint {
    font-size: 13px;
    line-height: 1.5;
}

.chat-thread-toolbar__refresh {
    white-space: nowrap;
}

.chat-mobile-context__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-mobile-context__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(0, 164, 243, 0.08);
    color: var(--ca-text);
    font-size: 12px;
    font-weight: 700;
}

.chat-bubble--payment-completed {
    align-self: center;
    width: min(760px, 100%);
    max-width: min(760px, 100%);
    padding: 18px;
    border-radius: 22px;
    border-color: rgba(76, 175, 80, 0.34);
    background: linear-gradient(180deg, rgba(19, 62, 31, 0.96), rgba(13, 42, 22, 0.94));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    align-items: center;
    text-align: center;
}

.chat-bubble__sender,
.chat-bubble__meta {
    color: var(--ca-text-subtle);
    font-size: 12px;
}

.chat-payment-request__icon {
    font-size: 30px;
}

.chat-payment-request__title {
    color: var(--ca-text);
    font-size: 1.2rem;
    font-weight: 800;
}

.chat-payment-request__content,
.chat-payment-request__helper {
    color: var(--ca-text-subtle);
    line-height: 1.6;
}

.chat-payment-request__amount {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 164, 243, 0.28);
    background: rgba(0, 164, 243, 0.14);
    color: var(--ca-text);
    font-size: 14px;
    font-weight: 800;
}

.payment-brand-card,
.payment-method-grid,
.payment-brand-card__logo,
.payment-amount-card__value {
    display: flex;
}

.payment-brand-card {
    align-items: center;
    gap: 16px;
}

.payment-brand-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 164, 243, 0.12);
    color: var(--ca-primary);
    font-size: 24px;
}

.payment-success-card {
    border-color: rgba(76, 175, 80, 0.22);
}

.order-inline-alert-card {
    border-color: rgba(255, 193, 7, 0.24);
    background: rgba(255, 193, 7, 0.06);
}

.payment-method-grid {
    gap: 12px;
    flex-wrap: wrap;
}

.payment-method-card {
    flex: 1 1 220px;
    min-height: 120px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--ca-border-strong);
    background: rgba(13, 13, 13, 0.96);
    color: var(--ca-text);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    cursor: pointer;
}

.payment-method-card--selected {
    background: rgba(0, 164, 243, 0.12);
    border-color: rgba(0, 164, 243, 0.24);
}

.payment-method-card__icon {
    font-size: 24px;
}

.payment-amount-card__value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ca-text);
}

.chat-thread {
    min-height: 320px;
    background: linear-gradient(180deg, rgba(8, 14, 20, 0.96), rgba(9, 12, 18, 0.92));
}

.chat-thread__end-marker {
    width: 100%;
    height: 1px;
}

.chat-composer-card__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
}

.chat-composer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.chat-composer__input {
    min-height: 48px;
    max-height: 136px;
    resize: none;
    overflow-y: hidden;
    padding: 12px 14px;
    border-radius: 20px;
    line-height: 1.5;
}

.chat-composer__send {
    align-self: stretch;
    white-space: nowrap;
}

#order-create-step-client,
#order-create-step-schedule,
#order-create-step-vehicle,
#order-create-step-review,
#order-detail-summary,
#order-detail-guidance,
#order-detail-vehicle,
#order-detail-problem,
#order-detail-contact,
#order-detail-location,
#order-detail-note,
#order-detail-documents,
#order-detail-actions,
#order-detail-cancel,
#order-payment-guidance,
#order-payment-summary,
#order-payment-amount,
#order-payment-documents,
#order-payment-confirmation,
#order-payment-history,
#order-payment-methods,
#order-payment-actions,
#order-payment-next,
#order-chat-summary,
#order-chat-context,
#order-chat-thread,
#order-chat-composer,
#service-dashboard-overview,
#service-dashboard-reschedule,
#service-dashboard-notifications,
#service-dashboard-orders,
#service-dashboard-workspace,
#service-orders-overview,
#service-orders-filters,
#service-orders-list,
#service-order-detail-summary,
#service-order-detail-guidance,
#service-order-detail-appointment,
#service-order-detail-client,
#service-order-detail-problem,
#service-order-detail-documents,
#service-order-detail-actions,
#service-order-edit-summary,
#service-order-edit-client,
#service-order-edit-appointment,
#service-order-edit-vehicle,
#service-order-edit-details,
#service-order-edit-documents,
#service-order-edit-actions,
#service-order-status-summary,
#service-order-status-guidance,
#service-order-status-appointment,
#service-order-status-note,
#service-order-status-pricing,
#service-order-status-documents,
#service-order-status-actions,
#service-order-chat-summary,
#service-order-chat-context,
#service-order-chat-thread,
#service-order-chat-composer,
#service-order-create-readiness,
#service-order-create-client,
#service-order-create-schedule,
#service-order-create-details,
#service-order-create-review,
#service-calendar-month,
#service-calendar-mobile-drilldown,
#service-calendar-day,
#service-calendar-orders,
#service-calendar-reschedule,
#service-calendar-booking,
#service-calendar-scheduling-entry,
#service-calendar-scheduling-guide,
#service-calendar-rules,
#service-calendar-day-tools,
#service-calendar-copy,
#about-problem,
#about-why-now,
#about-product,
#about-advantage,
#about-moat,
#about-gtm,
#about-wins,
#contact-entry-points,
#contact-routing-flow,
#contact-help,
#dsa,
#privacy-controller,
#privacy-data,
#privacy-processing,
#privacy-retention,
#privacy-rights,
#privacy-rights-request,
#privacy-technology,
#privacy-complaints,
#terms-basics,
#terms-orders,
#terms-content,
#terms-legal,
#gdpr-overview,
#gdpr-export,
#gdpr-erasure {
    scroll-margin-top: calc(var(--ca-shell-header-offset) + 84px);
}

.service-calendar-scheduling-guide,
.service-calendar-settings-entry {
    display: grid;
    gap: 18px;
}

.service-calendar-scheduling-guide__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.service-calendar-scheduling-guide__content {
    display: grid;
    gap: 16px;
}

.service-calendar-scheduling-guide__aside {
    display: grid;
    gap: 16px;
}

.service-calendar-scheduling-guide__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.service-calendar-scheduling-guide__step {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(9, 24, 36, 0.9), rgba(10, 15, 20, 0.9));
}

.service-calendar-scheduling-guide__step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 214, 255, 0.36);
    background: rgba(0, 164, 243, 0.14);
    color: var(--ca-text);
    font-size: 0.88rem;
    font-weight: 700;
}

.service-calendar-scheduling-guide__step strong,
.service-calendar-scheduling-guide__step small {
    color: var(--ca-text);
}

.service-calendar-scheduling-guide__step small {
    color: var(--ca-text-subtle);
    line-height: 1.5;
}

.service-calendar-tutorial-entry,
.service-calendar-tutorial-hero,
.service-calendar-tutorial-card,
.service-calendar-tutorial-summary-card,
.service-calendar-tutorial-decision-card,
.service-calendar-tutorial-footer-card {
    display: grid;
    gap: 18px;
}

.service-calendar-tutorial-entry {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(7, 18, 28, 0.96), rgba(10, 14, 18, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-calendar-tutorial-entry__header,
.service-calendar-tutorial-hero__grid,
.service-calendar-tutorial-card__grid,
.service-calendar-tutorial-layout,
.service-calendar-tutorial-checklist__header,
.service-calendar-tutorial-summary-card__item {
    display: grid;
    gap: 16px;
}

.service-calendar-tutorial-entry__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
}

.service-calendar-tutorial-entry__header h3,
.service-calendar-tutorial-summary-card__item strong,
.service-calendar-tutorial-checklist__header strong {
    margin: 0;
    color: var(--ca-text);
    line-height: 1.3;
}

.service-calendar-tutorial-page {
    display: grid;
    gap: 20px;
}

.service-calendar-tutorial-hero__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    align-items: start;
}

.service-calendar-tutorial-hero__content,
.service-calendar-tutorial-hero__aside,
.service-calendar-tutorial-layout__main,
.service-calendar-tutorial-layout__sidebar,
.service-calendar-tutorial-card__copy,
.service-calendar-tutorial-card__aside,
.service-calendar-tutorial-summary-card__list,
.service-calendar-tutorial-wizard {
    display: grid;
    gap: 16px;
}

.service-calendar-tutorial-wizard .order-create-wizard__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-calendar-tutorial-wizard__step {
    min-height: 112px;
}

.service-calendar-tutorial-wizard__step--completed,
.service-calendar-tutorial-summary-card__item--active {
    border-color: rgba(96, 214, 255, 0.3);
    background: linear-gradient(180deg, rgba(0, 164, 243, 0.16), rgba(15, 23, 30, 0.92));
}

.service-calendar-tutorial-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
    align-items: start;
}

.service-calendar-tutorial-card__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    align-items: start;
}

.service-calendar-tutorial-card__chips,
.service-calendar-tutorial-card__actions,
.service-calendar-tutorial-footer-card__actions {
    row-gap: 10px;
}

.service-calendar-tutorial-checklist {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.service-calendar-tutorial-checklist__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.service-calendar-tutorial-checklist__item,
.service-calendar-tutorial-summary-card__item {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.service-calendar-tutorial-checklist__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.service-calendar-tutorial-checklist__item span,
.service-calendar-tutorial-summary-card__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(96, 214, 255, 0.24);
    background: rgba(0, 164, 243, 0.12);
    color: var(--ca-text);
    font-weight: 800;
    flex-shrink: 0;
}

.service-calendar-tutorial-checklist__item p,
.service-calendar-tutorial-summary-card__item small {
    margin: 0;
    color: var(--ca-text-subtle);
    line-height: 1.55;
}

.service-calendar-tutorial-summary-card__item {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    text-align: left;
}

.service-calendar-tutorial-summary-card__item small {
    display: block;
    margin-top: 4px;
}

.service-calendar-tutorial-mobile-shell {
    display: none;
    gap: 12px;
}

.service-calendar-tutorial-mobile-shell__summary,
.service-calendar-tutorial-mobile-stage__summary {
    align-items: flex-start;
}

.service-calendar-tutorial-mobile-shell__summary-copy,
.service-calendar-tutorial-mobile-stage__summary-copy,
.service-calendar-tutorial-mobile-shell__body,
.service-calendar-tutorial-mobile-stage__body,
.service-calendar-tutorial-mobile-progress,
.service-calendar-tutorial-mobile-actions {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.service-calendar-tutorial-mobile-shell__eyebrow,
.service-calendar-tutorial-mobile-stage__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ca-text-muted);
}

.service-calendar-tutorial-mobile-shell__primary,
.service-calendar-tutorial-mobile-shell__more-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-calendar-tutorial-mobile-shell__item {
    display: flex;
}

.service-calendar-tutorial-mobile-shell__item .filter-chip {
    min-height: 0;
}

.service-calendar-tutorial-mobile-shell__item .filter-chip--selected {
    border-color: rgba(96, 214, 255, 0.34);
    background: linear-gradient(180deg, rgba(0, 164, 243, 0.18), rgba(10, 18, 26, 0.92));
}

.service-calendar-tutorial-mobile-shell__more {
    display: grid;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(6, 13, 20, 0.64);
}

.service-calendar-tutorial-mobile-shell__more summary {
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ca-text);
}

.service-calendar-tutorial-mobile-shell__rule {
    padding: 12px 14px;
}

.service-calendar-tutorial-mobile-stage,
.service-calendar-tutorial-mobile-stage .service-calendar-tutorial-summary-card__list {
    display: grid;
    gap: 12px;
}

.service-calendar-tutorial-mobile-stage--progress {
    display: none;
}

@media (max-width: 1100px) {
    .service-calendar-tutorial-hero__grid,
    .service-calendar-tutorial-layout,
    .service-calendar-tutorial-card__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-tutorial-wizard .order-create-wizard__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .service-calendar-tutorial-entry__header {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-tutorial-wizard .order-create-wizard__steps,
    .service-calendar-tutorial-checklist__items {
        grid-template-columns: minmax(0, 1fr);
    }
}

.service-calendar-scheduling-page .service-calendar-management-grid {
    grid-template-columns: minmax(0, 1fr);
}

.service-calendar-scheduling-page .service-calendar-editor-card__header,
.service-calendar-scheduling-page .service-calendar-rule-card__header {
    align-items: flex-start;
}

.service-login-shell {
    align-items: center;
}

.service-login-card {
    width: min(560px, 100%);
}

.service-login-card__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-login-card__logo {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(0, 164, 243, 0.12);
    color: var(--ca-primary);
    font-size: 26px;
}

.service-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-dashboard-grid--stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-operations-nav {
    z-index: 12;
}

.stat-tile {
    justify-content: space-between;
}

.stat-tile__value {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
}

.stat-tile__value--pending {
    color: #ff8c00;
}

.stat-tile__value--success {
    color: #4caf50;
}

.stat-tile__value--accent {
    color: var(--ca-primary);
}

.service-form-grid,
.service-form-stack,
.service-action-grid {
    display: grid;
    gap: 12px;
}

.service-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-action-grid {
    grid-template-columns: 1fr;
}

.service-form-stack--spaced {
    margin-top: 1rem;
}

.work-summary-line-editor {
    gap: 10px;
}

.work-summary-line-editor__header,
.work-summary-line-editor__total,
.order-document-line-items__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.work-summary-line-editor__add,
.work-summary-line-editor__remove {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--ca-text);
    font-weight: 700;
    min-height: 36px;
}

.work-summary-line-editor__add {
    border-radius: 999px;
    padding: 0 14px;
}

.work-summary-line-editor__remove {
    border-radius: 50%;
    width: 36px;
    padding: 0;
    font-size: 1.1rem;
}

.work-summary-line-editor__add:disabled,
.work-summary-line-editor__remove:disabled {
    opacity: .45;
}

.work-summary-line-editor__row {
    display: grid;
    grid-template-columns: minmax(160px, 1.4fr) minmax(120px, .9fr) minmax(88px, .55fr) minmax(120px, .75fr) minmax(180px, 1.2fr) minmax(104px, auto) 36px;
    gap: 8px;
    align-items: center;
}

.work-summary-line-editor__line-total {
    color: var(--ca-text);
    font-size: .88rem;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.work-summary-line-editor__total {
    min-height: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ca-text-muted);
}

.work-summary-line-editor__total strong {
    color: var(--ca-text);
}

.order-document-line-items {
    display: grid;
    gap: 8px;
    margin: 10px 0;
}

.order-document-line-items__row {
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--ca-text-muted);
}

.order-document-line-items__row span:first-child {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.order-document-line-items__row small {
    color: var(--ca-text-muted);
}

.order-document-line-items__row strong {
    color: var(--ca-text);
}

@media (max-width: 760px) {
    .work-summary-line-editor__header,
    .work-summary-line-editor__total,
    .order-document-line-items__row {
        align-items: flex-start;
        flex-direction: column;
    }

    .work-summary-line-editor__row {
        grid-template-columns: 1fr;
    }

    .work-summary-line-editor__line-total {
        text-align: left;
    }
}

.service-operations-summary-card {
    border-color: rgba(0, 164, 243, 0.22);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.service-dashboard-mobile-shell-wrapper {
    display: none;
}

.service-dashboard-mobile-shell,
.service-dashboard-mobile-stage {
    gap: 12px;
}

.service-dashboard-mobile-shell__summary,
.service-dashboard-mobile-stage__summary {
    align-items: flex-start;
}

.service-dashboard-mobile-shell__summary-copy,
.service-dashboard-mobile-stage__summary-copy,
.service-dashboard-mobile-shell__body,
.service-dashboard-mobile-stage__body {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.service-dashboard-mobile-shell__eyebrow,
.service-dashboard-mobile-stage__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ca-text-subtle);
}

.service-dashboard-mobile-shell__body {
    gap: 12px;
}

.service-operations-mobile-start {
    display: none;
}

.service-operations-mobile-start__copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.service-operations-mobile-start__eyebrow {
    color: var(--ca-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-operations-mobile-start h2 {
    margin: 0;
    color: var(--ca-text);
    font-size: clamp(1.16rem, 6vw, 1.5rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.service-operations-mobile-start p {
    margin: 0;
    color: var(--ca-text-subtle);
    font-size: 0.86rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.service-operations-mobile-start__status,
.service-operations-mobile-start__actions {
    display: flex;
    gap: 8px;
}

.service-operations-mobile-start__status {
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.service-operations-mobile-start__status::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.service-operations-mobile-start__status .results-status-pill {
    flex: 0 0 auto;
    min-height: 30px;
    padding-inline: 10px;
    font-size: 0.72rem;
    white-space: nowrap;
}

.service-operations-mobile-start__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.working-hours-editor {
    display: grid;
    gap: 12px;
}

.working-hours-editor__row {
    display: grid;
    grid-template-columns: minmax(110px, 140px) auto repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.working-hours-editor__closed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ca-text-muted);
}

.service-image-upload-panel {
    display: grid;
    gap: 12px;
}

.service-image-upload-panel__meta {
    color: var(--ca-text-muted);
    font-size: 12px;
}

.service-images-logo-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.service-images-logo-shell__preview {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(147, 197, 253, 0.24);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(37, 99, 235, 0.7));
    box-shadow: 0 18px 32px rgba(2, 6, 23, 0.34);
}

.service-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-image-card__preview {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--ca-border);
}

.registration-highlight-list {
    margin: 0;
    padding-left: 18px;
    color: var(--ca-text-muted);
    line-height: 1.7;
}

.service-calendar-summary {
    display: grid;
    gap: 10px;
}

.service-calendar-page #service-calendar-mobile-drilldown {
    display: none;
}

.service-calendar-mobile-flow-card,
.service-calendar-mobile-flow-card__meta {
    display: grid;
    gap: 12px;
}

.service-calendar-mobile-flow-card__meta {
    color: var(--ca-text-subtle);
}

.service-calendar-mobile-flow-card__meta strong {
    color: var(--ca-text);
}

.service-calendar-mobile-workspace-nav,
.service-calendar-mobile-workspace-nav__summary-copy,
.service-calendar-mobile-workspace-nav__body {
    display: grid;
    gap: 10px;
}

.service-calendar-mobile-workspace-nav__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ca-text-muted);
}

.service-calendar-mobile-workspace-nav__primary,
.service-calendar-mobile-workspace-nav__more-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-calendar-mobile-workspace-nav__item {
    display: flex;
}

.service-calendar-mobile-workspace-nav__item .filter-chip {
    min-height: 0;
}

.service-calendar-mobile-workspace-nav__more {
    display: grid;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(6, 13, 20, 0.64);
}

.service-calendar-mobile-workspace-nav__more summary {
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ca-text);
}

.service-calendar-scheduling-mobile-shell {
    display: none;
    gap: 12px;
}

.service-calendar-scheduling-mobile-shell__summary,
.service-calendar-scheduling-stage__summary {
    align-items: flex-start;
}

.service-calendar-scheduling-mobile-shell__summary-copy,
.service-calendar-scheduling-stage__summary-copy,
.service-calendar-scheduling-mobile-shell__body,
.service-calendar-scheduling-stage__body,
.service-calendar-scheduling-support {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.service-calendar-scheduling-mobile-shell__eyebrow,
.service-calendar-scheduling-stage__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ca-text-muted);
}

.service-calendar-scheduling-mobile-shell__primary,
.service-calendar-scheduling-mobile-shell__more-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-calendar-scheduling-mobile-shell__item {
    display: flex;
}

.service-calendar-scheduling-mobile-shell__item .filter-chip {
    min-height: 0;
}

.service-calendar-scheduling-mobile-shell__more {
    display: grid;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(6, 13, 20, 0.64);
}

.service-calendar-scheduling-mobile-shell__more summary {
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ca-text);
}

.service-calendar-scheduling-stage,
.service-calendar-scheduling-stage .service-calendar-editor-card {
    display: grid;
    gap: 12px;
}

@media (max-width: 1100px) {
    .service-calendar-rework-page .service-calendar-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-scheduling-guide__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-rework-page .service-detail-section-nav-toggle {
        display: grid;
        gap: 4px;
    }

    .service-calendar-rework-page .service-detail-section-nav-shell {
        position: sticky;
        top: var(--ca-shell-sticky-top);
        z-index: 11;
    }

    .service-calendar-rework-page .service-detail-section-nav-shell--collapsed .service-detail-section-nav-region {
        display: none;
    }

    .service-calendar-rework-page .service-detail-section-nav {
        position: static;
        top: auto;
        gap: 10px;
        padding: 10px;
        margin: 0;
    }

    .service-calendar-rework-page .service-detail-section-nav .carabout-button {
        flex: 1 1 calc(50% - 12px);
        min-width: 0;
        max-width: 100%;
        min-height: 46px;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-align: center;
    }

    .service-calendar-rework-page .service-calendar-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-calendar-rework-page .service-calendar-toolbar__group--jump {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .service-calendar-rework-page .service-calendar-toolbar__group--end {
        justify-content: flex-start;
    }

    .service-calendar-rework-page .service-calendar-toolbar__month-input {
        width: 100%;
        max-width: 240px;
    }
}

@media (max-width: 900px) {
    .service-calendar-rework-page .service-calendar-toolbar {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-rework-page .service-calendar-toolbar__group {
        justify-content: flex-start;
    }

    .service-calendar-rework-page .service-calendar-toolbar__month-input {
        max-width: none;
    }
}

.home-inline-status {
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.home-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-insight-grid,
.results-insight-grid {
    display: grid;
    gap: 12px;
}

.home-insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.results-insight-grid {
    grid-template-columns: 1fr;
}

.home-highlight-card {
    justify-content: center;
    align-items: flex-start;
    min-height: 110px;
}

.home-highlight-card--location {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
}

.home-highlight-card--location strong {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    white-space: nowrap;
}

.home-highlight-card--location span {
    color: var(--ca-text-muted);
}

.home-insight-card,
.results-insight-card {
    justify-content: center;
    align-items: flex-start;
    min-height: 110px;
    border-color: rgba(0, 164, 243, 0.18);
    background: linear-gradient(180deg, rgba(10, 18, 24, 0.96), rgba(8, 13, 18, 0.92));
}

.home-insight-card strong,
.results-insight-card strong {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--ca-primary);
}

.home-insight-card span,
.results-insight-card span {
    color: var(--ca-text-muted);
}

.home-highlight-card strong {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--ca-primary);
}

.home-highlight-card span {
    color: var(--ca-text-muted);
}

.discovery-carousel,
.discovery-carousel__track {
    display: flex;
    gap: 16px;
}

.discovery-carousel {
    flex-direction: column;
}

.discovery-carousel__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.discovery-carousel__meta,
.discovery-carousel__counter {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.discovery-carousel__counter {
    padding-left: 2px;
}

.discovery-carousel__counter strong {
    color: var(--ca-text);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.discovery-carousel__counter span {
    color: var(--ca-text-subtle);
    font-size: 12px;
}

.discovery-carousel__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 4px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scroll-padding-inline: 2px;
}

.discovery-carousel__viewport:active {
    cursor: grabbing;
}

.discovery-carousel__viewport:focus-visible {
    outline: 2px solid rgba(0, 164, 243, 0.8);
    outline-offset: 4px;
    border-radius: 20px;
}

.discovery-carousel__track {
    min-width: max-content;
}

.discovery-carousel__item {
    flex: 0 0 min(360px, calc(100vw - 64px));
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.discovery-carousel__progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.discovery-carousel__progress-bar {
    height: 100%;
    min-width: 10%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(0, 164, 243, 0.7), rgba(0, 164, 243, 0.96));
    transition: width 220ms ease;
}

.discovery-carousel__dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.discovery-carousel__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.discovery-carousel__dot--active {
    width: 28px;
    background: rgba(0, 164, 243, 0.95);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 0;
    padding: 0;
    overflow: visible;
    border-radius: 20px;
    border: 1px solid rgba(99, 148, 255, 0.13);
    background: #0f172a;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #f1f5f9;
    font-family: "DM Sans", "Aptos", "Segoe UI", sans-serif;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card--map-focused {
    border-color: rgba(147, 197, 253, 0.34);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(147, 197, 253, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card--interactive:hover,
.service-card--interactive:focus-within {
    transform: translateY(-2px);
    border-color: rgba(147, 197, 253, 0.24);
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card--interactive:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.12), 0 28px 68px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card__media {
    position: relative;
    min-height: 160px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background: #0f172a;
}

.service-card__cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__cover--fallback {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 45%, #2563eb 75%, #3b82f6 100%);
}

.service-card__cover--fallback::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 25%, rgba(147, 197, 253, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(30, 58, 138, 0.6) 0%, transparent 50%);
}

.service-card__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 44%, rgba(15, 23, 42, 0.78) 100%);
}

.service-card__placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.32);
}

.service-card__placeholder svg {
    opacity: 0.5;
}

.service-card__placeholder span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card__status-pill,
.service-card__distance-pill,
.service-card__media-button {
    position: absolute;
    z-index: 2;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.service-card__status-pill,
.service-card__distance-pill {
    top: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.service-card__status-pill {
    left: 12px;
}

.service-card__status-pill--open {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.15);
    border: 0.5px solid rgba(16, 185, 129, 0.35);
}

.service-card__status-pill--closed {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.14);
    border: 0.5px solid rgba(239, 68, 68, 0.24);
}

.service-card__distance-pill {
    right: 12px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.3);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
}

.service-card__media-button {
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.service-card__media-button:hover,
.service-card__media-button:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.service-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 48px 18px 18px;
}

.service-card__logo-badge {
    position: absolute;
    top: 0;
    left: 18px;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 4px solid #0f172a;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.42);
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.service-card__logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__logo-initials {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.04em;
}

.service-card__name {
    margin: 0;
    padding-right: 12px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #f1f5f9;
}

.service-card__meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__meta-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.45;
    color: #64748b;
}

.service-card__meta-row--rating {
    align-items: center;
}

.service-card__icon-wrap {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
}

.service-card__icon-wrap--rating {
    color: #f59e0b;
}

.service-card__rating-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.service-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.service-card__star {
    width: 11px;
    height: 11px;
}

.service-card__star path {
    fill: #334155;
}

.service-card__star--lit path {
    fill: #f59e0b;
}

.service-card__rating-text {
    font-size: 11px;
    color: #475569;
}

.service-card__signal-row,
.service-card__secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-card__soft-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.service-card__soft-chip--accent {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    margin-top: 2px;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card__category-badge {
    display: inline-flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.12);
    border: 0.5px solid rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service-card .carabout-button--secondary {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 7px 16px;
    border-radius: 10px;
    background: #2563eb;
    border: none;
    color: #fff;
    box-shadow: none;
}

.service-card .carabout-button--ghost {
    min-height: 38px;
    padding: 7px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    box-shadow: none;
}

.service-card .carabout-button--secondary:hover,
.service-card .carabout-button--secondary:focus-visible {
    background: #1d4ed8;
}

.service-card .carabout-button--ghost:hover,
.service-card .carabout-button--ghost:focus-visible {
    border-color: rgba(147, 197, 253, 0.24);
    background: rgba(147, 197, 253, 0.1);
}

.service-card__secondary-button--active {
    border-color: rgba(147, 197, 253, 0.28) !important;
    background: rgba(147, 197, 253, 0.12) !important;
    color: #dbeafe !important;
}

.service-card--list {
    width: 100%;
}

@media (max-width: 640px) {
    .service-card__footer,
    .service-card__secondary-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card .carabout-button--secondary,
    .service-card .carabout-button--ghost,
    .service-card__media-button {
        justify-content: center;
        width: 100%;
    }

    .service-card__media-button {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

.service-detail-page {
    --ca-service-detail-sidebar-top: calc(var(--ca-shell-header-offset) + 92px);
    padding-bottom: 32px;
}

.service-detail-section-nav-shell,
.service-detail-section-nav-region {
    display: grid;
    gap: 12px;
}

.service-detail-section-nav,
.service-rating-form,
.service-rating-form__grid,
.service-rating-form__score,
.service-rating-form__chips {
    display: flex;
    gap: 12px;
}

.service-detail-section-nav {
    position: sticky;
    top: var(--ca-shell-sticky-top);
    z-index: 8;
    flex-wrap: wrap;
    width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(6, 12, 17, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.service-detail-section-nav-toggle {
    display: none;
    width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(6, 12, 17, 0.92);
    color: var(--ca-text);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.service-detail-section-nav-toggle__eyebrow {
    color: var(--ca-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-detail-section-nav-toggle strong,
.service-detail-section-nav-toggle small {
    display: block;
}

.service-detail-section-nav-toggle strong {
    font-size: 0.98rem;
    line-height: 1.25;
}

.service-detail-section-nav-toggle small {
    color: var(--ca-text-subtle);
    line-height: 1.45;
}

.service-detail-section-nav-toggle__state {
    color: var(--ca-text);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

.discovery-section-nav-mobile-shell {
    display: none;
    margin: 4px 0 16px;
}

.discovery-section-nav-mobile-region {
    min-width: 0;
}

.discovery-section-nav--mobile {
    position: static;
    top: auto;
    z-index: auto;
    width: 100%;
    margin: 0;
    overflow: visible;
    scroll-snap-type: none;
    scrollbar-width: auto;
}

.discovery-section-nav--mobile .carabout-button {
    min-width: 0;
}

.discovery-section-nav-more {
    flex: 1 1 100%;
    min-width: 0;
}

.discovery-section-nav-more > summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(147, 197, 253, 0.18);
    background: rgba(255, 255, 255, 0.045);
    color: var(--ca-text);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.discovery-section-nav-more > summary::-webkit-details-marker {
    display: none;
}

.discovery-section-nav-more__content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.discovery-section-nav-more__content .carabout-button {
    flex: 1 1 calc(50% - 10px);
}

.service-detail-mobile-summary,
.service-detail-mobile-segments,
.service-detail-mobile-mini-cta {
    display: none;
}

@media (max-width: 720px) {
    .discovery-section-nav--desktop {
        display: none !important;
    }

    .discovery-section-nav-mobile-shell {
        display: grid;
        position: sticky;
        top: var(--ca-shell-sticky-top);
        z-index: 20;
        gap: 10px;
        width: 100%;
        min-width: 0;
    }

    .discovery-section-nav-mobile-shell .service-detail-section-nav-toggle {
        display: grid;
        gap: 4px;
    }

    .discovery-section-nav-mobile-shell .service-detail-section-nav-toggle strong,
    .discovery-section-nav-mobile-shell .service-detail-section-nav-toggle small {
        overflow-wrap: anywhere;
    }

    .discovery-section-nav-mobile-shell .discovery-section-nav--mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
        border-radius: 18px;
        border: 1px solid rgba(0, 164, 243, 0.18);
        background: rgba(6, 12, 17, 0.9);
        backdrop-filter: blur(14px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    }

    .discovery-section-nav-mobile-shell .discovery-section-nav--mobile .carabout-button {
        flex: 1 1 calc(50% - 10px);
        max-width: 100%;
        min-height: 46px;
        padding-inline: 12px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
        scroll-snap-align: none;
    }

    .discovery-section-nav-mobile-shell .discovery-section-nav-more__content .carabout-button {
        flex: 1 1 calc(50% - 10px);
    }
}

.service-detail-layout,
.service-detail-main,
.service-detail-sidebar,
.service-hero-card,
.service-hero-card__header,
.service-hero-card__identity,
.service-hero-card__title-wrap,
.service-hero-card__summary,
.service-hero-card__highlights,
.service-action-bar__grid,
.service-review-inline-card__summary,
.service-review-inline-card__meta-grid,
.service-contact-grid,
.service-contact-item,
.service-contact-item__body,
.service-location-grid,
.service-hours-grid,
.service-reviews-list,
.service-reviews-toolbar,
.service-reviews-toolbar__summary,
.service-reviews-toolbar__sort,
.service-review-owner-card,
.service-review-card__header,
.service-review-card__identity,
.service-review-card__footer,
.service-booking-card__summary,
.service-detail-mobile-cta,
.service-detail-mobile-cta__meta,
.service-detail-mobile-cta__actions {
    display: grid;
    gap: 14px;
}

.service-detail-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
    align-items: start;
}

.service-detail-main,
.service-detail-sidebar,
.service-hero-card__title-wrap,
.service-booking-card__summary,
.service-detail-mobile-cta__meta {
    gap: 16px;
}

.service-rating-form {
    flex-direction: column;
}

.service-rating-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-rating-form__score {
    flex-direction: column;
}

.service-rating-form__chips {
    flex-wrap: wrap;
}

.validation-message,
.validation-message > div {
    color: #ff8a80;
    font-size: 12px;
    line-height: 1.5;
}

#service-review-panel,
#service-profile-reviews,
#service-catalog,
#service-calendar-overview,
#service-calendar-availability,
#service-calendar-slots,
#service-calendar-issues,
#service-calendar-actions,
#service-register-summary,
#service-register-identification,
#service-register-account,
#service-register-contact,
#service-register-actions,
#service-register-new-summary,
#service-register-new-basics,
#service-register-new-contact,
#service-register-new-gallery,
#service-register-new-location,
#service-register-new-hours,
#service-register-new-approval,
#service-register-new-account,
#service-register-new-legal,
#service-register-new-actions,
#service-catalog-overview,
#service-catalog-editor,
#service-catalog-templates,
#service-catalog-list,
#service-catalog-actions,
#service-profile-overview,
#service-profile-basics,
#service-profile-description,
#service-profile-visuals,
#service-profile-hours,
#service-profile-actions,
#service-images-overview,
#service-images-preview,
#service-images-logo,
#service-images-upload,
#service-images-gallery,
#service-images-actions,
#service-categories,
#service-gallery,
#service-contact,
#service-location,
#service-hours,
#reviews-section {
    scroll-margin-top: calc(var(--ca-shell-header-offset) + 84px);
}

.service-catalog-section,
.service-catalog-management-card,
.service-catalog-editor-card {
    padding: clamp(22px, 3vw, 32px);
    gap: 20px;
}

.service-catalog-section .carabout-card__body,
.service-catalog-management-card .carabout-card__body,
.service-catalog-editor-card .carabout-card__body {
    gap: 18px;
}

.service-catalog-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

.service-catalog-category-card {
    padding: clamp(18px, 2.4vw, 26px);
    border-color: rgba(0, 164, 243, 0.16);
    background: linear-gradient(180deg, rgba(16, 18, 21, 0.98), rgba(10, 10, 11, 0.98));
}

.service-catalog-category-card .carabout-card__header {
    padding-bottom: 4px;
}

.service-catalog-list {
    gap: 16px;
}

.service-catalog-row {
    display: grid;
    gap: 14px;
    padding: clamp(16px, 2vw, 22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)), rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-catalog-row__content {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.service-catalog-row__title {
    display: block;
    color: var(--ca-text);
    font-size: 1rem;
    line-height: 1.35;
}

.service-catalog-row__description,
.service-catalog-row__includes {
    color: var(--ca-text-muted);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.service-catalog-row__includes {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-catalog-row__meta {
    justify-content: flex-start;
    row-gap: 8px;
}

.service-catalog-row__actions {
    padding-top: 2px;
}

.service-catalog-row--editing {
    border-color: rgba(0, 164, 243, 0.72);
    background: linear-gradient(135deg, rgba(0, 164, 243, 0.18), rgba(255, 255, 255, 0.035) 48%, rgba(0, 164, 243, 0.08)), rgba(10, 12, 15, 0.98);
    box-shadow: 0 0 0 1px rgba(0, 164, 243, 0.18), 0 18px 38px rgba(0, 0, 0, 0.28);
}

.service-catalog-editor-card--editing {
    border-color: rgba(0, 164, 243, 0.58);
    box-shadow: 0 0 0 1px rgba(0, 164, 243, 0.16), 0 18px 42px rgba(0, 0, 0, 0.28);
}

.service-catalog-editing-banner {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 164, 243, 0.38);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 164, 243, 0.16), rgba(255, 255, 255, 0.035)), rgba(6, 12, 18, 0.96);
}

.service-catalog-editing-banner__label {
    color: var(--ca-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-catalog-editing-banner__title {
    color: var(--ca-text);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
}

.service-catalog-editing-banner__meta,
.service-catalog-editing-banner__hint {
    color: var(--ca-text-muted);
    line-height: 1.55;
}

.service-catalog-editing-banner__hint {
    font-size: 0.92rem;
}

.service-detail-sidebar {
    position: sticky;
    top: var(--ca-service-detail-sidebar-top, var(--ca-shell-sidebar-top));
    align-self: start;
}

.service-hero-card {
    gap: 18px;
    background: linear-gradient(145deg, rgba(0, 164, 243, 0.14), rgba(13, 13, 13, 0.96));
    border-color: rgba(0, 164, 243, 0.18);
}

.service-hero-card__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
}

.service-hero-card__identity {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
}

.service-hero-card__logo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 17, 24, 0.82);
}

.service-hero-card__logo--placeholder {
    display: grid;
    place-items: center;
    font-size: 34px;
}

.service-hero-card__title-wrap h1 {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    line-height: 1.08;
}

.service-hero-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--ca-text-muted);
}

.service-hero-card__summary {
    min-width: 164px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(0, 164, 243, 0.2);
    background: rgba(6, 42, 54, 0.72);
    justify-items: end;
}

.service-hero-card__summary-value {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ca-text);
}

.service-hero-card__summary-label {
    color: var(--ca-text-muted);
    font-size: 12px;
}

.service-hero-card__highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-hero-card__highlight {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 18, 24, 0.72);
    display: grid;
    gap: 6px;
}

.service-hero-card__highlight--today {
    background: rgba(30, 58, 71, 0.82);
    border-color: rgba(0, 164, 243, 0.22);
}

.service-hero-card__highlight span,
.service-contact-item__body span,
.service-location-card span,
.service-hours-grid__item span,
.service-detail-mobile-cta__meta span {
    color: var(--ca-text-subtle);
    font-size: 12px;
}

.service-hero-card__highlight strong,
.service-contact-item__body strong,
.service-location-card strong,
.service-hours-grid__item strong,
.service-detail-mobile-cta__meta strong {
    color: var(--ca-text);
}

.service-hero-card__highlight small {
    color: var(--ca-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.service-action-bar__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.service-action-tile {
    min-height: 72px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 17, 17, 0.92);
    color: var(--ca-text);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.service-action-tile:hover,
.service-action-tile:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
}

.service-action-tile--call {
    background: rgba(30, 58, 71, 0.72);
    border-color: rgba(42, 77, 88, 0.9);
}

.service-action-tile--nav {
    background: rgba(42, 64, 53, 0.72);
    border-color: rgba(58, 90, 69, 0.9);
}

.service-action-tile--location {
    background: rgba(30, 58, 71, 0.72);
    border-color: rgba(0, 164, 243, 0.24);
}

.service-action-tile--review {
    background: rgba(74, 58, 30, 0.72);
    border-color: rgba(106, 90, 46, 0.9);
}

.service-review-inline-card {
    border-color: rgba(255, 193, 7, 0.18);
    background: linear-gradient(180deg, rgba(31, 24, 10, 0.94), rgba(17, 17, 17, 0.98));
}

.service-review-inline-card__score strong {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.service-review-inline-card__score span {
    display: block;
    margin-top: 8px;
    color: var(--ca-text-muted);
    line-height: 1.6;
}

.service-review-inline-card__meta-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.service-review-inline-card__meta-item,
.service-reviews-toolbar__summary,
.service-review-owner-card,
.service-review-auth-card {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 11, 11, 0.88);
}

.service-review-inline-card__meta-item {
    display: grid;
    gap: 6px;
}

.service-review-inline-card__meta-item span,
.service-review-owner-card__meta,
.service-reviews-toolbar__summary span {
    color: var(--ca-text-subtle);
    font-size: 12px;
}

.service-review-inline-card__meta-item strong,
.service-reviews-toolbar__summary strong {
    color: var(--ca-text);
}

.service-review-owner-card,
.service-review-auth-card {
    display: grid;
    gap: 12px;
}

.service-review-owner-card {
    background: rgba(24, 32, 14, 0.9);
    border-color: rgba(116, 184, 22, 0.24);
}

.service-review-auth-card {
    background: rgba(8, 17, 24, 0.88);
    border-color: rgba(0, 164, 243, 0.2);
}

.service-reviews-toolbar {
    align-items: start;
}

.service-reviews-toolbar__sort {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-contact-grid,
.service-location-grid,
.service-hours-grid,
.service-reviews-list {
    grid-template-columns: 1fr;
}

.service-contact-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 11, 11, 0.9);
}

.service-contact-item__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(0, 164, 243, 0.14);
    color: var(--ca-primary);
    font-size: 18px;
}

.service-contact-item__action {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(6, 42, 54, 0.72);
    color: var(--ca-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.service-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-location-card {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 11, 11, 0.9);
    display: grid;
    gap: 6px;
}

.service-location-card small {
    color: var(--ca-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.service-location-card--accent {
    background: rgba(6, 42, 54, 0.72);
    border-color: rgba(0, 164, 243, 0.18);
}

.service-hours-today {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 164, 243, 0.18);
    background: rgba(10, 18, 24, 0.72);
}

.service-hours-today p,
.service-hours-today span {
    color: var(--ca-text-muted);
}

.service-hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-hours-grid__item {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 11, 11, 0.9);
    display: grid;
    gap: 6px;
}

.service-hours-grid__item--today {
    background: rgba(30, 58, 71, 0.72);
    border-color: rgba(0, 164, 243, 0.22);
}

.service-review-card {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 11, 11, 0.92);
    display: grid;
    gap: 10px;
}

.service-review-card--owner {
    border-color: rgba(116, 184, 22, 0.24);
    background: rgba(21, 31, 16, 0.92);
}

.service-review-card__header,
.service-review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-review-card__identity {
    gap: 8px;
}

.service-review-card__badges {
    gap: 8px;
}

.service-review-card__rating {
    color: #ffd760;
    font-weight: 800;
}

.service-review-card span {
    color: var(--ca-text-subtle);
    font-size: 12px;
}

.service-review-card__action {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 17, 17, 0.92);
    color: var(--ca-text);
    cursor: pointer;
}

.service-review-card__action:disabled {
    opacity: 0.6;
    cursor: default;
}

.service-booking-card {
    position: static;
    gap: 18px;
}

.service-booking-card__grid {
    grid-template-columns: 1fr;
}

.service-detail-feature-panel .results-status-strip,
.service-detail-memory-card .results-status-strip {
    align-items: flex-start;
}

.service-detail-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 14;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 164, 243, 0.22);
    background: rgba(6, 12, 17, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
    display: none;
}

.service-detail-mobile-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-mobile-cta__status {
    align-items: flex-start;
}

.admin-shell {
    min-height: 100vh;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-shell__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--ca-border);
    border-radius: var(--ca-radius-card);
    background: rgba(7, 7, 7, 0.92);
    backdrop-filter: blur(10px);
}

.admin-shell__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.admin-shell__brand-mark {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex: 0 0 auto;
}

.admin-shell__content,
.admin-registration-grid,
.admin-detail-grid {
    display: grid;
    gap: 16px;
}

.admin-registration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 720px) {
    .home-page {
        gap: 14px;
    }

    .home-page > * {
        order: 20;
    }

    .home-page > #home-featured-section {
        order: 1;
    }

    .home-page > #home-mobile-launch {
        order: 2;
    }

    .home-page > .discovery-section-nav-mobile-shell {
        order: 3;
    }

    .home-page > #home-quick-discovery {
        order: 4;
    }

    .home-page > #home-recent-searches,
    .home-page > #home-shortlist,
    .home-page > #home-shortlist-compare,
    .home-page > #home-viewed-services {
        order: 5;
    }

    .home-page > .hero-panel,
    .home-page > .discovery-cockpit {
        display: none;
    }

    .home-mobile-discovery-head {
        display: flex;
        order: 1;
        padding: 0 2px;
    }

    .home-mobile-discovery-head h2 {
        font-size: 1.18rem;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .home-mobile-discovery-head .carabout-button {
        flex: 0 0 auto;
        min-height: 38px;
        padding-inline: 12px;
        border-radius: 12px;
    }

    .home-resume-chip {
        display: grid;
        order: 2;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "eyebrow action"
            "title action"
            "meta action";
        gap: 2px 12px;
        align-items: center;
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid rgba(0, 164, 243, 0.2);
        background: rgba(5, 15, 22, 0.92);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    }

    .home-resume-chip__eyebrow {
        grid-area: eyebrow;
        font-size: 0.66rem;
    }

    .home-resume-chip strong {
        grid-area: title;
        min-width: 0;
        overflow: hidden;
        color: var(--ca-text);
        font-size: 0.94rem;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home-resume-chip small {
        grid-area: meta;
        min-width: 0;
        overflow: hidden;
        color: var(--ca-text-subtle);
        font-size: 0.78rem;
        line-height: 1.35;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home-resume-chip__action {
        grid-area: action;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 0 10px;
        border-radius: 999px;
        background: rgba(0, 164, 243, 0.16);
        color: var(--ca-text);
        font-size: 0.78rem;
        font-weight: 800;
    }

    #home-featured-section {
        gap: 12px;
    }

    #home-featured-section .home-section-stack {
        gap: 12px;
    }

    #home-featured-section .section-header,
    #home-featured-section .home-featured-section__status {
        display: none;
    }

    #home-featured-section .home-section-stack > .results-grid,
    #home-featured-section .home-section-stack > .empty-state,
    #home-featured-section .home-section-stack > .error-state,
    #home-featured-section .discovery-carousel {
        order: 4;
    }

    .home-nearest-companion-card {
        order: 3;
        border-radius: 16px;
    }

    .home-nearest-companion-card .carabout-card__header {
        gap: 4px;
    }

    .home-nearest-companion-card .carabout-card__eyebrow {
        font-size: 0.66rem;
    }

    .home-nearest-companion-card .carabout-card__title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .home-nearest-companion-card .discovery-feature-panel__subtitle,
    .home-nearest-companion-card .discovery-feature-panel__summary,
    .home-nearest-companion-card .discovery-feature-panel__status {
        display: none;
    }

    .home-nearest-companion-card .discovery-feature-panel__content,
    .home-nearest-companion-card .discovery-feature-panel__body,
    .home-nearest-companion-card .discovery-feature-panel__actions {
        gap: 10px;
    }

    .home-nearest-companion-card .discovery-feature-panel__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-nearest-companion-card .discovery-feature-panel__actions .carabout-button {
        width: 100%;
        min-height: 40px;
        padding-inline: 10px;
    }

    .home-nearest-companion-card .discovery-feature-panel__actions .carabout-button:nth-child(n+3) {
        display: none;
    }

    #home-featured-section .discovery-carousel__toolbar {
        display: grid;
        gap: 8px;
    }

    #home-featured-section .discovery-carousel__toolbar .results-status-strip {
        display: none;
    }

    #home-featured-section .home-inline-status {
        color: var(--ca-text-subtle);
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .home-mobile-launch {
        display: grid;
        gap: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .home-mobile-launch__copy {
        display: grid;
        gap: 2px;
    }

    .home-mobile-launch__copy h2 {
        font-size: 1rem;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .home-mobile-launch__actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .home-mobile-launch .home-mobile-launch__actions .carabout-button {
        width: 100%;
        min-height: 42px;
        padding-inline: 8px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .home-page .discovery-carousel__track,
    .home-page .home-nearest-list__track {
        gap: 10px;
    }

    .home-page .discovery-carousel__item,
    .home-page .home-nearest-list__item {
        flex-basis: min(270px, calc(100vw - 40px));
    }

    .home-page .service-card {
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .home-page .service-card__media {
        min-height: 96px;
        border-radius: 16px 16px 0 0;
    }

    .home-page .service-card__body {
        gap: 8px;
        padding: 34px 12px 12px;
    }

    .home-page .service-card__logo-badge {
        left: 12px;
        width: 44px;
        height: 44px;
        border-width: 3px;
        border-radius: 12px;
    }

    .home-page .service-card__logo-initials {
        font-size: 15px;
    }

    .home-page .service-card__name {
        padding-right: 0;
        font-size: 0.92rem;
        line-height: 1.18;
        letter-spacing: 0;
    }

    .home-page .service-card__meta-list {
        gap: 5px;
    }

    .home-page .service-card__meta-row {
        gap: 6px;
        font-size: 0.72rem;
        line-height: 1.32;
    }

    .home-page .service-card__icon-wrap {
        width: 20px;
        height: 20px;
        border-radius: 6px;
    }

    .home-page .service-card__stars {
        gap: 1px;
    }

    .home-page .service-card__star {
        width: 10px;
        height: 10px;
    }

    .home-page .service-card__rating-text {
        font-size: 0.68rem;
    }

    .home-page .service-card__signal-row,
    .home-page .service-card__secondary-actions,
    .home-page .service-card__media-button {
        display: none;
    }

    .home-page .service-card__status-pill,
    .home-page .service-card__distance-pill {
        top: 8px;
        padding: 3px 8px;
        font-size: 0.62rem;
    }

    .home-page .service-card__status-pill {
        left: 8px;
    }

    .home-page .service-card__distance-pill {
        right: 8px;
    }

    .home-page .service-card__footer {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding-top: 8px;
    }

    .home-page .service-card__category-badge {
        min-height: 24px;
        padding: 4px 8px;
        font-size: 0.62rem;
    }

    .home-page .service-card .carabout-button--secondary {
        width: auto;
        min-height: 34px;
        padding: 6px 12px;
        border-radius: 9px;
        font-size: 0.82rem;
    }

    .home-page #home-quick-discovery .section-header {
        display: none;
    }

    .working-hours-editor__row,
    .service-image-grid,
    .admin-registration-grid,
    .admin-shell__header {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .admin-shell__brand {
        width: 100%;
    }

    .results-pagination {
        align-items: stretch;
    }

    .home-highlight-grid {
        grid-template-columns: 1fr;
    }

    .home-highlight-card--location {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-highlight-card--location strong {
        white-space: normal;
    }

    .home-insight-grid {
        grid-template-columns: 1fr;
    }

    #home-quick-discovery .home-side-column {
        grid-template-columns: 1fr;
    }

    .search-floating-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-floating-bar__body,
    .search-floating-bar__actions,
    .search-floating-bar__anchor-actions {
        width: 100%;
    }

    .discovery-cockpit {
        flex-direction: column;
        align-items: stretch;
    }

    .discovery-section-nav {
        top: var(--ca-shell-sticky-top);
    }

    .service-detail-continuity {
        flex-direction: column;
        align-items: stretch;
    }

    .service-detail-section-nav {
        top: var(--ca-shell-sticky-top);
    }

    .search-history-grid {
        grid-template-columns: 1fr;
    }

    .search-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-carousel__header,
    .gallery-carousel__nav,
    .map-panel__preview,
    .service-search-map__header,
    .service-search-map__meta {
        flex-direction: column;
        align-items: stretch;
    }

    .search-floating-bar__actions,
    .results-refinement-strip {
        justify-content: stretch;
    }

    .discovery-compare-card__header {
        grid-template-columns: 1fr;
    }

    .results-refinement-strip .filter-chip,
    .search-floating-bar__actions .carabout-button,
    .search-floating-bar__anchor-actions .carabout-button,
    .discovery-cockpit__actions .carabout-button,
    .discovery-feature-panel__actions .carabout-button,
    .service-detail-continuity__actions .carabout-button,
    .map-panel__actions .carabout-button,
    .service-search-map__actions .carabout-button {
        width: 100%;
    }

    .search-map-all-location__form {
        grid-template-columns: 1fr;
    }

    .search-map-all-location__form .carabout-button {
        width: 100%;
    }

    .discovery-carousel__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-search-map__canvas {
        min-height: 340px;
    }

    .results-summary-grid,
    .home-nearest-companion-grid,
    .search-live-preview-grid,
    .home-journey-grid,
    .home-spotlight-grid,
    .search-journey-grid,
    .search-preview-spotlight-grid,
    .results-journey-grid,
    .results-spotlight-grid,
    .results-map-focus-grid,
    .service-detail-radar-grid,
    .discovery-compare-card__grid,
    .service-rating-form__grid,
    .search-results-layout,
    .service-card--list .service-card__top,
    .service-card--list .service-card__footer,
    .service-card--list .service-card__meta-grid {
        grid-template-columns: 1fr;
    }

    .search-results-aside {
        position: static;
    }

    .search-chip-rail {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .home-discovery-rail {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .home-nearest-list__item {
        flex-basis: min(300px, calc(100vw - 64px));
    }
}

@media (max-width: 720px) {
    .service-calendar-rework-page .service-calendar-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-page #service-calendar-mobile-drilldown {
        display: block;
        order: 0;
    }

    .service-calendar-mobile-flow-card {
        position: sticky;
        top: calc(var(--ca-shell-sticky-top) + 4px);
        z-index: 9;
    }

    .service-calendar-mobile-workspace-nav__primary,
    .service-calendar-mobile-workspace-nav__more-content {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .service-calendar-mobile-workspace-nav__item {
        flex: 0 0 auto;
    }

    .service-create-order-page .service-create-order-layout,
    .service-create-order-page .service-create-order-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .order-create-page .client-booking-calendar-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-rework-page .service-calendar-day-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-dashboard-page > .section-header,
    .service-notifications-page > .section-header,
    .service-calendar-page > .section-header,
    .service-calendar-tutorial-page > .section-header {
        display: none;
    }

    .service-operations-mobile-start {
        display: grid;
        gap: 10px;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        margin-inline: auto;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(0, 164, 243, 0.22);
        background: linear-gradient(180deg, rgba(7, 17, 24, 0.98), rgba(5, 10, 15, 0.96));
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    }

    .service-operations-mobile-start__actions .carabout-button {
        min-width: 0;
        min-height: 42px;
        padding-inline: 8px;
        border-radius: 14px;
        font-size: 0.8rem;
        line-height: 1.15;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .service-dashboard-page > .service-dashboard-mobile-start,
    .service-notifications-page > .service-notifications-mobile-start,
    .service-calendar-page > .service-calendar-mobile-start,
    .service-calendar-tutorial-page > .service-calendar-tutorial-mobile-start {
        order: 0;
    }

    .service-dashboard-page > .service-dashboard-mobile-shell-wrapper {
        display: block;
        order: 1;
    }

    .service-dashboard-page > .discovery-section-nav-mobile-shell,
    .service-calendar-page > .discovery-section-nav-mobile-shell {
        order: 1;
    }

    .service-dashboard-page > .discovery-section-nav-mobile-shell,
    .service-dashboard-page > #service-dashboard-overview,
    .service-dashboard-page > #service-dashboard-reschedule,
    .service-dashboard-page > #service-dashboard-notifications,
    .service-dashboard-page > #service-dashboard-orders,
    .service-dashboard-page > #service-dashboard-workspace {
        display: none;
    }

    .service-dashboard-page .service-dashboard-mobile-shell {
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        margin-inline: auto;
    }

    .service-dashboard-page .service-dashboard-mobile-stage__body .service-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-dashboard-page .service-dashboard-mobile-stage__body .service-dashboard-grid--stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-dashboard-page .service-dashboard-mobile-stage__body .carabout-card,
    .service-dashboard-page .service-dashboard-mobile-stage__body .orders-overview-card,
    .service-dashboard-page .service-dashboard-mobile-stage__body .sync-status-card {
        gap: 12px;
    }

    .service-dashboard-page .service-dashboard-mobile-stage__body .carabout-card__actions {
        grid-template-columns: 1fr;
    }

    .service-dashboard-page .service-dashboard-mobile-stage__body .carabout-button {
        width: 100%;
    }

    .service-dashboard-page #service-dashboard-overview {
        order: 2;
    }

    .service-dashboard-page #service-dashboard-overview .service-dashboard-grid--stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-dashboard-page #service-dashboard-overview .stat-tile {
        min-height: 0;
        padding: 12px;
        border-radius: 16px;
    }

    .service-dashboard-page #service-dashboard-overview .stat-tile p,
    .service-dashboard-page #service-dashboard-overview .service-operations-summary-card .service-contact-list,
    .service-dashboard-page #service-dashboard-notifications .service-contact-list,
    .service-dashboard-page #service-dashboard-workspace .service-contact-list {
        display: none;
    }

    .service-dashboard-page #service-dashboard-overview .stat-tile__value {
        font-size: 1.45rem;
    }

    .service-dashboard-page #service-dashboard-notifications .service-dashboard-grid--stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-dashboard-page #service-dashboard-reschedule .carabout-card,
    .service-dashboard-page #service-dashboard-notifications .carabout-card,
    .service-dashboard-page #service-dashboard-orders .carabout-card,
    .service-dashboard-page #service-dashboard-workspace .carabout-card {
        gap: 12px;
    }

    .service-calendar-page > .discovery-continuity-shell {
        order: 1;
    }

    .service-calendar-page > .discovery-section-nav-mobile-shell {
        order: 2;
    }

    .service-calendar-page > .order-flow-section,
    .service-calendar-page > .service-calendar-shell {
        order: 3;
    }

    .service-calendar-page .service-dashboard-grid--stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-calendar-page .service-dashboard-grid--stats .stat-tile {
        min-height: 0;
        padding: 12px;
        border-radius: 16px;
    }

    .service-calendar-page .service-dashboard-grid--stats .stat-tile p {
        display: none;
    }

    .service-calendar-scheduling-page .service-calendar-scheduling-guide__steps,
    .service-calendar-page .service-calendar-scheduling-entry .service-calendar-scheduling-guide__steps {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .service-calendar-scheduling-page .service-calendar-scheduling-guide__steps::-webkit-scrollbar,
    .service-calendar-page .service-calendar-scheduling-entry .service-calendar-scheduling-guide__steps::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .service-calendar-scheduling-page .service-calendar-scheduling-guide__step,
    .service-calendar-page .service-calendar-scheduling-entry .service-calendar-scheduling-guide__step {
        min-width: min(220px, calc(100vw - 56px));
    }

    .service-calendar-scheduling-page .service-calendar-scheduling-guide__aside {
        display: none;
    }

    .service-calendar-tutorial-page > .discovery-continuity-shell {
        order: 1;
    }

    .service-calendar-tutorial-page > .service-calendar-tutorial-mobile-shell-wrapper {
        order: 2;
    }

    .service-calendar-tutorial-page > .order-flow-section,
    .service-calendar-tutorial-page > .service-calendar-tutorial-layout {
        order: 3;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-shell {
        display: grid;
    }

    .service-calendar-tutorial-page #service-calendar-tutorial-overview,
    .service-calendar-tutorial-page #service-calendar-tutorial-wizard,
    .service-calendar-tutorial-page .service-calendar-tutorial-layout__sidebar,
    .service-calendar-tutorial-page #service-calendar-tutorial-actions {
        display: none;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-shell__primary,
    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-shell__more-content,
    .service-calendar-tutorial-page .service-calendar-tutorial-card__chips {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-shell__primary::-webkit-scrollbar,
    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-shell__more-content::-webkit-scrollbar,
    .service-calendar-tutorial-page .service-calendar-tutorial-card__chips::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-shell__item {
        flex: 0 0 auto;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-card {
        padding: 12px;
        gap: 12px;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage--progress {
        display: grid;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-checklist {
        padding: 12px;
        border-radius: 16px;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage__body .carabout-card__actions,
    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage__body .service-calendar-tutorial-summary-card__list {
        gap: 10px;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage__body .carabout-button,
    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage__body .service-calendar-tutorial-summary-card__item {
        width: 100%;
    }

    .order-create-page .client-booking-calendar-day-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .order-create-page .client-booking-calendar-shell__month-panel--mobile {
        order: 1;
    }

    .order-create-page .client-booking-calendar-day-panel {
        order: 2;
    }

    .service-calendar-rework-page .service-calendar-day-panel {
        order: 1;
    }

    .service-calendar-rework-page .service-calendar-mobile-month-disclosure {
        order: 2;
    }

    .service-calendar-management-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-scheduling-guide__steps {
        grid-template-columns: minmax(0, 1fr);
    }


@media (min-width: 721px) {
    .service-calendar-tutorial-mobile-shell-wrapper,
    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage--progress {
        display: none;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage,
    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage[open] {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage > .mobile-density-disclosure__summary {
        display: none;
    }

    .service-calendar-tutorial-page .service-calendar-tutorial-mobile-stage > .mobile-density-disclosure__body {
        display: block;
        padding: 0;
        margin: 0;
    }
}
    .service-calendar-weekdays {
        display: none;
    }

    .service-calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-calendar-toolbar__group--jump {
        width: 100%;
        justify-content: stretch;
    }

    .service-calendar-toolbar__month-input {
        width: 100%;
    }

    .service-calendar-cell {
        min-height: 124px;
    }

    .public-shell,
    .public-shell__header,
    .public-shell__main,
    .public-shell__content,
    .home-page,
    .service-detail-page {
        overflow-x: hidden;
        overflow-x: clip;
    }

    .hero-panel,
    .about-journey-board__steps,
    .home-grid-section,
    .service-preview-grid,
    .domain-grid,
    .search-page__grid,
    .results-grid,
    .about-story-grid,
    .about-principles-grid,
    .about-stack-grid,
    .about-release-strip,
    .about-product-grid,
    .about-operating-grid,
    .about-moat-grid,
    .about-gtm-grid,
    .about-compare-grid,
    .about-timing-panel__grid,
    .about-compound-panel__grid,
    .about-gtm-panel__grid,
    .about-operating-card__grid,
    .about-roadmap-panel__grid,
    .about-release-cta-grid,
    .contact-grid,
    .contact-flow-grid,
    .contact-help-grid,
    .support-overview-grid,
    .support-fallback-grid,
    .gdpr-request-grid,
    .client-entry-grid,
    .client-auth-grid,
    .service-auth-grid,
    .about-summary-grid,
    .service-dashboard-grid,
    .service-detail-layout,
    .service-action-bar__grid,
    .service-gallery-grid,
    .service-hours-grid,
    .order-form-grid,
    .order-list-grid,
    .carabout-card__header,
    .section-header,
    .results-header,
    .service-card__top {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .service-booking-card {
        position: static;
    }

    .search-floating-bar {
        bottom: calc(88px + env(safe-area-inset-bottom));
    }

    .search-results-layout {
        grid-template-columns: 1fr;
    }

    .search-results-flow__map-launch {
        display: block;
        order: 1;
    }

    .search-results-flow__refinement {
        order: 2;
    }

    .search-results-flow__layout {
        order: 3;
    }

    .search-results-flow__map {
        order: 4;
    }

    .results-summary-shell__grid,
    .results-list-shell__grid,
    .results-refinement-grid,
    .results-empty-recovery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-mobile-launch,
    .home-mobile-launch__copy {
        display: grid;
    }

    #home-quick-discovery {
        order: 1;
    }

    #home-featured-section {
        order: 2;
    }

    #home-quick-discovery .home-side-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .results-map-handoff-grid {
        grid-template-columns: 1fr;
    }

    .search-results-aside {
        position: static;
        order: 2;
    }

    .results-aside-radar-card {
        order: 1;
    }

    .results-aside-memory-card--shortlist {
        order: 2;
    }

    .results-aside-memory-card--viewed {
        order: 3;
    }

    .results-aside-navigation-card {
        order: 4;
    }

    .results-aside-insights-card {
        order: 5;
    }

    .results-aside-spotlight-card {
        order: 6;
    }

    .results-list {
        order: 1;
    }

    .results-header__actions {
        justify-content: stretch;
    }

    .service-detail-sidebar {
        position: static;
    }

    .order-create-wizard {
        display: grid;
    }

    .order-create-step--inactive {
        display: none;
    }

    .order-create-step__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-create-step__actions .carabout-button,
    .orders-overview-card__actions .carabout-button,
    .order-flow-sidebar .carabout-button,
    .service-operations-page .carabout-button,
    .order-list-page .order-card .carabout-button {
        width: 100%;
    }

    .order-create-sidebar {
        display: none;
    }

    .order-create-mobile-review {
        display: grid;
    }

    .order-detail-page .order-flow-sidebar,
    .payment-page-shell .order-flow-sidebar,
    .service-order-page .order-flow-sidebar,
    .service-workspace-page .order-flow-sidebar {
        order: -1;
    }

    .order-list-page .order-card__header,
    .order-list-page .order-card__meta,
    .service-operations-page .order-card__header {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .service-profile-page .service-detail-sidebar,
    .service-images-page .service-detail-sidebar {
        order: 0;
    }

    .order-list-page .order-card .carabout-card__actions,
    .orders-overview-card__actions,
    .order-flow-sidebar .carabout-card__actions,
    .service-operations-page .order-card .carabout-card__actions,
    .service-operations-page .carabout-card__actions,
    .chat-page-shell .chat-composer-card .carabout-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-order-page .service-form-grid,
    .service-workspace-page .service-form-grid {
        grid-template-columns: 1fr;
    }

    .service-workspace-page .service-detail-sidebar {
        position: static;
    }

    .service-image-card__actions--desktop {
        display: none;
    }

    .service-image-card__mobile-primary,
    .service-image-card__mobile-actions {
        display: grid;
    }

    .service-image-card__mobile-primary {
        gap: 10px;
    }

    .service-image-card__mobile-primary .carabout-button,
    .service-image-card__mobile-actions .carabout-button {
        width: 100%;
    }

    .service-image-card__mobile-actions .carabout-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-workspace-page .working-hours-editor__row {
        grid-template-columns: 1fr;
    }

    .order-list-page .results-pagination,
    .service-operations-page .results-pagination {
        display: grid;
        grid-template-columns: 1fr;
    }

    .client-entry-guide .carabout-card__actions,
    .client-auth-card .carabout-card__actions,
    .service-auth-card .carabout-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-auth-page .service-detail-sidebar {
        order: -1;
        position: static;
    }

    .service-auth-page .service-form-grid {
        grid-template-columns: 1fr;
    }

    .payment-page-shell .payment-method-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .payment-page-shell .payment-method-card {
        min-height: 0;
    }

    .order-detail-page.order-detail-page--workspace-ready > .section-header,
    .payment-page-shell.payment-page-shell--workspace-ready > .section-header {
        display: none;
    }

    .order-detail-page > .order-workspace-mobile-shell,
    .payment-page-shell > .order-workspace-mobile-shell {
        display: none;
    }

    .order-detail-page.order-detail-page--workspace-ready > .order-workspace-mobile-shell,
    .payment-page-shell.payment-page-shell--workspace-ready > .order-workspace-mobile-shell {
        display: grid;
        order: 0;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .order-detail-page > .discovery-continuity-shell,
    .payment-page-shell > .discovery-continuity-shell {
        order: 1;
    }

    .order-detail-page > .discovery-section-nav-mobile-shell,
    .payment-page-shell > .discovery-section-nav-mobile-shell {
        display: block;
        order: 2;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .order-detail-page > .service-detail-section-nav.discovery-section-nav--desktop,
    .payment-page-shell > .service-detail-section-nav.discovery-section-nav--desktop {
        display: none;
    }

    .order-detail-page .service-detail-layout,
    .payment-page-shell .service-detail-layout {
        order: 3;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        gap: 12px;
    }

    .order-detail-page .service-detail-main,
    .payment-page-shell .service-detail-main,
    .order-detail-page .service-detail-sidebar,
    .payment-page-shell .service-detail-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .order-detail-page .service-detail-sidebar,
    .payment-page-shell .service-detail-sidebar {
        display: grid;
        gap: 12px;
        position: static;
    }

    .order-detail-page.order-detail-page--workspace-ready .service-detail-main,
    .payment-page-shell.payment-page-shell--workspace-ready .service-detail-main {
        order: 0;
    }

    .order-detail-page.order-detail-page--workspace-ready .order-flow-sidebar,
    .payment-page-shell.payment-page-shell--workspace-ready .order-flow-sidebar {
        order: 1;
    }

    .order-detail-page.order-detail-page--workspace-ready #order-detail-summary,
    .order-detail-page.order-detail-page--workspace-ready #order-detail-actions,
    .payment-page-shell.payment-page-shell--workspace-ready #order-payment-summary,
    .payment-page-shell.payment-page-shell--workspace-ready #order-payment-actions,
    .payment-page-shell.payment-page-shell--workspace-ready .order-payment-brand {
        display: none;
    }

    .order-detail-page .order-workspace-mobile-shell__actions,
    .payment-page-shell .order-workspace-mobile-shell__actions {
        grid-template-columns: 1fr;
    }

    .chat-page-shell > .section-header {
        display: none;
    }

    .chat-page-shell {
        padding-bottom: calc(var(--chat-composer-height) + 120px);
    }

    .chat-page-shell .chat-flow-shell__mobile {
        display: grid;
        order: 0;
    }

    .chat-page-shell .chat-flow-shell__workspace {
        order: 1;
    }

    .chat-page-shell .chat-flow-shell__summary {
        order: 2;
    }

    .chat-page-shell .chat-flow-shell__context {
        order: 3;
    }

    .chat-page-shell .chat-context-desktop {
        display: none;
    }

    .chat-page-shell .chat-mobile-context__details {
        display: grid;
    }

    .chat-page-shell .chat-thread {
        padding-bottom: calc(var(--chat-composer-height) + 24px);
    }

    .chat-page-shell .chat-composer-card {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(92px + env(safe-area-inset-bottom));
        z-index: 28;
        width: auto;
        max-width: calc(100vw - 24px);
        margin: 0;
        padding: 12px;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
        border-color: rgba(0, 164, 243, 0.2);
        background: rgba(6, 12, 17, 0.96);
        backdrop-filter: blur(16px);
        gap: 10px;
    }

    .chat-page-shell.chat-page-shell--composer-hidden .chat-composer-card--dockable,
    .chat-page-shell .chat-composer-card--dockable.chat-composer-card--hidden {
        transform: translateY(calc(100% + 18px + env(safe-area-inset-bottom)));
        opacity: 0.02;
        pointer-events: none;
        box-shadow: none;
    }

    .chat-page-shell .chat-composer-card__header,
    .chat-page-shell .chat-composer-shell,
    .chat-page-shell .chat-thread-toolbar {
        gap: 10px;
    }

    .chat-page-shell .chat-composer__input {
        min-height: 46px;
        max-height: 120px;
    }

    .chat-page-shell .chat-composer__send {
        min-width: 84px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .chat-page-shell .chat-bubble {
        max-width: 94%;
    }

    .chat-page-shell .chat-bubble--payment-request,
    .chat-page-shell .chat-bubble--payment-completed {
        width: 100%;
        max-width: 100%;
        padding: 16px;
    }

    .service-hero-card__header,
    .service-hero-card__identity,
    .service-contact-item,
    .service-location-grid,
    .service-hours-grid,
    .service-hero-card__highlights,
    .results-list-active-card__header,
    .service-detail-mobile-cta__actions {
        grid-template-columns: 1fr;
    }

    .service-detail-booking-panel--mobile {
        display: block;
    }

    .service-detail-booking-panel--desktop {
        display: none;
    }

    .service-detail-section-nav-toggle {
        display: grid;
        gap: 4px;
    }

    .service-detail-section-nav-shell {
        position: sticky;
        top: var(--ca-shell-sticky-top);
        z-index: 11;
    }

    .service-detail-section-nav-shell--collapsed .service-detail-section-nav-region {
        display: none;
    }

    .service-detail-section-nav {
        position: static;
        top: auto;
        gap: 10px;
        padding: 10px;
        margin: 0;
    }

    .service-detail-section-nav .filter-chip {
        flex: 1 1 calc(50% - 12px);
    }

    .service-action-bar__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-action-tile {
        min-height: 60px;
        padding: 12px 14px;
        border-radius: 16px;
        gap: 10px;
    }

    .service-action-tile strong {
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .results-status-strip,
    .home-status-strip,
    .hero-panel__chips,
    .carabout-card__actions,
    .chip-cloud,
    .service-detail-section-nav,
    .discovery-continuity__actions,
    .discovery-continuity__right {
        width: 100%;
        min-width: 0;
    }

    .search-flow-section__intro {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: center;
        padding: 14px 16px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(8, 18, 25, 0.72);
    }

    .search-flow-section__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 14px;
        border-radius: 999px;
        border: 1px solid rgba(0, 164, 243, 0.24);
        background: rgba(0, 164, 243, 0.12);
        color: var(--ca-text);
        font-weight: 700;
    }

    .search-flow-section--collapsible.search-flow-section--collapsed .search-flow-section__body {
        display: none;
    }

    .search-map-all-flow__summary {
        order: 1;
    }

    .search-map-all-flow__launch {
        display: grid;
        order: 2;
    }

    .search-map-all-flow__map {
        order: 3;
    }

    .search-map-all-flow__layout {
        order: 4;
    }

    .discovery-section-nav .carabout-button,
    .results-section-nav .carabout-button {
        flex: 1 1 calc(50% - 12px);
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-align: center;
    }

    .service-detail-section-nav .carabout-button {
        flex: 1 1 calc(50% - 12px);
        min-width: 0;
        max-width: 100%;
        min-height: 46px;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-align: center;
    }

    .service-operations-page .service-dashboard-grid--stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-operations-page .order-card__status-stack {
        justify-items: start;
    }

    .discovery-compare-board {
        grid-template-columns: 1fr;
    }

    .discovery-carousel__item {
        flex-basis: min(320px, calc(100vw - 56px));
    }
}

@media (max-width: 720px) {
    .service-calendar-scheduling-mobile-shell-wrapper {
        order: 2;
    }

    .service-calendar-scheduling-mobile-shell {
        display: grid;
    }

    .service-calendar-scheduling-mobile-shell__primary,
    .service-calendar-scheduling-mobile-shell__more-content {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .service-calendar-scheduling-mobile-shell__item {
        flex: 0 0 auto;
    }

    .service-calendar-scheduling-stage .service-calendar-editor-card {
        padding: 14px;
        border-radius: 18px;
        gap: 12px;
    }
}

@media (min-width: 721px) {
    .service-calendar-scheduling-mobile-shell-wrapper {
        display: none;
    }

    .service-calendar-scheduling-stage,
    .service-calendar-scheduling-stage[open] {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .service-calendar-scheduling-stage > .mobile-density-disclosure__summary {
        display: none;
    }

    .service-calendar-scheduling-stage > .mobile-density-disclosure__body {
        display: block;
        padding: 0;
        margin: 0;
    }

    .search-results-flow__map-launch,
    .service-detail-booking-panel--mobile,
    .search-map-all-flow__launch {
        display: none;
    }

    .service-detail-discovery-cockpit {
        position: sticky;
        bottom: 16px;
        z-index: 13;
    }
}

@media (max-width: 640px) {
    .time-slot-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-calendar-toolbar,
    .service-calendar-toolbar__group,
    .service-calendar-day-summary,
    .service-calendar-order-card__header,
    .service-calendar-order-card__meta,
    .service-calendar-editor-card__header,
    .service-calendar-rule-card__header,
    .service-calendar-window-row,
    .service-calendar-slot-override-row {
        align-items: stretch;
    }

    .order-create-page .client-booking-calendar-toolbar,
    .order-create-page .client-booking-calendar-toolbar__headline,
    .order-create-page .client-booking-calendar-toolbar__actions {
        align-items: stretch;
    }

    .order-create-page .client-booking-calendar-toolbar__actions .carabout-button {
        width: 100%;
    }

    .service-calendar-order-card__status {
        justify-items: start;
    }

    .service-calendar-cell__note {
        white-space: normal;
        border-radius: 14px;
    }

    .service-calendar-quick-day-card {
        padding: 14px;
    }

    .hero-panel {
        padding: 18px;
        border-radius: 18px;
    }

    .hero-panel h1 {
        max-width: none;
        font-size: 2rem;
    }

    .hero-panel__stats {
        display: none;
    }

    .hero-panel__actions .carabout-button,
    .home-mobile-launch .carabout-card__actions .carabout-button {
        width: 100%;
    }

    .service-detail-section-nav .carabout-button,
    .home-section-nav .carabout-button,
    .search-section-nav .carabout-button,
    .results-section-nav .carabout-button,
    .discovery-section-nav .carabout-button {
        flex-basis: calc(50% - 12px);
        min-height: 46px;
        padding-inline: 12px;
    }

    .discovery-carousel__item {
        flex-basis: calc(100vw - 48px);
    }

    .home-nearest-list__item {
        flex-basis: calc(100vw - 48px);
    }

    .service-card--list .service-card__meta-grid {
        display: none;
    }

    .results-summary-shell__grid,
    .results-list-shell__grid,
    .results-refinement-grid,
    .results-empty-recovery-grid {
        grid-template-columns: 1fr;
    }

    .results-header__actions,
    .results-map-handoff-card .discovery-feature-panel__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .results-summary-shell .discovery-feature-panel__actions,
    .results-refinement-card .discovery-feature-panel__actions,
    .results-empty-recovery-card .discovery-feature-panel__actions,
    .results-refinement-card .results-refinement-strip {
        grid-template-columns: 1fr;
        display: grid;
    }

    .results-refinement-card .filter-chip,
    .results-refinement-card .carabout-button,
    .results-empty-recovery-card .carabout-button,
    .results-map-handoff-card .carabout-button,
    .results-summary-shell .carabout-button {
        width: 100%;
    }

    .order-create-wizard__steps,
    .order-create-step__actions {
        grid-template-columns: 1fr;
    }

    .service-order-guided-bar__steps {
        grid-template-columns: repeat(7, minmax(180px, 1fr));
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .service-order-guided-panel__facts {
        grid-template-columns: 1fr;
    }

    .service-order-guided-panel__actions,
    .service-order-action-modal__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-operations-page .service-dashboard-grid--stats {
        grid-template-columns: 1fr;
    }

    .service-operations-page .order-card__meta,
    .service-order-page .order-detail-summary-row {
        display: grid;
        gap: 8px;
    }

    .client-entry-guide,
    .client-auth-card,
    .client-auth-highlight,
    .client-auth-consent-row,
    .client-auth-context-list,
    .service-auth-card,
    .service-auth-highlight,
    .service-auth-consent-row,
    .service-auth-context-list {
        border-radius: 18px;
    }

    .client-auth-consent-row {
        padding: 12px 14px;
    }

    .client-auth-card .carabout-button,
    .client-entry-guide .carabout-button,
    .service-auth-card .carabout-button,
    .support-overview-card .carabout-button,
    .support-fallback-card .carabout-button,
    .support-fallback-hero .carabout-button {
        width: 100%;
    }

    .chat-page-shell .chat-composer-card {
        left: 12px;
        right: 12px;
        bottom: calc(88px + env(safe-area-inset-bottom));
    }

    .chat-page-shell .chat-workspace-mobile-shell__actions {
        grid-template-columns: 1fr;
    }

    .chat-page-shell .chat-thread-toolbar,
    .chat-page-shell .chat-composer-card__header,
    .chat-page-shell .chat-composer-shell {
        grid-template-columns: 1fr;
    }

    .chat-page-shell .chat-thread-toolbar__refresh,
    .chat-page-shell .chat-composer__send {
        width: 100%;
    }

    .chat-page-shell.chat-page-shell--composer-hidden .chat-composer-card--dockable,
    .chat-page-shell .chat-composer-card--dockable.chat-composer-card--hidden {
        transform: translateY(calc(100% + 14px + env(safe-area-inset-bottom)));
    }

    .service-action-tile {
        min-height: 56px;
        padding: 11px 12px;
    }

    .service-card--list .service-card__compact-meta {
        display: flex;
    }

    .service-card--list .carabout-card__actions,
    .service-card--list .carabout-button,
    .discovery-compare-card .carabout-button {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .home-page > * {
        order: 20;
    }

    .home-page > #home-featured-section {
        order: 1;
    }

    .home-page > #home-mobile-launch {
        order: 2;
    }

    .home-page > .discovery-section-nav-mobile-shell {
        order: 3;
    }

    .home-page > #home-quick-discovery {
        order: 4;
    }

    .home-page > #home-recent-searches,
    .home-page > #home-shortlist,
    .home-page > #home-shortlist-compare,
    .home-page > #home-viewed-services {
        order: 5;
    }

    .home-page > .hero-panel,
    .home-page > .discovery-cockpit {
        display: none;
    }

    .home-page .discovery-carousel__item,
    .home-page .home-nearest-list__item {
        flex-basis: min(270px, calc(100vw - 40px));
    }
}

/* Final V2 service-detail mobile overrides. Kept at the end because older
   responsive service-detail rules still appear earlier in this stylesheet. */
.service-detail-mobile-summary,
.service-detail-mobile-segments,
.service-detail-mobile-mini-cta {
    display: none !important;
}

@media (max-width: 720px) {
    .service-detail-page {
        gap: 12px;
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .service-detail-page > .section-header,
    .service-detail-page > .service-detail-section-nav.discovery-section-nav--desktop,
    .service-detail-page .service-hero-card,
    .service-detail-page .service-detail-sidebar {
        display: none !important;
    }

    .service-detail-page > .discovery-continuity-shell {
        order: 0;
        z-index: 16;
    }

    .service-detail-mobile-summary {
        display: grid !important;
        order: 1;
    }

    .service-detail-page > .discovery-section-nav-mobile-shell {
        display: grid !important;
        order: 2;
        position: static;
        top: auto;
        z-index: auto;
    }

    .service-detail-layout {
        order: 3;
        gap: 12px;
    }

    .service-detail-page .service-detail-main > .service-detail-booking-anchor,
    .service-detail-page .service-detail-main > #service-categories,
    .service-detail-page .service-detail-main > #service-catalog,
    .service-detail-page .service-detail-main > #service-description,
    .service-detail-page .service-detail-main > #service-contact,
    .service-detail-page .service-detail-main > #service-location,
    .service-detail-page .service-detail-main > #service-detail-map,
    .service-detail-page .service-detail-main > #service-hours,
    .service-detail-page .service-detail-main > #service-gallery,
    .service-detail-page .service-detail-main > #reviews-section,
    .service-detail-page .service-detail-main > #service-review-panel,
    .service-detail-page .service-detail-main > .service-action-bar {
        display: grid !important;
    }

    .service-detail-booking-anchor {
        order: 1;
    }

    #service-categories {
        order: 2;
    }

    #service-catalog {
        order: 3;
    }

    #service-detail-map {
        order: 4;
    }

    #service-contact {
        order: 5;
    }

    #service-hours {
        order: 6;
    }

    #service-gallery {
        order: 7;
    }

    #reviews-section {
        order: 8;
    }

    #service-location {
        order: 9;
    }

    #service-description {
        order: 10;
    }

    #service-review-panel {
        order: 11;
    }

    .service-detail-page .service-action-bar {
        order: 12;
    }

    .service-detail-mobile-mini-cta {
        display: grid !important;
    }
}

/* Final V2 public discovery mobile lock. Keep this at the end of app.css:
   older route-specific media blocks above still contain pre-V2 ordering. */
@media (max-width: 720px) {
    .search-page > .section-header,
    .search-results-page > .section-header,
    .search-map-all-page > .section-header {
        display: none !important;
    }

    .search-page > .search-mobile-start,
    .search-results-page > .results-mobile-start,
    .search-map-all-page > .map-all-mobile-start,
    .search-choice-page > .search-choice-mobile-start,
    .ai-search-page > .ai-search-mobile-start {
        display: grid !important;
        order: 0 !important;
    }

    .search-results-page--list-focus .search-results-flow__layout,
    .search-results-flow__layout {
        order: 3 !important;
    }

    .search-results-page--list-focus .search-results-flow__map-launch,
    .search-results-flow__map-launch {
        display: grid !important;
        order: 4 !important;
    }

    .search-results-page--list-focus .search-results-flow__refinement,
    .search-results-flow__refinement {
        order: 5 !important;
    }

    .search-results-page--list-focus .search-results-flow__map,
    .search-results-flow__map {
        order: 6 !important;
    }

    .search-results-page--map-focus .search-results-flow__map-launch {
        order: 4 !important;
    }

    .search-results-page--map-focus .search-results-flow__layout {
        order: 3 !important;
    }

    .search-results-page--map-focus .search-results-flow__map {
        order: 6 !important;
    }

    .search-results-page > .public-discovery-workspace-mobile-shell-wrapper {
        display: none;
    }

    .search-results-page.search-results-page--workspace-ready > .public-discovery-workspace-mobile-shell-wrapper {
        display: grid !important;
        order: 1 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        gap: 10px;
    }

    .search-results-page.search-results-page--workspace-ready > .results-summary-shell {
        display: none !important;
    }

    .search-results-page.search-results-page--workspace-ready > .discovery-section-nav-mobile-shell {
        order: 2 !important;
    }

    .search-results-page.search-results-page--workspace-ready .public-discovery-workspace-mobile-stage {
        display: block !important;
    }

    .search-results-page.search-results-page--workspace-ready .search-results-flow__map-launch,
    .search-results-page.search-results-page--workspace-ready .search-results-flow__refinement,
    .search-results-page.search-results-page--workspace-ready .results-aside-navigation-card {
        display: none !important;
    }

    .search-map-all-page > .public-discovery-workspace-mobile-shell-wrapper {
        display: none;
    }

    .search-map-all-page.search-map-all-page--workspace-ready > .public-discovery-workspace-mobile-shell-wrapper {
        display: grid !important;
        order: 1 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        gap: 10px;
    }

    .search-map-all-page.search-map-all-page--workspace-ready > .discovery-section-nav-mobile-shell {
        order: 2 !important;
    }

    .search-map-all-page.search-map-all-page--workspace-ready .public-discovery-workspace-mobile-stage {
        display: block !important;
    }

    .search-map-all-page.search-map-all-page--workspace-ready .search-map-all-flow__summary,
    .search-map-all-page.search-map-all-page--workspace-ready .search-map-all-flow__launch,
    .search-map-all-page.search-map-all-page--workspace-ready .search-map-all-flow__aside .results-aside-feature-card {
        display: none !important;
    }

    .search-map-all-page.search-map-all-page--workspace-ready .search-map-all-flow__map {
        order: 3 !important;
    }

    .search-map-all-page.search-map-all-page--workspace-ready .search-map-all-flow__layout {
        order: 4 !important;
    }

    .search-map-all-flow__launch {
        display: grid !important;
        order: 1 !important;
    }

    .search-map-all-flow__summary {
        order: 2 !important;
    }

    .search-map-all-flow__map {
        order: 3 !important;
    }

    .search-map-all-flow__layout {
        order: 4 !important;
    }

    .ai-search-page > .ai-search-shell-wrap {
        order: 1 !important;
    }

    .ai-search-page > .ai-search-page__warning {
        order: 2 !important;
    }

    .ai-search-page > .discovery-section-nav-mobile-shell {
        order: 3 !important;
    }

    .ai-search-page > .ai-search-hero {
        order: 4 !important;
    }

    .ai-search-page > .ai-search-page__outcome {
        order: 5 !important;
    }

    .search-choice-page > .search-choice-grid {
        order: 1 !important;
    }

    .search-choice-page > .search-choice-hero {
        order: 2 !important;
    }

    .search-choice-hero .results-status-strip,
    .search-choice-hero p,
    .search-choice-hero__organism,
    .search-choice-hero__badges {
        display: none !important;
    }

    .search-choice-hero {
        min-height: 0 !important;
        gap: 12px !important;
        grid-template-columns: 1fr !important;
    }

    .search-choice-hero__content {
        gap: 12px !important;
    }
}

/* Final V2 service-order mobile command lock. Public service detail rules above
   intentionally hide public-detail sidebar/nav on phones; service order routes
   need their workflow nav and action sidebar restored as an operational flow. */
@media (max-width: 720px) {
    .service-orders-page > .section-header,
    .service-create-order-page > .section-header,
    .service-order-page > .section-header {
        display: none !important;
    }

    .service-orders-page > .service-orders-mobile-start,
    .service-create-order-page > .service-order-create-mobile-start,
    .service-order-page > .service-order-detail-mobile-start,
    .service-order-page > .service-order-edit-mobile-start,
    .service-order-page > .service-order-status-mobile-start,
    .service-order-chat-page > .service-order-chat-mobile-start {
        display: grid !important;
        order: 0 !important;
    }

    .service-order-page > .service-order-workspace-mobile-shell {
        display: none;
    }

    .service-order-page.service-order-page--workspace-ready > .service-order-detail-mobile-start,
    .service-order-page.service-order-page--workspace-ready > .service-order-edit-mobile-start,
    .service-order-page.service-order-page--workspace-ready > .service-order-status-mobile-start,
    .service-order-chat-page.service-order-chat-page--workspace-ready > .service-order-chat-mobile-start {
        display: none !important;
    }

    .service-order-page.service-order-page--workspace-ready > .service-order-workspace-mobile-shell {
        display: grid;
        order: 0 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .service-orders-page > .discovery-continuity-shell,
    .service-create-order-page > .discovery-continuity-shell,
    .service-order-page > .discovery-continuity-shell,
    .service-order-chat-page > .discovery-continuity-shell {
        order: 1 !important;
    }

    .service-orders-page > .discovery-section-nav-mobile-shell,
    .service-create-order-page > .discovery-section-nav-mobile-shell,
    .service-order-page > .discovery-section-nav-mobile-shell,
    .service-order-chat-page > .discovery-section-nav-mobile-shell {
        display: block !important;
        order: 2 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .service-orders-page > .service-detail-section-nav.discovery-section-nav--desktop,
    .service-create-order-page > .service-detail-section-nav.discovery-section-nav--desktop,
    .service-order-page > .service-detail-section-nav.discovery-section-nav--desktop,
    .service-order-chat-page > .service-detail-section-nav.discovery-section-nav--desktop {
        display: none !important;
    }

    .service-order-chat-page > .error-state {
        order: 3 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .service-order-page .service-detail-layout {
        order: 3 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        gap: 12px;
    }

    .service-order-page .service-detail-main,
    .service-order-page .service-detail-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .service-order-page .service-detail-sidebar {
        display: grid !important;
        position: static;
        gap: 12px;
    }

    .service-order-page .order-flow-sidebar {
        order: -1;
    }

    .service-order-page.service-order-page--workspace-ready .service-detail-main {
        order: 0;
    }

    .service-order-page.service-order-page--workspace-ready .order-flow-sidebar {
        order: 1;
    }

    .service-order-page .service-order-guided-bar__steps {
        grid-template-columns: repeat(7, minmax(168px, 1fr));
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .service-order-page .service-order-guided-panel,
    .service-order-page .service-order-guided-bar,
    .service-order-page .order-flow-mobile-card-shell__summary,
    .service-create-order-page .order-flow-mobile-card-shell__summary {
        border-radius: 16px;
    }

    .service-order-page .service-order-guided-panel__actions .carabout-button,
    .service-order-page .service-order-action-modal__actions .carabout-button,
    .service-create-order-page .service-create-order-form-grid .carabout-button {
        width: 100%;
    }

    .service-order-page .order-workspace-mobile-shell__actions {
        grid-template-columns: 1fr;
    }
}

/* Final V2 public utility/legal/support mobile command layer. Desktop keeps
   the existing presentation-heavy pages; phones start with task routing. */
.public-utility-mobile-start {
    display: none;
}

@media (max-width: 720px) {
    .about-page,
    .contact-page,
    .legal-page,
    .gdpr-request-page,
    .support-fallback-page {
        gap: 12px;
    }

    .public-utility-mobile-start {
        display: grid;
        gap: 12px;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        padding: 14px;
        border: 1px solid rgba(0, 164, 243, 0.22);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(7, 16, 23, 0.96), rgba(5, 10, 15, 0.96));
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
    }

    .public-utility-mobile-start__copy,
    .public-utility-mobile-start__status,
    .public-utility-mobile-start__actions {
        display: grid;
        gap: 10px;
        min-width: 0;
    }

    .public-utility-mobile-start__eyebrow {
        color: var(--ca-primary);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .public-utility-mobile-start h2 {
        margin: 0;
        color: var(--ca-text);
        font-size: 1.22rem;
        line-height: 1.18;
    }

    .public-utility-mobile-start p {
        margin: 0;
        color: var(--ca-text-subtle);
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .public-utility-mobile-start__status {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .public-utility-mobile-start__status::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .public-utility-mobile-start__status .results-status-pill {
        flex: 0 0 auto;
        max-width: min(270px, calc(100vw - 56px));
        white-space: normal;
    }

    .public-utility-mobile-start__actions {
        grid-template-columns: 1fr;
    }

    .public-utility-mobile-start__actions .carabout-button {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding-inline: 12px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .about-page > .about-mobile-start,
    .contact-page > .contact-mobile-start,
    .legal-page > .privacy-mobile-start,
    .legal-page > .terms-mobile-start,
    .gdpr-request-page > .gdpr-mobile-start,
    .support-fallback-page > .not-found-mobile-start,
    .support-fallback-page > .error-mobile-start {
        display: grid !important;
        order: 0 !important;
    }

    .about-page > .hero-panel,
    .contact-page > .hero-panel,
    .support-fallback-page > .hero-panel,
    .about-page > .about-release-strip,
    .about-page > .about-overview-card,
    .contact-page > .contact-overview-card,
    .legal-page > .legal-overview-card,
    .gdpr-request-page > .gdpr-overview-card,
    .about-page > .section-header,
    .contact-page > .section-header,
    .legal-page > .section-header,
    .gdpr-request-page > .section-header {
        display: none !important;
    }

    .about-page > .about-investor-nav {
        order: 1 !important;
        position: sticky;
        top: var(--ca-shell-sticky-top);
        z-index: 18;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .about-page > .about-investor-nav > .carabout-card__header {
        display: none;
    }

    .contact-page > .discovery-section-nav-mobile-shell,
    .legal-page > .discovery-section-nav-mobile-shell,
    .gdpr-request-page > .discovery-section-nav-mobile-shell {
        order: 1 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        margin: 0;
    }

    .about-page > .about-deck-section,
    .contact-page > #contact-entry-points,
    .legal-page > .carabout-card,
    .gdpr-request-page > .gdpr-request-grid,
    .support-fallback-page > .support-fallback-grid {
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .about-page .about-timing-panel,
    .about-page .about-operating-grid,
    .about-page .about-compound-panel,
    .about-page .about-roadmap-panel,
    .about-page .about-gtm-panel,
    .about-page .about-release-cta-grid {
        display: none !important;
    }

    .about-page .discovery-feature-panel,
    .contact-page .discovery-feature-panel,
    .legal-page > .carabout-card,
    .gdpr-request-page .gdpr-request-grid > .carabout-card,
    .support-fallback-page .support-fallback-card {
        padding: 14px;
        border-radius: 16px;
        gap: 10px;
    }

    .about-page .carabout-card__title,
    .contact-page .carabout-card__title,
    .legal-page .carabout-card__title,
    .gdpr-request-page .carabout-card__title,
    .support-fallback-page .carabout-card__title {
        font-size: 1rem;
        line-height: 1.22;
    }

    .about-page .carabout-card p,
    .contact-page .carabout-card p,
    .legal-page .carabout-card p,
    .gdpr-request-page .carabout-card p,
    .support-fallback-page .carabout-card p {
        font-size: 0.94rem;
        line-height: 1.5;
    }

    .about-summary-grid,
    .support-overview-grid,
    .contact-help-grid,
    .contact-flow-grid,
    .gdpr-request-grid,
    .support-fallback-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Final V2 client operations mobile command layer. Desktop keeps the existing
   client entry, notification center and order list presentation; phones start
   with action routing before detail-heavy content. */
.client-operations-mobile-start {
    display: none;
}

@media (max-width: 720px) {
    .client-entry-page,
    .notifications-page,
    .order-list-page,
    .order-create-page,
    .order-detail-page,
    .payment-page-shell,
    .chat-page-shell {
        gap: 12px;
    }

    .client-operations-mobile-start {
        display: grid;
        gap: 12px;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        padding: 14px;
        border: 1px solid rgba(0, 164, 243, 0.24);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(7, 16, 23, 0.97), rgba(5, 10, 15, 0.97));
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
    }

    .client-operations-mobile-start__copy,
    .client-operations-mobile-start__status,
    .client-operations-mobile-start__actions {
        display: grid;
        gap: 10px;
        min-width: 0;
    }

    .client-operations-mobile-start__eyebrow {
        color: var(--ca-primary);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .client-operations-mobile-start h2 {
        margin: 0;
        color: var(--ca-text);
        font-size: 1.22rem;
        line-height: 1.18;
    }

    .client-operations-mobile-start p {
        margin: 0;
        color: var(--ca-text-subtle);
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .client-operations-mobile-start__status {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .client-operations-mobile-start__status::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .client-operations-mobile-start__status .results-status-pill {
        flex: 0 0 auto;
        max-width: min(270px, calc(100vw - 56px));
        white-space: normal;
    }

    .client-operations-mobile-start__actions {
        grid-template-columns: 1fr;
    }

    .client-operations-mobile-start__actions .carabout-button {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding-inline: 12px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .client-entry-page > .client-entry-mobile-start,
    .notifications-page > .notifications-mobile-start,
    .order-list-page > .orders-mobile-start,
    .order-create-page > .order-create-mobile-start,
    .order-detail-page > .order-detail-mobile-start,
    .payment-page-shell > .order-payment-mobile-start,
    .chat-page-shell > .order-chat-mobile-start {
        display: grid !important;
        order: 0 !important;
    }

    .client-entry-page > .section-header,
    .notifications-page > .section-header,
    .order-list-page > .section-header,
    .order-create-page > .section-header,
    .order-detail-page > .section-header,
    .payment-page-shell > .section-header,
    .chat-page-shell > .section-header {
        display: none !important;
    }

    .order-detail-page.order-detail-page--workspace-ready > .order-detail-mobile-start,
    .payment-page-shell.payment-page-shell--workspace-ready > .order-payment-mobile-start,
    .chat-page-shell.chat-page-shell--workspace-ready > .order-chat-mobile-start {
        display: none !important;
    }

    .client-orders-page > .order-queue-workspace-mobile-shell-wrapper,
    .service-orders-page > .order-queue-workspace-mobile-shell-wrapper {
        display: none;
    }

    .client-orders-page.order-list-page--workspace-ready > .orders-mobile-start,
    .service-orders-page.order-list-page--workspace-ready > .service-orders-mobile-start {
        display: none !important;
    }

    .client-orders-page.order-list-page--workspace-ready > .order-queue-workspace-mobile-shell-wrapper,
    .service-orders-page.order-list-page--workspace-ready > .order-queue-workspace-mobile-shell-wrapper {
        display: grid;
        order: 0 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .client-entry-page > .client-entry-guide {
        display: none !important;
    }

    .client-entry-page > .client-entry-grid,
    .notifications-page > .notification-center-shell,
    .service-notifications-page > .notification-center-shell,
    .notifications-page > .empty-state,
    .order-list-page > .skeleton-card,
    .order-list-page > .empty-state,
    .order-list-page > .error-state,
    .order-list-page > .order-inline-alert-card,
    .order-list-page > .orders-overview-card,
    .order-list-page > .order-list-grid,
    .order-list-page > .results-pagination,
    .order-list-page > .discovery-continuity-shell,
    .order-create-page > .discovery-continuity-shell,
    .order-create-page > .empty-state,
    .order-create-page > .error-state,
    .order-create-page > .order-inline-alert-card,
    .order-create-page > .order-create-wizard-mobile-shell,
    .order-create-page > .service-detail-layout,
    .order-detail-page > .skeleton-card,
    .order-detail-page > .empty-state,
    .order-detail-page > .error-state,
    .payment-page-shell > .skeleton-card,
    .payment-page-shell > .empty-state,
    .payment-page-shell > .error-state,
    .chat-page-shell > .skeleton-card,
    .chat-page-shell > .empty-state,
    .chat-page-shell > .error-state {
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .client-entry-page > .client-entry-grid,
    .notifications-page > .notification-center-shell,
    .service-notifications-page > .notification-center-shell,
    .notifications-page > .empty-state,
    .order-list-page > .skeleton-card,
    .order-list-page > .empty-state,
    .order-list-page > .error-state {
        order: 1 !important;
    }

    .order-list-page > .discovery-continuity-shell {
        order: 1 !important;
    }

    .client-orders-page.order-list-page--workspace-ready > .discovery-continuity-shell,
    .client-orders-page.order-list-page--workspace-ready > .orders-overview-card,
    .client-orders-page.order-list-page--workspace-ready > .order-list-grid,
    .client-orders-page.order-list-page--workspace-ready > .results-pagination {
        display: none !important;
    }

    .order-create-page > .discovery-continuity-shell {
        order: 1 !important;
    }

    .order-list-page > .orders-overview-card {
        order: 2 !important;
    }

    .order-create-page > .empty-state,
    .order-create-page > .error-state,
    .order-create-page > .order-inline-alert-card,
    .order-create-page > .order-create-wizard-mobile-shell {
        order: 2 !important;
    }

    .order-list-page > .order-list-grid {
        order: 3 !important;
        gap: 10px;
    }

    .order-create-page > .service-detail-layout {
        order: 3 !important;
    }

    .order-list-page > .results-pagination {
        order: 4 !important;
    }

    .client-entry-page > .client-entry-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .client-entry-page .client-entry-card,
    .notifications-page .notification-center__panel--page,
    .service-notifications-page .notification-center__panel--page,
    .notifications-page .empty-state,
    .order-list-page .orders-overview-card,
    .order-list-page .empty-state,
    .order-list-page .error-state,
    .order-list-page .skeleton-card,
    .order-create-page .empty-state,
    .order-create-page .error-state,
    .order-create-page .order-inline-alert-card,
    .order-detail-page > .skeleton-card,
    .order-detail-page > .empty-state,
    .order-detail-page > .error-state,
    .payment-page-shell > .skeleton-card,
    .payment-page-shell > .empty-state,
    .payment-page-shell > .error-state,
    .chat-page-shell > .skeleton-card,
    .chat-page-shell > .empty-state,
    .chat-page-shell > .error-state {
        padding: 14px;
        border-radius: 16px;
        gap: 10px;
    }

    .client-entry-page .client-entry-card .discovery-feature-panel__summary,
    .client-entry-page .client-entry-card .discovery-feature-panel__status,
    .notifications-page .notification-center__panel-header--page .notification-center__panel-meta,
    .notifications-page .notification-center__hero .notification-center__panel-meta,
    .service-notifications-page .notification-center__panel-header--page .notification-center__panel-meta,
    .service-notifications-page .notification-center__hero .notification-center__panel-meta {
        display: none !important;
    }

    .client-entry-page .client-entry-card .discovery-feature-panel__subtitle {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .notifications-page .notification-center__panel--page,
    .service-notifications-page .notification-center__panel--page {
        position: static;
        width: 100%;
        max-width: 100%;
        min-height: 0;
    }

    .notifications-page .notification-center__hero,
    .notifications-page .notification-center__section-header,
    .notifications-page .notification-center__filter-row,
    .notifications-page .notification-center__action-group,
    .notifications-page .notification-center__tabs,
    .service-notifications-page .notification-center__hero,
    .service-notifications-page .notification-center__section-header,
    .service-notifications-page .notification-center__filter-row,
    .service-notifications-page .notification-center__action-group,
    .service-notifications-page .notification-center__tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .notifications-page .notification-center__hero,
    .service-notifications-page .notification-center__hero {
        gap: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .notifications-page .notification-center__action-button,
    .notifications-page .notification-center__filter-input,
    .notifications-page .notification-center__tab,
    .notifications-page .notification-center__text-button,
    .service-notifications-page .notification-center__action-button,
    .service-notifications-page .notification-center__filter-input,
    .service-notifications-page .notification-center__tab,
    .service-notifications-page .notification-center__text-button {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .notifications-page .notification-center__card-grid,
    .notifications-page .notification-center__service-dashboard-grid,
    .service-notifications-page .notification-center__card-grid,
    .service-notifications-page .notification-center__service-dashboard-grid {
        grid-template-columns: 1fr !important;
    }

    .notifications-page .notification-center__section,
    .service-notifications-page .notification-center__section {
        gap: 10px;
    }

    .notifications-page .notification-center__item,
    .service-notifications-page .notification-center__item {
        padding: 12px;
        border-radius: 14px;
    }

    .notifications-page .notification-center-mobile-workspace-shell-wrapper,
    .service-notifications-page .notification-center-mobile-workspace-shell-wrapper {
        display: block;
    }

    .notifications-page .notification-center-mobile-workspace-shell,
    .service-notifications-page .notification-center-mobile-workspace-shell {
        gap: 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .notifications-page .notification-center-mobile-workspace-shell__summary,
    .notifications-page .notification-center-mobile-stage > .mobile-density-disclosure__summary,
    .service-notifications-page .notification-center-mobile-workspace-shell__summary,
    .service-notifications-page .notification-center-mobile-stage > .mobile-density-disclosure__summary {
        align-items: flex-start;
    }

    .notifications-page .notification-center-mobile-workspace-shell__summary,
    .service-notifications-page .notification-center-mobile-workspace-shell__summary {
        padding-inline: 0;
    }

    .notifications-page .notification-center-mobile-workspace-shell__body,
    .service-notifications-page .notification-center-mobile-workspace-shell__body {
        gap: 10px;
    }

    .notifications-page .notification-center__panel--page > .notification-center__page-hero-controls,
    .notifications-page .notification-center__panel--page > .notification-center__section--service-dashboard,
    .notifications-page .notification-center__panel--page > .notification-center__section--filters,
    .notifications-page .notification-center__panel--page > .notification-center__section--detail,
    .notifications-page .notification-center__panel--page > .notification-center__section--diagnostics,
    .service-notifications-page .notification-center__panel--page > .notification-center__page-hero-controls,
    .service-notifications-page .notification-center__panel--page > .notification-center__section--service-dashboard,
    .service-notifications-page .notification-center__panel--page > .notification-center__section--filters,
    .service-notifications-page .notification-center__panel--page > .notification-center__section--detail,
    .service-notifications-page .notification-center__panel--page > .notification-center__section--diagnostics {
        display: none !important;
    }

    .notifications-page .notification-center-mobile-stage__body .notification-center__page-hero-controls,
    .service-notifications-page .notification-center-mobile-stage__body .notification-center__page-hero-controls {
        display: grid !important;
        gap: 10px;
    }

    .notifications-page .notification-center-mobile-stage__body .notification-center__section--detail,
    .notifications-page .notification-center-mobile-stage__body .notification-center__section--diagnostics,
    .service-notifications-page .notification-center-mobile-stage__body .notification-center__section--detail,
    .service-notifications-page .notification-center-mobile-stage__body .notification-center__section--diagnostics {
        display: grid !important;
    }

    .order-list-page .orders-overview-card .order-detail-summary-row {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .order-list-page .orders-overview-card .order-detail-summary-row::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .order-list-page .orders-overview-card .order-detail-summary-row span {
        flex: 0 0 auto;
        max-width: min(220px, calc(100vw - 56px));
    }
}

/* Final V2 service readiness mobile command layer. Catalog, profile and media
   pages are service setup workflows on phones, so they start with the next
   concrete action and keep desktop-only headers/cards out of the first screen. */
@media (max-width: 720px) {
    .service-catalog-page,
    .service-profile-page,
    .service-images-page {
        gap: 12px;
    }

    .service-catalog-page > .section-header,
    .service-profile-page > .section-header,
    .service-images-page > .section-header {
        display: none !important;
    }

    .service-catalog-page > .service-catalog-mobile-start,
    .service-profile-page > .service-profile-mobile-start,
    .service-images-page > .service-images-mobile-start {
        display: grid !important;
        order: 0 !important;
    }

    .service-catalog-page > .service-operations-workspace-mobile-shell,
    .service-profile-page > .service-operations-workspace-mobile-shell,
    .service-images-page > .service-operations-workspace-mobile-shell {
        display: none;
    }

    .service-catalog-page.service-workspace-page--workspace-ready > .service-catalog-mobile-start,
    .service-profile-page.service-workspace-page--workspace-ready > .service-profile-mobile-start,
    .service-images-page.service-workspace-page--workspace-ready > .service-images-mobile-start {
        display: none !important;
    }

    .service-catalog-page.service-workspace-page--workspace-ready > .service-operations-workspace-mobile-shell,
    .service-profile-page.service-workspace-page--workspace-ready > .service-operations-workspace-mobile-shell,
    .service-images-page.service-workspace-page--workspace-ready > .service-operations-workspace-mobile-shell {
        display: grid;
        order: 0;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .service-catalog-page > .discovery-section-nav-mobile-shell,
    .service-profile-page > .discovery-section-nav-mobile-shell,
    .service-images-page > .discovery-section-nav-mobile-shell {
        display: block !important;
        order: 1 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .service-catalog-page > .service-detail-section-nav.discovery-section-nav--desktop,
    .service-profile-page > .service-detail-section-nav.discovery-section-nav--desktop,
    .service-images-page > .service-detail-section-nav.discovery-section-nav--desktop {
        display: none !important;
    }

    .service-catalog-page > .service-detail-layout,
    .service-profile-page > .service-detail-layout,
    .service-images-page > .service-detail-layout {
        order: 2 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        gap: 12px;
    }

    .service-catalog-page .service-detail-main,
    .service-catalog-page .service-detail-sidebar,
    .service-profile-page .service-detail-main,
    .service-profile-page .service-detail-sidebar,
    .service-images-page .service-detail-main,
    .service-images-page .service-detail-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .service-catalog-page .service-detail-sidebar,
    .service-profile-page .service-detail-sidebar,
    .service-images-page .service-detail-sidebar {
        display: grid !important;
        position: static !important;
        gap: 12px;
    }

    .service-catalog-page.service-workspace-page--workspace-ready .service-detail-main,
    .service-profile-page.service-workspace-page--workspace-ready .service-detail-main,
    .service-images-page.service-workspace-page--workspace-ready .service-detail-main {
        display: grid;
        gap: 12px;
        order: 0 !important;
    }

    .service-catalog-page.service-workspace-page--workspace-ready .service-detail-sidebar,
    .service-profile-page.service-workspace-page--workspace-ready .service-detail-sidebar,
    .service-images-page.service-workspace-page--workspace-ready .service-detail-sidebar {
        order: 1 !important;
    }

    .service-catalog-page .service-detail-sidebar {
        order: -1 !important;
    }

    .service-profile-page .service-detail-sidebar,
    .service-images-page .service-detail-sidebar {
        order: 0 !important;
    }

    .service-catalog-page .service-dashboard-grid--stats,
    .service-profile-page .service-dashboard-grid--stats,
    .service-images-page .service-dashboard-grid--stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-catalog-page .stat-tile,
    .service-profile-page .stat-tile,
    .service-images-page .stat-tile {
        min-height: 0;
        padding: 12px;
        border-radius: 16px;
    }

    .service-catalog-page .stat-tile p,
    .service-profile-page .stat-tile p,
    .service-images-page .stat-tile p {
        display: none !important;
    }

    .service-catalog-page .service-catalog-editor-card,
    .service-catalog-page .service-catalog-management-card,
    .service-catalog-page .service-catalog-category-card,
    .service-profile-page .carabout-card,
    .service-images-page .carabout-card {
        padding: 14px;
        border-radius: 16px;
        gap: 10px;
    }

    .service-catalog-page .service-catalog-row {
        gap: 10px;
        padding: 12px;
        border-radius: 14px;
    }

    .service-catalog-page .service-catalog-row__actions--desktop {
        display: none !important;
    }

    .service-catalog-page .service-catalog-row__mobile-primary,
    .service-catalog-page .service-catalog-row__mobile-actions {
        display: grid !important;
    }

    .service-catalog-page .service-form-grid,
    .service-profile-page .service-form-grid,
    .service-images-page .service-image-upload-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-catalog-page .service-catalog-row__mobile-primary .carabout-button,
    .service-catalog-page .service-catalog-row__mobile-actions .carabout-button,
    .service-catalog-page .carabout-card__actions .carabout-button,
    .service-profile-page .carabout-card__actions .carabout-button,
    .service-images-page .carabout-card__actions .carabout-button {
        width: 100%;
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .service-catalog-page .service-catalog-editing-banner {
        padding: 12px;
        border-radius: 14px;
    }

    .service-catalog-page .order-workspace-mobile-shell__actions,
    .service-profile-page .order-workspace-mobile-shell__actions,
    .service-images-page .order-workspace-mobile-shell__actions {
        grid-template-columns: 1fr;
    }

    .service-catalog-page.service-workspace-page--workspace-ready #service-catalog-editor {
        order: 0;
    }

    .service-catalog-page.service-workspace-page--workspace-ready #service-catalog-overview {
        order: 1;
    }

    .service-catalog-page.service-workspace-page--workspace-ready #service-catalog-templates {
        order: 2;
    }

    .service-catalog-page.service-workspace-page--workspace-ready #service-catalog-list {
        order: 3;
    }

    .service-profile-page.service-workspace-page--workspace-ready #service-profile-basics {
        order: 0;
    }

    .service-profile-page.service-workspace-page--workspace-ready #service-profile-description {
        order: 1;
    }

    .service-profile-page.service-workspace-page--workspace-ready #service-profile-hours {
        order: 2;
    }

    .service-profile-page.service-workspace-page--workspace-ready #service-profile-visuals {
        order: 3;
    }

    .service-profile-page.service-workspace-page--workspace-ready #service-profile-reviews {
        order: 4;
    }

    .service-profile-page.service-workspace-page--workspace-ready #service-profile-overview {
        order: 5;
    }

    .service-images-page.service-workspace-page--workspace-ready #service-images-upload {
        order: 0;
    }

    .service-images-page.service-workspace-page--workspace-ready #service-images-gallery {
        order: 1;
    }

    .service-images-page.service-workspace-page--workspace-ready #service-images-logo {
        order: 2;
    }

    .service-images-page.service-workspace-page--workspace-ready #service-images-preview {
        order: 3;
    }

    .service-images-page.service-workspace-page--workspace-ready #service-images-overview {
        order: 4;
    }
}

.auth-mobile-start {
    display: none;
}

.auth-mobile-start__copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.auth-mobile-start__eyebrow {
    color: var(--ca-blue);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.auth-mobile-start h2,
.auth-mobile-start p {
    margin: 0;
}

.auth-mobile-start h2 {
    color: var(--ca-text);
    font-size: 1.12rem;
    line-height: 1.18;
}

.auth-mobile-start p {
    color: var(--ca-text-muted);
    font-size: 0.86rem;
    line-height: 1.35;
}

.auth-mobile-start__status {
    display: flex;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.auth-mobile-start__status::-webkit-scrollbar {
    display: none;
}

.auth-mobile-start__actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 8px;
}

@media (max-width: 720px) {
    .client-auth-page,
    .service-auth-page {
        gap: 12px;
        overflow-x: hidden;
        padding-inline: 12px;
    }

    .client-auth-page > .auth-mobile-start,
    .service-auth-page > .auth-mobile-start {
        display: grid !important;
        order: 0 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        gap: 10px;
        padding: 14px;
        border: 1px solid rgba(79, 166, 255, 0.28);
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(10, 18, 28, 0.98), rgba(4, 8, 12, 0.96));
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    }

    .client-auth-page > .section-header,
    .service-auth-page > .section-header {
        display: none !important;
    }

    .client-auth-page > .client-auth-grid,
    .service-auth-page > .service-auth-grid,
    .service-auth-page > .service-detail-layout {
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
        gap: 12px;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .client-auth-page > .client-auth-grid,
    .service-auth-page > .service-auth-grid {
        order: 1 !important;
    }

    .service-auth-page > .discovery-section-nav-mobile-shell {
        display: block !important;
        order: 1 !important;
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        align-self: center;
    }

    .service-auth-page > .service-detail-section-nav.discovery-section-nav--desktop {
        display: none !important;
    }

    .service-auth-page > .service-detail-layout {
        order: 2 !important;
    }

    .service-auth-page .service-detail-main,
    .service-auth-page .service-detail-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .client-auth-card,
    .service-auth-card {
        padding: 14px !important;
        border-radius: 16px !important;
        gap: 10px !important;
    }

    .service-auth-card__brand {
        display: none !important;
    }

    .client-auth-page .client-auth-form-grid,
    .service-auth-page .service-auth-form-grid,
    .client-auth-page .order-form-grid,
    .service-auth-page .order-form-grid,
    .service-auth-page .service-form-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .auth-mobile-start__actions .carabout-button,
    .client-auth-page .carabout-card__actions .carabout-button,
    .service-auth-page .carabout-card__actions .carabout-button {
        width: 100%;
        min-width: 0;
        min-height: 42px;
        padding-inline: 8px;
        border-radius: 14px;
        font-size: 0.8rem;
        line-height: 1.15;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .client-auth-page .auth-mobile-context-shell,
    .service-auth-page .auth-mobile-context-shell {
        gap: 8px;
    }
}
