:root {
    --brand-green: #08B957;
    --brand-green-dark: #069B49;
    --brand-navy: #062B45;
    --text-main: #17212B;
    --text-muted: #6B7A86;
    --background: #F5F7F8;
    --surface: #FFFFFF;
    --border: #DCE3E7;
    --shadow-sm: 0 1px 2px rgba(6, 43, 69, 0.05);
    --shadow-md: 0 10px 28px rgba(6, 43, 69, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text-main);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: var(--brand-green-dark);
    font-weight: 700;
    text-decoration: none;
}

img {
    max-width: 100%;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    color: var(--brand-navy);
    font-size: clamp(1.75rem, 6vw, 2.45rem);
    line-height: 1.08;
    margin-bottom: 10px;
}

h2 {
    color: var(--brand-navy);
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: 6px;
}

p {
    margin-bottom: 1rem;
}

.muted {
    color: var(--text-muted);
}

.eyebrow {
    color: var(--brand-green-dark);
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.brand {
    align-items: center;
    display: inline-flex;
    line-height: 0;
}

.brand img {
    display: block;
    height: auto;
    width: 145px;
}

.avatar {
    align-items: center;
    background: rgba(8, 185, 87, 0.12);
    border: 1px solid rgba(8, 185, 87, 0.2);
    border-radius: 999px;
    color: var(--brand-green-dark);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.85rem;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    object-fit: cover;
    width: 36px;
}

.avatar-lg {
    font-size: 1.4rem;
    height: 84px;
    width: 84px;
}

.user-chip,
.header-user-actions,
.member-row-main,
.profile-photo-row {
    align-items: center;
    display: flex;
    gap: 10px;
}

.user-chip {
    color: var(--text-main);
    font-size: 0.9rem;
    min-width: 0;
}

.user-chip span:last-child {
    display: none;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.card-compact {
    border-radius: var(--radius-sm);
    padding: 12px;
}

.notice {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    padding: 12px 14px;
}

.app-version-mobile {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    margin: 28px 0 0;
    text-align: center;
}

.status-success {
    background: rgba(8, 185, 87, 0.1);
    border-color: rgba(8, 185, 87, 0.25);
    color: var(--brand-green-dark);
    font-weight: 700;
}

.status-warning {
    background: #FFF8E5;
    border-color: #F4D47C;
    color: #7A4E00;
    font-weight: 700;
}

.status-danger {
    background: #FEF3F2;
    border-color: #FECDCA;
    color: #B42318;
    font-weight: 700;
}

.badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 800;
    min-height: 28px;
    padding: 5px 10px;
    white-space: nowrap;
}

.badge-neutral {
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.badge-success {
    background: rgba(8, 185, 87, 0.12);
    color: var(--brand-green-dark);
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    line-height: 1.15;
    min-height: 44px;
    padding: 10px 14px;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-primary {
    background: var(--brand-green);
    color: var(--surface);
}

.btn-primary:hover {
    background: var(--brand-green-dark);
}

.btn-secondary {
    background: rgba(8, 185, 87, 0.1);
    border-color: rgba(8, 185, 87, 0.18);
    color: var(--brand-green-dark);
}

.btn-ghost {
    background: transparent;
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.btn-ghost:hover {
    background: var(--text-muted);
    border-color: var(--text-muted);
    color: white;
}

.btn-sm {
    font-size: 0.88rem;
    min-height: 36px;
    padding: 7px 11px;
}

.btn-block {
    max-width: none;
    width: 100%;
}

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

.colour-grid {
    align-items: start;
}

.colour-field {
    gap: 8px;
}

.colour-input-row {
    display: grid;
    gap: 8px;
    grid-template-columns: 64px minmax(0, 1fr);
}

.colour-code {
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-weight: 800;
}

.colour-code[readonly] {
    background: var(--background);
}

label {
    color: var(--text-main);
    display: grid;
    font-weight: 700;
    gap: 7px;
}

input,
select,
textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    min-height: 46px;
    padding: 11px 12px;
    width: 100%;
}

input[type="color"] {
    cursor: pointer;
    min-height: 46px;
    padding: 4px;
}

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

input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(8, 185, 87, 0.15);
    outline: none;
}

.checkbox-row {
    align-items: center;
    display: flex;
    font-weight: 600;
    gap: 10px;
}

.checkbox-row input {
    min-height: auto;
    width: auto;
}

.form-error,
.field-error {
    color: #B42318;
    font-size: 0.88rem;
    font-weight: 700;
}

.public-shell,
.auth-shell {
    margin: 0 auto;
    max-width: 1120px;
    min-height: 100vh;
    padding: 16px;
}

.public-header,
.auth-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 8px 0 22px;
}

.public-nav {
    align-items: center;
    display: flex;
    gap: 12px;
}

.nav-link {
    color: var(--text-muted);
}

.public-main {
    padding: 24px 0;
}

.landing-page {
    display: grid;
    gap: 34px;
}

.landing-hero {
    align-items: center;
    display: grid;
    gap: 24px;
    padding: 22px 0 8px;
}

.landing-hero-modern {
    background:
        radial-gradient(circle at 88% 18%, rgba(8, 185, 87, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(8, 185, 87, 0.05));
    border: 1px solid rgba(220, 227, 231, 0.72);
    border-radius: 28px;
    gap: 18px;
    overflow: hidden;
    padding: 22px 16px 18px;
}

.landing-hero-copy {
    max-width: 640px;
}

.landing-hero h1 {
    font-size: clamp(2.1rem, 9vw, 4rem);
    max-width: 720px;
}

.landing-lead {
    color: var(--text-muted);
    font-size: 1.08rem;
    max-width: 620px;
}

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

.device-hero,
.mockup-pair {
    isolation: isolate;
    margin-inline: auto;
    max-width: 600px;
    position: relative;
    transform: translate3d(0, 0, 0) scale(1);
    transition: transform 750ms ease-in-out;
    will-change: transform;
    width: 100%;
}

.device-hero {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 330px;
    padding: 10px 0 42px;
}

.device-hero-laptop,
.device-hero-phone,
.mockup-laptop,
.mockup-phone {
    display: block;
    height: auto;
    user-select: none;
}

.device-hero-laptop {
    filter: drop-shadow(0 22px 42px rgba(6, 43, 69, 0.16));
    position: relative;
    width: min(100%, 600px);
    z-index: 1;
}

.device-hero-phone {
    bottom: 10px;
    filter: drop-shadow(0 18px 28px rgba(6, 43, 69, 0.2));
    left: clamp(8px, 5vw, 44px);
    position: absolute;
    width: clamp(120px, 30%, 180px);
    z-index: 2;
}

.device-hero:hover,
.mockup-pair:hover {
    transform: translate3d(0, -6px, 0) scale(1.025);
}

.device-hero::before,
.mockup-pair::before {
    background:
        radial-gradient(circle at 72% 20%, rgba(8, 185, 87, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(8, 185, 87, 0.12), rgba(6, 43, 69, 0.08));
    border-radius: 28px;
    content: "";
    inset: 8% 2% 10% 8%;
    position: absolute;
    z-index: -1;
}

.landing-phone {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.phone-top {
    align-items: center;
    display: flex;
    gap: 12px;
}

.phone-top img {
    height: 44px;
    width: 44px;
}

.phone-top strong,
.phone-top span,
.phone-item span,
.phone-item strong,
.phone-total span,
.phone-total strong {
    display: block;
}

.phone-top span,
.phone-item span,
.phone-total span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.phone-item,
.phone-total {
    align-items: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 12px;
}

.phone-total {
    background: rgba(8, 185, 87, 0.1);
    border-color: rgba(8, 185, 87, 0.2);
}

.benefits-strip {
    display: grid;
    gap: 10px;
}

.benefits-strip span {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    color: var(--brand-navy);
    font-weight: 800;
    padding: 10px 14px;
    text-align: center;
}

.landing-section {
    display: grid;
    gap: 16px;
    padding-top: 10px;
}

.feature-showcase {
    padding-top: 18px;
}

.mockup-section {
    align-items: center;
    background:
        radial-gradient(circle at 88% 12%, rgba(8, 185, 87, 0.11), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 247, 248, 0.82));
    border: 1px solid rgba(220, 227, 231, 0.72);
    border-radius: 28px;
    display: grid;
    gap: 20px;
    overflow: hidden;
    padding: 24px 16px;
}

.mockup-section-alt {
    background:
        radial-gradient(circle at 12% 14%, rgba(8, 185, 87, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(245, 247, 248, 0.82), rgba(255, 255, 255, 0.82));
}

.mockup-copy {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.mockup-copy h2 {
    font-size: clamp(1.55rem, 5vw, 2.35rem);
    margin-bottom: 0;
}

.mockup-copy p {
    max-width: 560px;
}

.mockup-pair {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 330px;
    padding: 10px 0 42px;
}

.mockup-laptop {
    filter: drop-shadow(0 22px 42px rgba(6, 43, 69, 0.14));
    position: relative;
    width: min(100%, 600px);
    z-index: 1;
}

.mockup-phone {
    bottom: 12px;
    filter: drop-shadow(0 18px 28px rgba(6, 43, 69, 0.18));
    position: absolute;
    width: clamp(120px, 30%, 180px);
    z-index: 2;
}

.mockup-pair-left .mockup-phone {
    left: clamp(8px, 5vw, 44px);
    right: auto;
}

.mockup-pair-left::before {
    background:
        radial-gradient(circle at 24% 22%, rgba(8, 185, 87, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(6, 43, 69, 0.08), rgba(8, 185, 87, 0.12));
    inset: 8% 8% 10% 2%;
}

.landing-section-heading {
    max-width: 620px;
}

.landing-section-heading h2,
.final-cta h2 {
    font-size: clamp(1.55rem, 5vw, 2.35rem);
}

.landing-grid,
.steps-grid,
.pricing-grid,
.testimonial-grid {
    display: grid;
    gap: 12px;
}

.landing-card,
.step-card,
.price-card,
.testimonial-card {
    padding: 18px;
}

.landing-card h3,
.step-card h3,
.price-card h3 {
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.landing-card p,
.step-card p,
.price-card p,
.testimonial-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.step-card span {
    align-items: center;
    background: var(--brand-green);
    border-radius: 999px;
    color: var(--surface);
    display: inline-flex;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    margin-bottom: 12px;
    width: 34px;
}

.price-card strong {
    color: var(--brand-navy);
    display: block;
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.price-card-featured {
    border-color: rgba(8, 185, 87, 0.45);
    box-shadow: var(--shadow-md);
}

.testimonial-card {
    display: grid;
    gap: 12px;
}

.testimonial-card strong {
    color: var(--brand-navy);
}

.final-cta {
    display: grid;
    gap: 10px;
    justify-items: start;
    padding: 22px;
}

.auth-shell {
    max-width: 760px;
}

.auth-header {
    justify-content: center;
}

.auth-main {
    display: grid;
    padding: 18px 0 42px;
    place-items: center;
}

.auth-card {
    display: grid;
    gap: 24px;
    padding: 24px;
    width: 100%;
}

.auth-switch {
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: center;
}

.dashboard-shell {
    min-height: 100vh;
}

.workspace {
    min-width: 0;
}

.app-header {
    background: rgba(245, 247, 248, 0.94);
    border-bottom: 1px solid var(--border);
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.app-header-top,
.business-switcher,
.page-hero,
.module-list article {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.business-switcher {
    margin-top: 12px;
}

.business-switcher strong {
    color: var(--brand-navy);
    display: block;
}

.mobile-nav {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
    display: none;
}

.mobile-nav-item,
.nav-item {
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 10px;
    text-align: center;
}

.mobile-nav-item {
    flex: 0 0 auto;
    min-width: 82px;
    white-space: nowrap;
}

.mobile-nav-item.is-active,
.nav-item.is-active {
    background: rgba(8, 185, 87, 0.12);
    color: var(--brand-green-dark);
}

.app-main {
    margin: 0 auto;
    max-width: 1040px;
    padding: 16px 12px 88px;
}

.page-hero {
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 20px;
}

.page-hero p {
    margin-bottom: 0;
}

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

.stat-card {
    padding: 16px;
}

.stat-card span {
    color: var(--text-muted);
    display: block;
    font-weight: 700;
}

.stat-card strong {
    color: var(--brand-navy);
    display: block;
    font-size: 2rem;
    line-height: 1.1;
}

.dashboard-card-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 16px;
}

.dashboard-metric {
    padding: 16px;
}

.dashboard-metric span {
    color: var(--text-muted);
    display: block;
    font-weight: 800;
}

.dashboard-metric strong {
    color: var(--brand-navy);
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 6px;
}

.dashboard-metric p {
    margin: 8px 0 0;
}

.dashboard-main-grid {
    display: grid;
    gap: 12px;
}

.dashboard-focus {
    align-items: start;
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
    padding: 18px;
}

.dashboard-focus h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.setup-progress {
    display: grid;
    gap: 8px;
}

.setup-progress span:first-child {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.setup-progress-track {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 999px;
    height: 12px;
    overflow: hidden;
}

.setup-progress-track span {
    background: var(--brand-green);
    border-radius: inherit;
    display: block;
    height: 100%;
}

.setup-checklist {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    padding: 10px;
}

.setup-step {
    align-items: center;
    border-radius: 12px;
    color: var(--text-main);
    display: flex;
    gap: 12px;
    padding: 10px;
}

.setup-step:hover {
    background: var(--background);
}

.setup-step span {
    align-items: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.setup-step.is-complete span {
    background: rgba(8, 185, 87, 0.12);
    border-color: rgba(8, 185, 87, 0.22);
    color: var(--brand-green-dark);
    padding: 0 10px;
    width: auto;
}

.setup-step strong,
.setup-step small {
    display: block;
}

.setup-step small {
    color: var(--text-muted);
    font-weight: 600;
}

.dashboard-panel {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.dashboard-panel h2 {
    margin-bottom: 0;
}

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

.dashboard-list-row {
    align-items: flex-start;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px;
    text-decoration: none;
}

.dashboard-list-row strong,
.dashboard-list-row span {
    display: block;
}

.dashboard-list-row span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.report-bars {
    display: grid;
    gap: 12px;
}

.report-bar-row {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 82px minmax(0, 1fr) auto;
}

.report-bar-row span,
.report-bar-row strong {
    font-size: 0.9rem;
}

.report-bar-track {
    background: var(--background);
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.report-bar-track span {
    background: var(--brand-green);
    border-radius: inherit;
    display: block;
    height: 100%;
}

.dashboard-list-meta {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.quick-action-grid {
    display: grid;
    gap: 10px;
}

.admin-plan-form {
    align-items: end;
    display: grid;
    gap: 10px;
    width: 100%;
}

.admin-business-list {
    display: grid;
    gap: 12px;
}

.admin-business-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: grid;
    gap: 12px;
    padding: 14px;
}

.admin-business-main {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.admin-business-main h3 {
    color: var(--brand-navy);
    margin-bottom: 4px;
}

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

.admin-count-grid span {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 10px;
}

.admin-count-grid strong {
    color: var(--brand-navy);
    display: block;
    font-size: 1.25rem;
}

.admin-safe-details {
    display: grid;
    gap: 6px;
}

.admin-safe-details p {
    margin: 0;
}

.masked-credentials,
.settings-toggle-list {
    display: grid;
    gap: 8px;
}

.masked-credentials {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
}

.masked-credentials p {
    margin: 0;
}

.checkbox-row {
    align-items: center;
    display: flex;
    gap: 10px;
}

.checkbox-row input {
    width: auto;
}

.checkbox-row.is-disabled {
    color: var(--text-muted);
}

.module-list {
    display: grid;
    gap: 12px;
}

.module-list article {
    align-items: flex-start;
    padding: 16px;
}

.module-list p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.profile-page {
    width: 100%;
}

.page-intro {
    margin-bottom: 16px;
}

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

.form-section {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.form-section-header {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.form-section-header h2,
.form-section h2 {
    margin-bottom: 0;
}

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

.input-prefix {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    overflow: hidden;
}

.input-prefix:focus-within {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(8, 185, 87, 0.15);
}

.input-prefix span {
    color: var(--text-muted);
    font-weight: 800;
    padding-left: 12px;
}

.input-prefix input {
    border: 0;
    box-shadow: none;
}

.input-prefix input:focus {
    box-shadow: none;
}

.helper-text {
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.logo-preview {
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: inline-flex;
    min-height: 76px;
    padding: 12px;
    width: fit-content;
}

.logo-preview img {
    display: block;
    max-height: 56px;
    max-width: 220px;
}

.form-actions {
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    padding: 2px 0 12px;
    position: sticky;
}

.form-actions .btn {
    box-shadow: var(--shadow-md);
    width: 100%;
}

.public-catalogue {
    margin: 0 auto;
    max-width: 720px;
    padding: 24px;
}

.catalogue-page {
    background: var(--background);
    border-radius: 24px;
    display: grid;
    gap: 16px;
    margin: 0 auto;
    max-width: 920px;
    padding: 12px;
}

.catalogue-hero {
    display: grid;
    gap: 18px;
    padding: 22px;
}

.catalogue-logo-wrap {
    align-items: center;
    display: flex;
}

.catalogue-logo {
    display: block;
    max-height: 220px;
    max-width: 220px;
}

.catalogue-logo-placeholder {
    align-items: center;
    background: rgba(8, 185, 87, 0.12);
    background: color-mix(in srgb, var(--brand-green) 12%, var(--surface));
    border-radius: 18px;
    color: var(--brand-green-dark);
    display: flex;
    font-size: 2rem;
    font-weight: 900;
    height: 86px;
    justify-content: center;
    width: 86px;
}

.catalogue-hero-content h1 {
    margin-bottom: 10px;
}

.catalogue-meta {
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.catalogue-meta span {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 7px 10px;
}

.catalogue-actions,
.catalogue-product-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalogue-product-actions .btn {
    min-height: 36px;
}

.catalogue-product-actions form {
    display: flex;
}

.catalogue-product-actions .btn-ghost {
    background: var(--surface);
}

.catalogue-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 14px;
}

.catalogue-social-links a {
    align-items: center;
    background: rgba(8, 185, 87, 0.1);
    background: color-mix(in srgb, var(--brand-green) 10%, var(--surface));
    border: 1px solid rgba(8, 185, 87, 0.24);
    border: 1px solid color-mix(in srgb, var(--brand-green) 24%, var(--border));
    border-radius: 50%;
    color: var(--brand-green-dark);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    padding: 0;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    width: 42px;
}

.catalogue-social-links svg {
    fill: currentColor;
    height: 20px;
    width: 20px;
}

.catalogue-social-links a:hover {
    background: var(--brand-green);
    color: var(--surface);
    transform: translateY(-1px);
}

.catalogue-category-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
}

.catalogue-products {
    display: grid;
    gap: 22px;
}

.catalogue-category {
    scroll-margin-top: 20px;
}

.catalogue-category-heading {
    align-items: baseline;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.catalogue-category-heading h2 {
    font-size: 1.22rem;
    margin-bottom: 0;
}

.catalogue-product-list {
    display: grid;
    gap: 12px;
}

.catalogue-product-card {
    display: grid;
    gap: 14px;
    padding: 14px;
}

.catalogue-product-image {
    align-items: center;
    aspect-ratio: 16 / 10;
    background: rgba(8, 185, 87, 0.1);
    background: color-mix(in srgb, var(--brand-green) 10%, var(--surface));
    border-radius: var(--radius-sm);
    color: var(--brand-green-dark);
    display: flex;
    font-size: 2rem;
    font-weight: 900;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.catalogue-product-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
    width: 100%;
}
.catalogue-product-image img:hover {
    transform: scale(1.06);
}

.catalogue-product-body {
    display: grid;
    gap: 14px;
}

.catalogue-product-title {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.catalogue-product-title h3 {
    color: var(--brand-navy);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.catalogue-product-title p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.catalogue-product-title strong {
    color: var(--brand-navy);
    flex: 0 0 auto;
    font-size: 1.02rem;
}

.catalogue-info {
    padding: 18px;
}

.catalogue-info p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.catalogue-footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    padding: 12px 8px 28px;
    text-align: center;
}

.catalogue-footer-brand {
    align-items: center;
    color: var(--brand-navy);
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.catalogue-footer-brand span {
    color: var(--brand-navy);
    font-weight: 900;
}

.catalogue-footer-logo {
    display: block;
    height: auto;
    margin-top: 2px;
    max-width: 118px;
    opacity: 0.78;
}

.catalogue-footer.is-visible-branding {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-top: 2px;
    padding: 16px;
}

.catalogue-footer.is-subtle-branding .catalogue-footer-brand span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.catalogue-footer.is-subtle-branding .catalogue-footer-logo {
    max-width: 96px;
    opacity: 0.68;
}

.catalogue-page.is-tenant-branded .catalogue-hero {
    justify-items: center;
    text-align: center;
}

.catalogue-page.is-tenant-branded .catalogue-logo-wrap,
.catalogue-page.is-tenant-branded .catalogue-actions,
.catalogue-page.is-tenant-branded .catalogue-meta,
.catalogue-page.is-tenant-branded .catalogue-social-links {
    justify-content: center;
}

.catalogue-page.is-tenant-branded .catalogue-logo {
    max-height: 260px;
    max-width: min(78vw, 300px);
}

.catalogue-sticky-basket {
    align-items: center;
    background: var(--surface);
    background: color-mix(in srgb, var(--surface) 94%, var(--brand-green) 6%);
    bottom: 10px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px;
    position: sticky;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.catalogue-sticky-basket span {
    color: var(--brand-navy);
    font-weight: 800;
}

.basket-list {
    display: grid;
    gap: 12px;
}

.basket-row {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 108px auto;
    padding: 14px;
}

.basket-product-main {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.basket-thumb {
    align-items: center;
    background: rgba(8, 185, 87, 0.1);
    background: color-mix(in srgb, var(--brand-green) 10%, var(--surface));
    border-radius: var(--radius-sm);
    color: var(--brand-green-dark);
    display: flex;
    flex: 0 0 68px;
    font-size: 1.25rem;
    font-weight: 900;
    height: 68px;
    justify-content: center;
    overflow: hidden;
    width: 68px;
}

.basket-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.basket-quantity input {
    text-align: center;
}

.basket-line-total {
    color: var(--brand-navy);
    white-space: nowrap;
}

.basket-row h2 {
    margin-bottom: 4px;
}

.basket-row p {
    margin-bottom: 0;
}

.basket-total {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 16px;
}

.basket-total strong {
    color: var(--brand-navy);
    font-size: 1.35rem;
}

.public-order-page {
    max-width: 860px;
}

.public-order-hero {
    text-align: left;
}

.public-order-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.public-order-page .form-actions {
    gap: 10px;
    justify-content: flex-start;
    padding: 0;
    position: static;
}

.public-order-page .form-actions .btn {
    box-shadow: none;
}

.order-summary-card {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.order-summary-card .section-heading-row strong {
    color: var(--brand-navy);
    font-size: 1.3rem;
}

.order-summary-list {
    border-top: 1px solid var(--border);
    display: grid;
    gap: 10px;
    padding-top: 12px;
}

.order-summary-row,
.order-summary-total,
.confirmation-summary {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.order-summary-row span,
.order-summary-total span,
.confirmation-summary span,
.public-payment-total span {
    color: var(--text-muted);
    font-weight: 700;
}

.order-summary-row strong,
.order-summary-total strong,
.confirmation-summary strong {
    color: var(--brand-navy);
    white-space: nowrap;
}

.order-summary-total {
    background: rgba(8, 185, 87, 0.1);
    background: color-mix(in srgb, var(--brand-green) 10%, var(--surface));
    border: 1px solid rgba(8, 185, 87, 0.24);
    border: 1px solid color-mix(in srgb, var(--brand-green) 24%, var(--border));
    border-radius: var(--radius-sm);
    padding: 12px;
}

.confirmation-summary {
    padding: 18px;
}

.confirmation-summary > div {
    display: grid;
    gap: 4px;
}

.confirmation-summary strong {
    font-size: 1.25rem;
}

.section-heading-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: baseline;
    justify-content: space-between;
}

.advanced-panel {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.advanced-panel summary {
    color: var(--brand-navy);
    cursor: pointer;
    font-weight: 900;
}

.advanced-panel .form-grid {
    margin-top: 14px;
}

.quote-items-stack {
    display: grid;
    gap: 1rem;
}

.quote-line-grid {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--background);
}

.line-item-tools {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 12px;
}

.line-items-summary {
    align-items: center;
    background: rgba(8, 185, 87, 0.1);
    border: 1px solid rgba(8, 185, 87, 0.2);
    border-radius: 999px;
    color: var(--brand-navy);
    display: inline-flex;
    gap: 10px;
    min-height: 40px;
    padding: 7px 12px;
}

.line-items-summary span {
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.line-items-summary strong {
    white-space: nowrap;
}

.next-step-card {
    align-items: start;
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
    padding: 18px;
}

.next-step-card h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

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

.help-toolbar {
    align-items: end;
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px;
}

.help-search-form,
.help-language-form {
    display: grid;
    gap: 10px;
}

.help-grid {
    display: grid;
    gap: 12px;
}

.help-card {
    color: var(--text-main);
    display: grid;
    gap: 10px;
    justify-items: start;
    padding: 18px;
}

.help-card h2 {
    margin-bottom: 0;
}

.help-card p {
    margin-bottom: 0;
}

.help-layout {
    display: grid;
    gap: 12px;
}

.help-article {
    padding: 22px;
}

.help-article h1,
.help-article h2,
.help-article h3 {
    color: var(--brand-navy);
}

.help-article h1 {
    font-size: 1.65rem;
}

.help-article h2 {
    border-top: 1px solid var(--border);
    margin-top: 24px;
    padding-top: 18px;
}

.help-article p,
.help-article li {
    color: var(--text-main);
}

.help-article ul,
.help-article ol {
    margin-top: 0;
    padding-left: 1.35rem;
}

.help-article li + li {
    margin-top: 6px;
}

.help-article strong {
    color: var(--brand-navy);
}

.help-related {
    align-self: start;
    display: grid;
    gap: 10px;
    padding: 16px;
}

.help-related-list {
    display: grid;
    gap: 6px;
}

.help-related-list a {
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    padding: 9px 10px;
}

.help-related-list a.is-active,
.help-related-list a:hover {
    background: rgba(8, 185, 87, 0.12);
    color: var(--brand-green-dark);
}

.quote-document {
    display: grid;
    gap: 1.2rem;
}

.quote-document-header,
.quote-table-row,
.money-summary p {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
}

.quote-document-header strong {
    color: var(--brand-navy);
    font-size: 1.35rem;
}

.quote-table {
    display: grid;
    gap: 0.75rem;
}

.quote-table-row {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.quote-table-row span,
.money-summary strong {
    white-space: nowrap;
}

.money-summary {
    display: grid;
    gap: 0.35rem;
    max-width: 360px;
    margin-left: auto;
    width: 100%;
}

.money-summary p {
    margin: 0;
}

.money-summary .total {
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--brand-green);
    color: var(--brand-navy);
    font-size: 1.15rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

@media (min-width: 760px) {
    .landing-hero {
        grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
        padding: 44px 0 18px;
    }

    .landing-hero-modern {
        grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
        padding: 46px 28px 34px;
    }

    .device-hero {
        min-height: 420px;
    }

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

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

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

    .mockup-section {
        grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
        padding: 34px 28px;
    }

    .mockup-section-alt .mockup-copy {
        order: 2;
    }

    .mockup-section-alt .mockup-pair {
        order: 1;
    }

    .mockup-pair {
        min-height: 410px;
    }

    .final-cta {
        align-items: center;
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 30px;
    }

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

    .dashboard-metric-wide {
        grid-column: span 2;
    }

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

    .dashboard-focus {
        align-items: center;
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr) auto;
    }

    .next-step-card {
        align-items: center;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .dashboard-actions {
        grid-column: 1 / -1;
    }

    .quick-action-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .admin-plan-form {
        grid-template-columns: minmax(130px, 1fr) minmax(120px, 1fr) auto;
        max-width: 520px;
    }

    .quote-line-grid {
        grid-template-columns: minmax(160px, 1.25fr) minmax(180px, 1.5fr) 80px 120px 120px;
        align-items: end;
    }
}

.public-logo {
    display: block;
    margin-bottom: 18px;
    max-height: 72px;
    max-width: 240px;
}

.profile-summary {
    border-top: 1px solid var(--border);
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding-top: 18px;
}

.profile-summary p {
    margin-bottom: 0;
}

.hero-actions,
.row-actions,
.save-actions {
    display: flex;
    gap: 10px;
}

.filter-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    overflow-x: auto;
    padding: 10px;
}

.filter-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    flex: 0 0 auto;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 8px 12px;
}

.filter-chip.is-active {
    background: rgba(8, 185, 87, 0.12);
    background: color-mix(in srgb, var(--brand-green) 12%, var(--surface));
    border-color: rgba(8, 185, 87, 0.22);
    border-color: color-mix(in srgb, var(--brand-green) 28%, var(--border));
    color: var(--brand-green-dark);
}

.list-stack,
.product-list {
    display: grid;
    gap: 12px;
}

.list-row,
.product-row {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 14px;
}

.list-row h2,
.product-row h2 {
    margin-bottom: 4px;
}

.list-row p,
.product-info p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.row-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.product-thumb {
    align-items: center;
    background: rgba(8, 185, 87, 0.1);
    border-radius: var(--radius-sm);
    color: var(--brand-green-dark);
    display: flex;
    flex: 0 0 68px;
    font-size: 1.4rem;
    font-weight: 900;
    height: 68px;
    justify-content: center;
    overflow: hidden;
    width: 68px;
}

.product-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-info {
    flex: 1 1 auto;
    min-width: 0;
}

.product-title-row {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.product-title-row strong {
    color: var(--brand-navy);
    flex: 0 0 auto;
}

.empty-state {
    display: grid;
    gap: 10px;
    justify-items: start;
    padding: 22px;
}

.split-actions {
    align-items: center;
    justify-content: space-between;
}

.search-card {
    align-items: end;
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px;
}

.avatar-circle {
    align-items: center;
    background: rgba(8, 185, 87, 0.12);
    border-radius: 999px;
    color: var(--brand-green-dark);
    display: flex;
    flex: 0 0 48px;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.customer-row-main {
    flex: 1 1 auto;
    min-width: 0;
}

.profile-detail-grid,
.history-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.detail-card,
.history-card {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.detail-list {
    display: grid;
    gap: 8px;
}

.detail-list p,
.history-card p {
    margin-bottom: 0;
}

.history-card strong {
    color: var(--brand-navy);
    font-size: 2rem;
    line-height: 1;
}

.sidebar {
    display: none;
}

.sidebar-nav {
    align-content: start;
    display: grid;
    gap: 8px;
}

.sidebar-version {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: auto;
    padding: 18px 12px 0;
}

.sidebar-brand {
    display: inline-flex;
    line-height: 0;
    margin-bottom: 24px;
}

.sr-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

@media (max-width: 640px) {
    .business-switcher,
    .page-hero,
    .module-list article {
        align-items: stretch;
        flex-direction: column;
    }

    .business-switcher form,
    .page-hero .btn {
        width: 100%;
    }

    .mobile-nav-item {
        font-size: 0.78rem;
        padding: 9px 10px;
    }

    .form-section-header {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions,
    .row-actions,
    .save-actions,
    .split-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .list-row,
    .product-row {
        align-items: stretch;
    }

    .product-row {
        display: grid;
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .product-row > .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .product-title-row {
        flex-direction: column;
    }

    .search-card .btn,
    .list-row .row-actions .btn {
        width: 100%;
    }

    .catalogue-actions .btn,
    .catalogue-product-actions .btn {
        width: 100%;
    }

    .catalogue-product-actions form {
        flex: 1 1 100%;
    }

    .catalogue-product-title {
        flex-direction: column;
    }

    .catalogue-sticky-basket,
    .basket-row,
    .basket-total {
        align-items: stretch;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .basket-product-main {
        align-items: flex-start;
    }

    .basket-quantity {
        max-width: none;
    }

    .basket-line-total {
        text-align: right;
    }

    .public-order-actions,
    .public-order-page .form-actions,
    .confirmation-summary,
    .order-summary-row,
    .order-summary-total {
        align-items: stretch;
        flex-direction: column;
    }

    .public-order-actions .btn,
    .public-order-page .form-actions .btn {
        width: 100%;
    }

    .confirmation-summary {
        gap: 14px;
    }

    .help-toolbar {
        align-items: stretch;
    }
}

@media (min-width: 760px) {
    .brand img {
        width: 188px;
    }

    .public-shell,
    .auth-shell {
        padding: 24px;
    }

    .auth-card {
        padding: 32px;
    }

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

    .form-actions .btn {
        width: auto;
    }

    .app-header {
        padding: 18px 24px;
    }

    .app-main {
        padding: 24px;
    }

    .page-hero {
        padding: 28px;
    }

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

    .search-card {
        grid-template-columns: minmax(0, 1fr) auto;
    }

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

    .payment-provider-grid {
        align-items: start;
        display: grid;
        gap: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogue-hero {
        align-items: center;
        grid-template-columns: auto minmax(0, 1fr);
        padding: 30px;
    }

    .catalogue-page.is-tenant-branded .catalogue-hero {
        grid-template-columns: 1fr;
        padding: 36px 30px;
    }

    .catalogue-product-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .catalogue-product-image {
        aspect-ratio: 1 / 1;
    }

    .help-toolbar {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
    }

    .help-search-form {
        align-items: end;
        grid-template-columns: minmax(0, 1fr) auto;
    }

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

    .help-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
    }
}

@media (min-width: 1040px) {
    .dashboard-shell {
        display: grid;
        grid-template-columns: 248px minmax(0, 1fr);
    }

    .sidebar {
        background: var(--surface);
        border-right: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        gap: 0;
        height: 100vh;
        min-height: 100vh;
        overflow-y: auto;
        padding: 24px 18px;
        position: sticky;
        top: 0;
    }

    .sidebar-nav {
        flex: 1 1 auto;
    }

    .nav-item {
        align-items: center;
        display: flex;
        line-height: 1.15;
        min-height: 42px;
        padding: 10px 12px;
        text-align: left;
    }

    .mobile-brand,
    .mobile-nav,
    .app-version-mobile {
        display: none;
    }

    .app-header-top {
        justify-content: flex-end;
    }

    .user-chip span:last-child {
        display: inline;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .business-switcher {
        margin-top: 0;
    }
}

@media (max-width: 759px) {
    .device-hero-laptop,
    .mockup-laptop {
        max-width: 520px;
        transform: translateX(-7%);
        width: 108%;
    }

    .device-hero-phone,
    .mockup-phone {
        bottom: 18px;
        width: clamp(112px, 30%, 150px);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
