﻿:root {
    --brand-primary: #0f4c81;
    --brand-accent: #ff7a18;
    --ink-900: #132033;
    --ink-700: #38506f;
    --ink-500: #65758a;
    --surface-100: #f4f7fb;
    --surface-200: #e7edf5;
    --surface-300: #d1dceb;
    --white: #ffffff;
    --success: #0d8f68;
    --warning: #c47d0a;
    --danger: #c74a4a;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-lg: 0 24px 60px rgba(19, 32, 51, 0.12);
    --shadow-md: 0 18px 40px rgba(19, 32, 51, 0.08);
    --shadow-sm: 0 10px 24px rgba(19, 32, 51, 0.08);
    --border: 1px solid rgba(19, 32, 51, 0.08);
    --container: 1180px;
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Gill Sans", sans-serif;
    font-size: 18px;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top right, rgba(255, 122, 24, 0.12), transparent 30%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
    line-height: 1.75;
}

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

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

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

input,
select,
textarea {
    width: 100%;
    padding: 1.05rem 1rem;
    border: 1px solid rgba(19, 32, 51, 0.14);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--ink-900);
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.14);
}

textarea {
    resize: vertical;
}

label {
    display: block;
    color: var(--ink-700);
}

label span {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: var(--ink-900);
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.narrow {
    width: min(calc(100% - 2rem), 780px);
}

.section,
.page-intro {
    padding: 5rem 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.55);
}

.section-dark {
    background:
        linear-gradient(135deg, rgba(12, 31, 56, 0.96), rgba(16, 74, 123, 0.92)),
        linear-gradient(90deg, rgba(255, 122, 24, 0.08), transparent);
    color: var(--white);
}

.section-heading,
.page-intro {
    text-align: center;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading-light h2,
.section-heading-light p {
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

h3 {
    font-size: 1.28rem;
}

p {
    margin: 0 0 1rem;
    color: var(--ink-700);
}

.sr-only,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    background: var(--ink-900);
    color: var(--white);
    border-radius: 999px;
}

.site-header {
    position: static;
    z-index: 100;
    backdrop-filter: none;
    background: #0d1522;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 88px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-mark {
    width: 220px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    flex-shrink: 0;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    padding: 0;
}

.brand-name {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
}

.brand-tagline {
    margin: 0.15rem 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-nav a {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    padding: 0.72rem 0.92rem;
    border-radius: 999px;
    white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: transparent;
    border: 0;
    padding: 0;
}

.nav-toggle span:not(.sr-only) {
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.admin-toolbar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #121d2d;
}

.admin-toolbar-inner,
.admin-toolbar-links,
.admin-toolbar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-toolbar-inner {
    justify-content: space-between;
    min-height: 54px;
}

.admin-toolbar-links a,
.admin-toolbar-user a,
.admin-toolbar-user span {
    color: rgba(255, 255, 255, 0.86);
}

.admin-toolbar-links a {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
}

.admin-toolbar-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-toolbar-user a {
    font-weight: 700;
}

.button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: pointer;
    border: 0;
    min-height: 52px;
    font-size: 1rem;
}

.button:hover,
.text-button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--brand-primary), #0a75bc);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.button-secondary {
    background: rgba(15, 76, 129, 0.08);
    color: var(--ink-900);
}

.button-small {
    padding: 0.55rem 0.9rem;
    font-size: 0.88rem;
}

.text-link {
    color: var(--brand-primary);
    font-weight: 800;
}

.text-button {
    background: transparent;
    padding: 0;
}

.danger {
    color: var(--danger);
}

.hero-section {
    padding: 5.5rem 0 4rem;
}

.hero-grid,
.split-layout,
.steps-grid,
.feature-grid,
.action-grid,
.hero-summary-grid,
.footer-grid,
.card-grid,
.stats-grid,
.ticket-summary-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid,
.split-layout {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: start;
}

.hero-copy p,
.page-intro p {
    max-width: 720px;
    margin-inline: auto;
}

.hero-copy {
    text-align: left;
}

.hero-actions,
.hero-meta,
.stack-actions,
.filter-bar,
.inline-copy,
.table-actions,
.header-link-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-meta {
    margin-top: 1.3rem;
}

.hero-meta span {
    padding: 0.55rem 0.85rem;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    border: var(--border);
    font-weight: 700;
    color: var(--ink-700);
}

.card {
    background: rgba(255, 255, 255, 0.92);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-md);
}

.metric-card,
.support-card,
.cta-banner,
.easy-card {
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(230, 239, 250, 0.96));
}

.easy-card {
    border: 1px solid rgba(15, 76, 129, 0.14);
}

.check-list,
.status-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.status-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.75rem;
}

.check-list li::before,
.status-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-accent);
}

.services-grid,
.feature-grid,
.steps-grid,
.action-grid,
.hero-summary-grid,
.footer-grid,
.card-grid,
.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-helper {
    font-size: 1rem;
    color: var(--ink-900);
}

.hero-summary-grid {
    margin-bottom: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-card,
.hours-panel {
    background: rgba(15, 76, 129, 0.06);
    border-radius: var(--radius-md);
}

.summary-card {
    padding: 1.35rem 1.45rem;
}

.summary-card p:last-child,
.hours-panel p:last-child {
    margin-bottom: 0;
    color: var(--ink-900);
}

.hours-panel {
    margin: 1rem 0 1.2rem;
    padding: 1rem 1rem 0.95rem;
}

.service-card,
.step-card,
.testimonial-card,
.stat-card {
    height: 100%;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 1rem;
    background: rgba(15, 76, 129, 0.12);
    color: var(--brand-primary);
    font-weight: 800;
}

.service-meta,
.service-stack,
.note-card-header,
.card-header,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
}

.section-dark .testimonial-card p,
.section-dark .testimonial-card strong {
    color: var(--white);
}

.step-number,
.data-label {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--ink-500);
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.flash,
.inline-errors {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    border: var(--border);
}

.flash-success {
    background: rgba(13, 143, 104, 0.12);
    color: #0a6f51;
}

.flash-error,
.inline-errors {
    background: rgba(199, 74, 74, 0.12);
    color: #8d2f2f;
}

.inline-errors p:last-child {
    margin-bottom: 0;
}

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

.compact-form {
    margin-top: 1.5rem;
}

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

.file-input small {
    display: block;
    margin-top: 0.5rem;
    color: var(--ink-500);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    font-weight: 800;
    color: var(--ink-900);
    cursor: pointer;
}

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

.faq-answer {
    display: none;
    padding-top: 1rem;
}

.faq-answer-open,
.faq-item[open] .faq-answer {
    display: block;
}

.faq-item[open] .faq-trigger span:last-child {
    transform: rotate(45deg);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-trigger span:last-child {
    transform: rotate(45deg);
}

.table-card {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid rgba(19, 32, 51, 0.08);
    vertical-align: top;
}

.filter-bar {
    align-items: end;
}

.filter-bar label {
    flex: 1 1 180px;
}

.ticket-toolbar {
    margin-bottom: 1rem;
}

.view-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
}

.badge-blue {
    background: rgba(15, 76, 129, 0.12);
    color: var(--brand-primary);
}

.badge-slate {
    background: rgba(19, 32, 51, 0.1);
    color: var(--ink-700);
}

.badge-amber,
.badge-orange {
    background: rgba(196, 125, 10, 0.14);
    color: var(--warning);
}

.badge-cyan,
.badge-teal,
.badge-green {
    background: rgba(13, 143, 104, 0.14);
    color: var(--success);
}

.badge-red {
    background: rgba(199, 74, 74, 0.14);
    color: var(--danger);
}

.activity-feed,
.note-history,
.timeline-list {
    display: grid;
    gap: 1rem;
}

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

.overview-card,
.overview-pill {
    background: rgba(255, 255, 255, 0.92);
    border: var(--border);
    border-radius: var(--radius-md);
}

.overview-card {
    padding: 1.15rem 1.25rem;
}

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

.overview-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
}

.overview-pill strong {
    font-size: 1.05rem;
}

.section-bottom-gap {
    margin-bottom: 1.5rem;
}

.activity-item,
.note-card {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--surface-100);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 1rem;
}

.timeline-point {
    width: 14px;
    height: 14px;
    margin-top: 0.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
    box-shadow: 0 0 0 5px rgba(15, 76, 129, 0.08);
}

.timeline-date {
    margin-bottom: 0.3rem;
    color: var(--ink-500);
    font-size: 0.92rem;
}

.attachment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.75rem;
}

.attachment-list a {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--brand-primary);
    font-weight: 700;
}

.ticket-meta-stack {
    display: grid;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.workflow-panel {
    margin-bottom: 2rem;
}

.workflow-panel h2 {
    margin-bottom: 1rem;
}

.workflow-steps {
    display: grid;
    gap: 0.75rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 0.95rem;
    border-radius: var(--radius-md);
    background: var(--surface-100);
    color: var(--ink-700);
}

.workflow-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(19, 32, 51, 0.16);
    flex-shrink: 0;
}

.workflow-step-complete {
    background: rgba(13, 143, 104, 0.1);
    color: #0a6f51;
}

.workflow-step-complete .workflow-dot {
    background: var(--success);
}

.workflow-step-current {
    background: rgba(15, 76, 129, 0.12);
    color: var(--brand-primary);
    border: 1px solid rgba(15, 76, 129, 0.18);
}

.workflow-step-current .workflow-dot {
    background: var(--brand-primary);
    box-shadow: 0 0 0 5px rgba(15, 76, 129, 0.12);
}

.workflow-step-cancelled {
    opacity: 0.55;
}

.workflow-steps-public .workflow-step {
    background: rgba(255, 255, 255, 0.88);
}

.kanban-board {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 1fr);
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
}

.kanban-column {
    display: grid;
    gap: 1rem;
    align-content: start;
    min-width: 290px;
}

.kanban-column-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: var(--border);
    box-shadow: var(--shadow-sm);
}

.kanban-column-header h2 {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.kanban-column-header p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--ink-500);
}

.kanban-ticket-list {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.kanban-ticket {
    padding: 1.25rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.kanban-ticket-top,
.kanban-meta,
.kanban-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    align-items: center;
}

.kanban-ticket-top {
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.kanban-ticket-top h3 {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.kanban-customer {
    margin-bottom: 0.3rem;
}

.kanban-meta {
    flex-direction: column;
    align-items: flex-start;
    margin: 0.95rem 0;
    color: var(--ink-500);
    font-size: 0.93rem;
}

.kanban-move-form {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(19, 32, 51, 0.08);
}

.kanban-empty {
    padding: 1.15rem;
    border-style: dashed;
    background: rgba(255, 255, 255, 0.6);
}

.admin-ticket-layout {
    grid-template-columns: 1.25fr 0.95fr;
}

.auth-shell {
    align-items: stretch;
}

.auth-aside {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(227, 238, 250, 0.96));
}

.auth-helper {
    margin-top: 1rem;
}

.service-summary-card,
.support-card,
.admin-intro .container,
.page-intro .container {
    text-align: left;
}

.page-intro h1,
.page-intro p {
    margin-left: auto;
    margin-right: auto;
}

.page-intro h1 {
    max-width: 14ch;
    font-size: clamp(2.3rem, 5vw, 3.9rem);
}

.page-intro p {
    max-width: 760px;
}

.admin-intro {
    padding-bottom: 2rem;
}

.nav-cta {
    margin-left: 0.2rem;
}

.form-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(19, 32, 51, 0.08);
    margin: 0.25rem 0;
}

.site-footer {
    padding: 3.5rem 0 2rem;
    border-top: var(--border);
    background: rgba(10, 18, 30, 0.94);
    color: rgba(255, 255, 255, 0.88);
}

.site-footer p,
.site-footer a,
.site-footer h3,
.site-footer h4 {
    color: inherit;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .admin-ticket-layout {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .feature-grid,
    .steps-grid,
    .action-grid,
    .hero-summary-grid,
    .footer-grid,
    .card-grid,
    .stats-grid,
    .ticket-summary-grid,
    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-shell {
        min-height: 78px;
    }

    .brand-mark {
        width: 190px;
        height: 66px;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: rgba(247, 249, 252, 0.98);
        border-bottom: var(--border);
        box-shadow: var(--shadow-md);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        margin-left: 0;
    }

    .admin-toolbar-inner,
    .admin-toolbar-links,
    .admin-toolbar-user,
    .utility-shell,
    .cta-banner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .services-grid,
    .feature-grid,
    .steps-grid,
    .action-grid,
    .hero-summary-grid,
    .footer-grid,
    .card-grid,
    .stats-grid,
    .ticket-summary-grid,
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .kanban-board {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        overflow-x: visible;
    }

    .kanban-column {
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .section,
    .page-intro,
    .hero-section {
        padding: 3.5rem 0;
    }

    .container {
        width: min(calc(100% - 1.2rem), var(--container));
    }

    .brand-mark {
        width: 156px;
        height: 56px;
        border-radius: 0;
    }

    .card {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .button,
    .text-button {
        width: 100%;
    }

    .hero-actions,
    .stack-actions,
    .filter-bar,
    .header-shortcuts,
    .hero-meta,
    .view-toggle,
    .kanban-ticket-top,
    .kanban-actions {
        flex-direction: column;
    }

    .utility-shell {
        min-height: auto;
        padding: 0.9rem 0;
    }

    .data-table th,
    .data-table td {
        padding-inline: 0.55rem;
        font-size: 0.94rem;
    }
}

.admin-page .header-link-stack .button,
.admin-page .header-link-stack .button-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: none;
}

.admin-page .header-link-stack .button:hover,
.admin-page .header-link-stack .button-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.admin-page .admin-toolbar {
    background: #121d2d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-page .admin-toolbar-links a,
.admin-page .admin-toolbar-user a,
.admin-page .admin-toolbar-user span {
    color: rgba(255, 255, 255, 0.86);
}

.admin-page .admin-toolbar-links a {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
}

.admin-page .admin-toolbar-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-page .admin-toolbar-user a {
    font-weight: 700;
}

.home-hero {
    padding: 4.8rem 0 3.4rem;
    background: linear-gradient(180deg, #eaf3ff 0%, #f3f6fb 100%);
}

.home-hero-grid {
    align-items: center;
    gap: 2rem;
}

.page-intro .container.narrow {
    max-width: 980px;
}

.home-hero-grid,
.home-card-grid,
.home-stat-grid,
.home-track-grid,
.home-faq-grid,
.home-inline-actions {
    display: grid;
    gap: 1.25rem;
}

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

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

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

.home-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: #d9ebff;
    color: #0b5aa1;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-hero-copy h1 {
    max-width: 700px;
    margin: 0.95rem 0 0.7rem;
    font-size: clamp(2.65rem, 5.4vw, 4.45rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #172233;
}

.home-lead {
    max-width: 720px;
    margin: 0 0 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #526173;
}

.home-actions,
.home-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.home-note {
    margin-top: 1.3rem;
    max-width: 720px;
    padding: 1rem 0 0 1rem;
    border-left: 5px solid #126ec5;
}

.home-note p {
    margin-bottom: 0;
    color: #334559;
}

.home-sidebar,
.home-card,
.home-stat-card,
.home-faq-item {
    background: #ffffff;
    border: 1px solid #d5dfec;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(13, 31, 56, 0.08);
}

.home-sidebar,
.home-card,
.home-faq-item {
    padding: 1.4rem;
}

.home-sidebar h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 1.1rem;
    color: #172233;
}

.home-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.home-check-list li {
    position: relative;
    padding-left: 1.45rem;
    margin-bottom: 0.95rem;
    color: #2d4257;
    font-weight: 600;
}

.home-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a8b67, #12a37d);
}

.home-sidebar p:last-child {
    margin-bottom: 0;
}

.home-stat-card {
    padding: 1.2rem 1.25rem;
}

.home-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #0b5aa1;
}

.home-section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(232, 238, 247, 0.62));
}

.home-section-heading {
    margin-bottom: 1.5rem;
}

.home-section-heading h2 {
    margin: 0.9rem 0 0.7rem;
    color: #172233;
}

.home-section-heading p {
    max-width: 760px;
}

.home-card h3 {
    margin-bottom: 0.7rem;
    color: #172233;
}

.home-card .button {
    margin-top: 0.4rem;
}

.home-track-form {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0;
}

.home-hours-list p {
    margin-bottom: 0.8rem;
}

.home-help-text {
    color: #566577;
    font-size: 0.95rem;
}

.home-inline-actions {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
}

.home-inline-actions a {
    font-weight: 700;
}

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

.home-faq-item summary {
    cursor: pointer;
    font-weight: 800;
    color: #172233;
}

.home-faq-item p {
    margin-top: 0.9rem;
}

@media (max-width: 1080px) {
    .home-card-grid,
    .home-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-nav {
        background: #0d1522;
    }

    .home-hero-grid,
    .home-track-grid,
    .home-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding: 3.6rem 0 2.8rem;
    }

    .home-card-grid,
    .home-stat-grid {
        grid-template-columns: 1fr;
    }

    .home-actions,
    .home-inline-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-copy h1,
    .home-sidebar h2 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
}

.services-modern-hero,
.services-modern-grid,
.services-modern-benefits {
    display: grid;
    gap: 1.5rem;
}

.services-modern-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: stretch;
}

.services-modern-story,
.services-modern-panel,
.services-modern-card,
.services-modern-benefit,
.services-modern-cta {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(19, 32, 51, 0.08);
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(19, 32, 51, 0.08);
}

.services-modern-story,
.services-modern-panel,
.services-modern-benefit,
.services-modern-cta {
    padding: 1.8rem;
}

.services-modern-story {
    background:
        linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(255, 122, 24, 0.06)),
        rgba(255, 255, 255, 0.94);
}

.services-modern-story h2,
.services-modern-panel h2 {
    margin-top: 0.8rem;
}

.services-modern-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 800;
}

.services-modern-kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.services-modern-tags,
.services-modern-points,
.services-modern-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.services-modern-tags {
    margin-top: 1.2rem;
}

.services-modern-tags span,
.services-modern-points span,
.services-modern-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
}

.services-modern-tags span,
.services-modern-points span {
    background: rgba(15, 76, 129, 0.08);
    color: var(--ink-900);
}

.services-modern-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 239, 249, 0.96));
}

.services-modern-panel-actions {
    margin-top: 1.25rem;
}

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

.services-modern-card {
    display: grid;
    gap: 1rem;
    padding: 1.55rem;
    height: 100%;
}

.services-modern-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.services-modern-icon {
    margin-bottom: 0;
}

.services-modern-price {
    background: rgba(255, 122, 24, 0.12);
    color: #9a4d0d;
}

.services-modern-actions {
    margin-top: auto;
}

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

.services-modern-benefit h2 {
    font-size: 1.15rem;
}

.services-modern-cta {
    background:
        linear-gradient(135deg, rgba(12, 31, 56, 0.96), rgba(16, 74, 123, 0.92)),
        linear-gradient(90deg, rgba(255, 122, 24, 0.08), transparent);
    color: var(--white);
}

.services-modern-cta h2,
.services-modern-cta p,
.services-modern-cta .services-modern-kicker {
    color: inherit;
}

@media (max-width: 1080px) {
    .services-modern-hero,
    .services-modern-grid,
    .services-modern-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .services-modern-hero,
    .services-modern-grid,
    .services-modern-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-modern-story,
    .services-modern-panel,
    .services-modern-card,
    .services-modern-benefit,
    .services-modern-cta {
        padding: 1.35rem;
    }

    .services-modern-card-top,
    .services-modern-panel-actions,
    .services-modern-tags,
    .services-modern-points {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-subheadline {
    max-width: 720px;
    margin: 0 0 0.85rem;
    font-size: clamp(1.25rem, 2.35vw, 1.65rem);
    line-height: 1.3;
    color: #294666;
    font-weight: 700;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 0.9rem;
    margin: 0.15rem 0 1.5rem;
    color: #294666;
    font-size: 0.96rem;
    font-weight: 700;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.55rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid #d7e1ed;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(18, 39, 67, 0.06);
}

.hero-trust span:first-child::before {
    content: '\2605';
    color: #d08a00;
}

.hero-trust span:last-child::before {
    content: '\25CF';
    color: #126ec5;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
}

.btn-outline {
    background: transparent;
    color: var(--ink-900);
    border: 1px solid #9fb4ca;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(15, 76, 129, 0.08);
    border-color: #7c98b6;
}

/* Reference-style public refresh */
body.public-page {
    background: #f4f7fb;
    color: #152337;
}

.public-page .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 18, 30, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.public-page .header-shell {
    min-height: 92px;
    gap: 1.25rem;
}

.public-page .brand-mark {
    background: transparent;
    box-shadow: none;
}

.public-page .brand-name,
.public-page .site-nav a {
    color: #f7fbff;
}

.public-page .brand-tagline {
    color: rgba(224, 233, 244, 0.82);
    max-width: 28rem;
}

.public-page .site-nav {
    gap: 0.45rem;
    align-items: center;
}

.public-page .site-nav a {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-weight: 700;
}

.public-page .site-nav a.active,
.public-page .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.header-cta {
    white-space: nowrap;
}

.public-page .page-intro {
    padding: 4.4rem 0 2.4rem;
    background:
        radial-gradient(circle at top left, rgba(30, 114, 192, 0.16), transparent 36%),
        linear-gradient(180deg, #0d1725 0%, #111e2f 100%);
    color: #ffffff;
}

.public-page .page-intro h1,
.public-page .page-intro p,
.public-page .page-intro .eyebrow {
    color: inherit;
}

.public-page .page-intro .eyebrow {
    background: rgba(94, 173, 255, 0.16);
    border: 1px solid rgba(94, 173, 255, 0.24);
}

.public-page .card,
.public-page .home-card,
.public-page .home-stat-card,
.public-page .home-faq-item,
.public-page .services-modern-card,
.public-page .services-modern-panel,
.public-page .services-modern-benefit,
.public-page .services-modern-story,
.public-page .support-card {
    border-radius: 24px;
    border: 1px solid #dbe5ef;
    box-shadow: 0 24px 54px rgba(16, 30, 50, 0.08);
}

.public-page input,
.public-page select,
.public-page textarea {
    border-radius: 16px;
    border: 1px solid #cad8e6;
    background: #fbfdff;
}

.public-page input:focus,
.public-page select:focus,
.public-page textarea:focus {
    border-color: #2c7dd1;
    box-shadow: 0 0 0 4px rgba(44, 125, 209, 0.12);
}

.home-hero {
    padding: 5.25rem 0 4rem;
    background:
        radial-gradient(circle at left top, rgba(38, 119, 191, 0.24), transparent 32%),
        linear-gradient(180deg, #0b1321 0%, #122033 100%);
}

.home-hero-copy h1,
.home-hero-copy .hero-subheadline,
.home-hero-copy .home-lead,
.home-hero-copy .home-check-list li,
.home-hero-copy .hero-trust {
    color: #f5f9ff;
}

.home-kicker {
    background: rgba(94, 173, 255, 0.14);
    color: #8fc8ff;
    border: 1px solid rgba(94, 173, 255, 0.2);
}

.home-hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.9rem, 5.6vw, 5rem);
    line-height: 0.98;
    color: #ffffff;
}

.hero-subheadline {
    max-width: 32rem;
    color: #d7e7f6;
}

.home-lead {
    max-width: 34rem;
    color: #a9bfd7;
}

.home-hero-copy .home-check-list li {
    color: #e4eef8;
}

.home-hero-copy .home-check-list li::before {
    background: linear-gradient(135deg, #4fc3a1, #17a57a);
}

.hero-trust span {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: #eaf3fb;
    box-shadow: none;
}

.btn-outline {
    color: #f5f9ff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.42);
}

.home-sidebar {
    padding: 1.7rem;
}

.home-sidebar-visual {
    margin: -0.25rem -0.25rem 1.35rem;
    padding: 0.65rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #eef5fb 0%, #e3eef9 100%);
    border: 1px solid #d9e4ef;
}

.home-sidebar-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.home-sidebar-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.36rem 0.8rem;
    border-radius: 999px;
    background: #ebf3fb;
    color: #0f4c81;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-sidebar h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.95rem;
}

.home-sidebar .home-check-list {
    margin-bottom: 1rem;
}

.home-sidebar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 1.1rem;
}

.home-sidebar-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: #eef4fa;
    color: #31506e;
    font-size: 0.88rem;
    font-weight: 700;
}

.home-sidebar p {
    color: #30465d;
}

@media (max-width: 768px) {
.home-sidebar-meta {
    flex-direction: column;
    gap: 0.5rem;
}
}

.ref-stat-grid {
    margin-top: -2.15rem;
}

.ref-stat-grid .home-stat-card {
    background: #ffffff;
}

.ref-service-card,
.ref-step-card,
.ref-review-card {
    height: 100%;
}

.ref-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.ref-price-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #e8f2fc;
    color: #0f4c81;
    font-weight: 800;
    font-size: 0.88rem;
}

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

.ref-step-card {
    position: relative;
    padding-top: 4.3rem;
}

.ref-step-number {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: #0f4c81;
    color: #ffffff;
    font-weight: 800;
}

.ref-dashboard-card {
    background: linear-gradient(180deg, #0d1725 0%, #132238 100%);
    color: #f4f8fc;
}

.ref-dashboard-card h2,
.ref-dashboard-card .home-kicker,
.ref-dashboard-card .home-help-text {
    color: inherit;
}

.ref-dashboard-card .home-kicker {
    border-color: rgba(94, 173, 255, 0.2);
}

.ref-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.ref-mini-stats div {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ref-mini-stats strong,
.ref-mini-stats span {
    display: block;
}

.ref-mini-stats strong {
    font-size: 1.7rem;
    margin-bottom: 0.25rem;
}

.ref-home-cta {
    background: linear-gradient(135deg, #0d1725 0%, #132238 100%);
    color: #f5f9ff;
    border-radius: 28px;
}

.ref-home-cta h2,
.ref-home-cta p,
.ref-home-cta .home-kicker {
    color: inherit;
}

.services-modern-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #e9f2fc;
    color: #0f4c81;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.services-modern-story,
.services-modern-panel,
.services-modern-benefit,
.services-modern-card {
    background: #ffffff;
}

.site-footer {
    margin-top: 4rem;
    padding: 3.5rem 0 1.5rem;
    background: #0b1321;
}

.site-footer p,
.site-footer a,
.site-footer h3,
.site-footer h4 {
    color: #d7e3ef;
}

.site-footer h3,
.site-footer h4 {
    color: #ffffff;
}

.footer-grid {
    gap: 2rem;
}

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

@media (max-width: 980px) {
    .header-cta {
        display: none;
    }

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

@media (max-width: 820px) {
    .public-page .site-nav {
        background: #0d1725;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1rem;
    }

    .public-page .site-nav a {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .ref-benefit-grid,
    .ref-steps-grid,
    .ref-mini-stats,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .home-hero-copy h1 {
        max-width: 12ch;
    }
}

/* HERO LEFT SECTION */
.hero-left {
max-width: 600px;
}

.hero-badge {
display: inline-block;
background: #e6f0ff;
color: #1d4ed8;
padding: 6px 14px;
border-radius: 999px;
font-size: 13px;
font-weight: 600;
margin-bottom: 16px;
}

.hero-title {
font-size: 48px;
font-weight: 800;
color: #0f172a;
line-height: 1.1;
margin-bottom: 16px;
}

.hero-subtitle {
font-size: 18px;
color: #475569;
margin-bottom: 10px;
}

.hero-services {
font-size: 16px;
color: #64748b;
margin-bottom: 20px;
}

.hero-features {
list-style: none;
padding: 0;
margin-bottom: 20px;
}

.hero-features li {
margin-bottom: 8px;
font-size: 16px;
color: #0f172a;
}

.hero-trust {
display: flex;
gap: 20px;
font-size: 14px;
color: #475569;
margin-bottom: 24px;
}

/* BUTTONS */
.hero-buttons {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.btn {
padding: 12px 20px;
border-radius: 999px;
font-weight: 600;
text-decoration: none;
display: inline-block;
}

.btn-primary {
background: #1d4ed8;
color: #fff;
}

.btn-primary:hover {
background: #1e40af;
}

/* Final end-of-file About story panel override */
.public-page .about-story-layout .about-story-panel-dark {
background: linear-gradient(180deg, #152033 0%, #18243a 100%) !important;
border: 1px solid rgba(92, 124, 168, 0.22) !important;
box-shadow: 0 30px 68px rgba(11, 20, 36, 0.24) !important;
padding: 2.35rem 2.35rem 2.2rem !important;
}

.public-page .about-story-layout .about-story-panel-dark::before {
background: linear-gradient(90deg, #4da0ff, #2459f5) !important;
}

.public-page .about-story-layout .about-story-panel-dark h2,
.public-page .about-story-layout .about-story-panel-dark p,
.public-page .about-story-layout .about-story-panel-dark li,
.public-page .about-story-layout .about-story-panel-dark strong,
.public-page .about-story-layout .about-story-panel-dark span {
color: #f8fbff !important;
}

.public-page .about-story-layout .about-story-panel-dark h2 {
margin: 0 0 1.5rem !important;
font-size: clamp(3rem, 4.6vw, 4.6rem) !important;
line-height: 1.08 !important;
letter-spacing: -0.04em !important;
}

.public-page .about-story-layout .about-story-panel-dark p {
color: rgba(241, 247, 255, 0.92) !important;
font-size: 1rem !important;
line-height: 1.95 !important;
max-width: 48rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-story-icon {
width: 4rem !important;
height: 4rem !important;
margin-bottom: 1.4rem !important;
border-radius: 20px !important;
background: rgba(46, 67, 111, 0.88) !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric {
background: linear-gradient(180deg, rgba(42, 53, 76, 0.98), rgba(37, 47, 68, 0.98)) !important;
border: 1px solid rgba(255, 255, 255, 0.08) !important;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
border-radius: 22px !important;
padding: 1.25rem 1.25rem 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric strong {
color: #7ebcff !important;
font-size: 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric span {
color: rgba(241, 247, 255, 0.88) !important;
font-size: 0.8rem !important;
letter-spacing: 0.03em !important;
text-transform: uppercase !important;
margin-top: 0.45rem !important;
}

/* EOF device brands section refresh */
.public-page .home-brand-strip {
    background: #edf3fa !important;
}

.public-page .home-brand-strip .brand-layout {
    display: block;
}

.public-page .home-brand-strip .brand-copy {
    margin-bottom: 1.35rem;
    max-width: 980px;
}

.public-page .home-brand-strip .eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    background: #e8f1fb;
    border: 1px solid #d7e3ef;
    color: #1b5f96;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1rem;
}

.public-page .home-brand-strip h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.35rem, 4.8vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #173047 !important;
    max-width: 13ch;
}

.public-page .home-brand-strip .brand-copy p {
    margin: 0;
    max-width: 900px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #4f657b !important;
}

.public-page .home-brand-strip .brand-tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #d7e3ef;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.public-page .home-brand-strip .brand-tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: #173047;
    font: inherit;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.82rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.public-page .home-brand-strip .brand-tab.is-active {
    background: linear-gradient(135deg, #1b5f96, #2459f5);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(36, 89, 245, 0.22);
}

.public-page .home-brand-strip .brand-panel {
    display: none;
}

.public-page .home-brand-strip .brand-panel.is-active {
    display: block;
}

.public-page .home-brand-strip .brand-stack {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding: 0.2rem 0.1rem 0.5rem;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
}

.public-page .home-brand-strip .brand-stack::-webkit-scrollbar {
    display: none;
}

.public-page .home-brand-strip .brand-card {
    min-height: 118px;
    padding: 1rem 0.95rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%) !important;
    border: 1px solid #d7e3ef !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    scroll-snap-align: start;
}

.public-page .home-brand-strip .brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.11) !important;
    border-color: #c6d7e7 !important;
}

.public-page .home-brand-strip .brand-icon {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #22384d;
    background: transparent;
    border: 0;
}

.public-page .home-brand-strip .brand-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #22384d;
    line-height: 1;
    white-space: nowrap;
}

.public-page .home-brand-strip .brand-wordmark-apple {
    gap: 0.45rem;
    font-size: 1.5rem;
}

.public-page .home-brand-strip .brand-wordmark-samsung {
    font-size: 1.15rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.public-page .home-brand-strip .brand-wordmark-google {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.public-page .home-brand-strip .brand-wordmark-motorola {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-page .home-brand-strip .brand-wordmark-acer {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.public-page .home-brand-strip .brand-wordmark-hp {
    font-size: 1.35rem;
    gap: 0.55rem;
}

.public-page .home-brand-strip .brand-wordmark-hp .hp-ring {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    border: 2.2px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.public-page .home-brand-strip .brand-wordmark-dell {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.public-page .home-brand-strip .brand-wordmark-lenovo {
    font-size: 1.08rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-page .home-brand-strip .brand-wordmark-asus {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.public-page .home-brand-strip .brand-wordmark-apple-mac {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.public-page .home-brand-strip .brand-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.public-page .home-brand-strip .brand-meta h3 {
    margin: 0;
    font-size: 0.96rem;
    color: #173047 !important;
    letter-spacing: -0.02em;
}

.public-page .home-brand-strip .brand-meta p {
    display: none;
}

.public-page .home-brand-strip .brand-carousel-shell {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.public-page .home-brand-strip .brand-carousel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
}

.public-page .home-brand-strip .brand-carousel-button {
    appearance: none;
    border: 1px solid #d7e3ef;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
    color: #173047;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.public-page .home-brand-strip .brand-carousel-button:hover {
    transform: translateY(-2px);
    border-color: #c6d7e7;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.1);
    background: #ffffff;
}

.public-page .home-brand-strip .brand-carousel-button:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

@media (max-width: 768px) {
    .public-page .home-brand-strip h2 {
        max-width: 100%;
        font-size: clamp(2rem, 8vw, 3.1rem);
    }

    .public-page .home-brand-strip .brand-copy p {
        font-size: 1rem;
    }

    .public-page .home-brand-strip .brand-tabs {
        width: 100%;
        justify-content: space-between;
    }

    .public-page .home-brand-strip .brand-tab {
        flex: 1 1 0;
        text-align: center;
    }

    .public-page .home-brand-strip .brand-stack {
        grid-auto-columns: 78%;
    }

    .public-page .home-brand-strip .brand-card {
        min-height: 112px;
    }

    .public-page .home-brand-strip .brand-carousel-actions {
        justify-content: center;
    }
}

/* EOF public consistency lock */
.public-page .home-sidebar,
.public-page .home-card,
.public-page .home-assurance-card,
.public-page .brand-logo-card,
.public-page .tracker-highlight,
.public-page .faq-item.card,
.public-page .home-faq-item,
.public-page .service-slide-card,
.public-page .service-card {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 253, 0.98)) !important;
border: 1px solid #d8e3ee !important;
box-shadow: 0 18px 42px rgba(14, 25, 40, 0.08) !important;
color: #173047 !important;
}

.public-page .home-sidebar h1,
.public-page .home-sidebar h2,
.public-page .home-sidebar h3,
.public-page .home-sidebar h4,
.public-page .home-card h1,
.public-page .home-card h2,
.public-page .home-card h3,
.public-page .home-card h4,
.public-page .home-assurance-card h1,
.public-page .home-assurance-card h2,
.public-page .home-assurance-card h3,
.public-page .home-assurance-card h4,
.public-page .home-section-heading h2,
.public-page .tracker-highlight h1,
.public-page .tracker-highlight h2,
.public-page .tracker-highlight h3,
.public-page .tracker-highlight h4 {
color: #173047 !important;
opacity: 1 !important;
}

.public-page .home-sidebar p,
.public-page .home-sidebar li,
.public-page .home-sidebar a,
.public-page .home-card p,
.public-page .home-card li,
.public-page .home-card a,
.public-page .home-assurance-card p,
.public-page .home-assurance-card li,
.public-page .home-section-heading p,
.public-page .tracker-copy,
.public-page .home-help-text {
color: #4b6278 !important;
opacity: 1 !important;
}

.public-page .snapshot-title,
.public-page .home-hero aside.home-sidebar h2 {
color: #173047 !important;
-webkit-text-fill-color: #173047 !important;
text-shadow: none !important;
opacity: 1 !important;
}

.public-page .snapshot-kicker,
.public-page .tracker-kicker,
.public-page .home-kicker,
.public-page .home-sidebar-label,
.public-page .home-assurance-label,
.public-page .hero-badge,
.public-page .eyebrow {
background: #e8f1fb !important;
border: 1px solid #d4e3f2 !important;
color: #1b5f96 !important;
-webkit-text-fill-color: #1b5f96 !important;
text-shadow: none !important;
opacity: 1 !important;
}

.public-page .home-control .tracker-kicker {
display: inline-flex !important;
align-items: center !important;
padding: 0.85rem 1.35rem !important;
border-radius: 999px !important;
font-size: 0.82rem !important;
font-weight: 800 !important;
letter-spacing: 0.1em !important;
text-transform: uppercase !important;
}

.public-page .home-sidebar-meta span {
background: #eef4fa !important;
border: 1px solid #d6e3ef !important;
color: #31506e !important;
-webkit-text-fill-color: #31506e !important;
opacity: 1 !important;
}

.public-page .home-brand-strip .home-kicker,
.public-page .home-showcase .home-kicker,
.public-page .home-brand-strip .home-section-heading h2,
.public-page .home-showcase .home-section-heading h2 {
opacity: 1 !important;
}

.public-page .home-brand-strip .home-section-heading h2,
.public-page .home-showcase .home-section-heading h2 {
color: #173047 !important;
}

.public-page .home-brand-strip .home-section-heading p,
.public-page .home-showcase .home-section-heading p {
color: #4b6278 !important;
}

.public-page .home-brand-strip .brand-marquee {
-webkit-mask-image: none !important;
mask-image: none !important;
}

.public-page .home-brand-strip .brand-logo-card {
background: #ffffff !important;
border: 1px solid #d7e3ef !important;
box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
}

.public-page .home-brand-strip .brand-logo-card img {
filter: none !important;
opacity: 1 !important;
}

.public-page .home-values {
background:
radial-gradient(circle at top left, rgba(52, 118, 197, 0.18), transparent 32%),
linear-gradient(180deg, #0c1624 0%, #132238 100%) !important;
}

.public-page .home-values .home-kicker {
background: #eef4fb !important;
border: 1px solid #cfe0f0 !important;
color: #1b5f96 !important;
-webkit-text-fill-color: #1b5f96 !important;
opacity: 1 !important;
}

.public-page .home-values .home-section-heading h2 {
color: #edf4fb !important;
-webkit-text-fill-color: #edf4fb !important;
opacity: 1 !important;
}

.public-page .home-values .home-section-heading p {
color: rgba(237, 244, 251, 0.82) !important;
-webkit-text-fill-color: rgba(237, 244, 251, 0.82) !important;
opacity: 1 !important;
}

.public-page .home-values .home-card {
background: linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%) !important;
border: 1px solid #dbe5ef !important;
box-shadow: 0 18px 42px rgba(14, 25, 40, 0.08) !important;
}

.public-page .home-values .home-card h3 {
color: #17283c !important;
}

.public-page .home-values .home-card p {
color: #4a6077 !important;
}

#about-story-panel-dark {
background: linear-gradient(180deg, #152033 0%, #18243a 100%) !important;
border: 1px solid rgba(92, 124, 168, 0.22) !important;
box-shadow: 0 30px 68px rgba(11, 20, 36, 0.24) !important;
padding: 2.35rem 2.35rem 2.2rem !important;
}

#about-story-panel-dark::before {
background: linear-gradient(90deg, #4da0ff, #2459f5) !important;
}

#about-story-panel-dark h2,
#about-story-panel-dark p,
#about-story-panel-dark li,
#about-story-panel-dark strong,
#about-story-panel-dark span {
color: #f8fbff !important;
}

#about-story-panel-dark p {
color: rgba(241, 247, 255, 0.92) !important;
}

#about-story-panel-dark .about-story-icon {
background: rgba(46, 67, 111, 0.88) !important;
}

#about-story-panel-dark .about-metric {
background: linear-gradient(180deg, rgba(42, 53, 76, 0.98), rgba(37, 47, 68, 0.98)) !important;
border: 1px solid rgba(255, 255, 255, 0.08) !important;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

#about-story-panel-dark .about-metric strong {
color: #7ebcff !important;
}

#about-story-panel-dark .about-metric span {
color: rgba(241, 247, 255, 0.88) !important;
}

/* Absolute final About story panel override */
.public-page .about-story-layout .about-story-panel-dark {
background: linear-gradient(180deg, #152033 0%, #18243a 100%) !important;
border: 1px solid rgba(92, 124, 168, 0.22) !important;
box-shadow: 0 30px 68px rgba(11, 20, 36, 0.24) !important;
padding: 2.35rem 2.35rem 2.2rem !important;
}

.public-page .about-story-layout .about-story-panel-dark::before {
background: linear-gradient(90deg, #4da0ff, #2459f5) !important;
}

.public-page .about-story-layout .about-story-panel-dark h2,
.public-page .about-story-layout .about-story-panel-dark p,
.public-page .about-story-layout .about-story-panel-dark li,
.public-page .about-story-layout .about-story-panel-dark strong,
.public-page .about-story-layout .about-story-panel-dark span {
color: #f8fbff !important;
}

.public-page .about-story-layout .about-story-panel-dark h2 {
margin: 0 0 1.5rem !important;
font-size: clamp(3rem, 4.6vw, 4.6rem) !important;
line-height: 1.08 !important;
letter-spacing: -0.04em !important;
}

.public-page .about-story-layout .about-story-panel-dark p {
color: rgba(241, 247, 255, 0.92) !important;
font-size: 1rem !important;
line-height: 1.95 !important;
max-width: 48rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-story-icon {
width: 4rem !important;
height: 4rem !important;
margin-bottom: 1.4rem !important;
border-radius: 20px !important;
background: rgba(46, 67, 111, 0.88) !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric {
background: linear-gradient(180deg, rgba(42, 53, 76, 0.98), rgba(37, 47, 68, 0.98)) !important;
border: 1px solid rgba(255, 255, 255, 0.08) !important;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
border-radius: 22px !important;
padding: 1.25rem 1.25rem 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric strong {
color: #7ebcff !important;
font-size: 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric span {
color: rgba(241, 247, 255, 0.88) !important;
font-size: 0.8rem !important;
letter-spacing: 0.03em !important;
text-transform: uppercase !important;
margin-top: 0.45rem !important;
}

/* Dedicated dark About story panel */
.public-page .about-story-layout .about-story-panel-dark {
background: linear-gradient(180deg, #152033 0%, #18243a 100%) !important;
border: 1px solid rgba(92, 124, 168, 0.22) !important;
box-shadow: 0 30px 68px rgba(11, 20, 36, 0.24) !important;
padding: 2.35rem 2.35rem 2.2rem !important;
}

.public-page .about-story-layout .about-story-panel-dark::before {
background: linear-gradient(90deg, #4da0ff, #2459f5) !important;
}

.public-page .about-story-layout .about-story-panel-dark h2,
.public-page .about-story-layout .about-story-panel-dark p,
.public-page .about-story-layout .about-story-panel-dark li,
.public-page .about-story-layout .about-story-panel-dark strong,
.public-page .about-story-layout .about-story-panel-dark span {
color: #f8fbff !important;
}

.public-page .about-story-layout .about-story-panel-dark h2 {
margin: 0 0 1.5rem !important;
font-size: clamp(3rem, 4.6vw, 4.6rem) !important;
line-height: 1.08 !important;
letter-spacing: -0.04em !important;
}

.public-page .about-story-layout .about-story-panel-dark p {
color: rgba(241, 247, 255, 0.92) !important;
font-size: 1rem !important;
line-height: 1.95 !important;
max-width: 48rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-story-icon {
width: 4rem !important;
height: 4rem !important;
margin-bottom: 1.4rem !important;
border-radius: 20px !important;
background: rgba(46, 67, 111, 0.88) !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric {
background: linear-gradient(180deg, rgba(42, 53, 76, 0.98), rgba(37, 47, 68, 0.98)) !important;
border: 1px solid rgba(255, 255, 255, 0.08) !important;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
border-radius: 22px !important;
padding: 1.25rem 1.25rem 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric strong {
color: #7ebcff !important;
font-size: 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric span {
color: rgba(241, 247, 255, 0.88) !important;
font-size: 0.8rem !important;
letter-spacing: 0.03em !important;
text-transform: uppercase !important;
margin-top: 0.45rem !important;
}

/* Final About panel lock-in */
.public-page .about-story-layout .about-story-panel {
    background: linear-gradient(180deg, #18243a 0%, #1c2940 100%) !important;
    border: 1px solid rgba(88, 117, 158, 0.2) !important;
    box-shadow: 0 30px 68px rgba(11, 20, 36, 0.24) !important;
    padding: 2.35rem 2.35rem 2.2rem !important;
}

.public-page .about-story-layout .about-story-panel::before {
    background: linear-gradient(90deg, #4da0ff, #2459f5) !important;
}

.public-page .about-story-layout .about-story-panel h2,
.public-page .about-story-layout .about-story-panel p,
.public-page .about-story-layout .about-story-panel li,
.public-page .about-story-layout .about-story-panel strong,
.public-page .about-story-layout .about-story-panel span {
    color: #f8fbff !important;
}

.public-page .about-story-layout .about-story-panel h2 {
    margin: 0 0 1.5rem !important;
    font-size: clamp(3rem, 4.6vw, 4.6rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
}

.public-page .about-story-layout .about-story-panel p {
    color: rgba(241, 247, 255, 0.92) !important;
    font-size: 1rem !important;
    line-height: 1.95 !important;
    max-width: 48rem !important;
}

.public-page .about-story-layout .about-story-panel .about-story-icon {
    width: 4rem !important;
    height: 4rem !important;
    margin-bottom: 1.4rem !important;
    border-radius: 20px !important;
    background: rgba(46, 67, 111, 0.88) !important;
}

.public-page .about-story-layout .about-story-panel .about-metric {
    background: linear-gradient(180deg, rgba(42, 53, 76, 0.98), rgba(37, 47, 68, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    border-radius: 22px !important;
    padding: 1.25rem 1.25rem 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel .about-metric strong {
    color: #7ebcff !important;
    font-size: 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel .about-metric span {
    color: rgba(241, 247, 255, 0.88) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    margin-top: 0.45rem !important;
}

.home-showcase .service-carousel {
display: flex;
flex-direction: column;
gap: 1.35rem;
}

.home-showcase .service-carousel-shell {
display: grid;
grid-template-columns: auto minmax(0, 1fr) auto;
align-items: center;
gap: 1rem;
}

.home-showcase .service-carousel-viewport {
overflow: hidden;
}

.home-showcase .service-carousel-track {
display: flex;
transition: transform 320ms ease;
will-change: transform;
}

.home-showcase .service-carousel-slide {
flex: 0 0 100%;
min-width: 100%;
}

.home-showcase .service-slide-card {
display: grid;
grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.08fr);
gap: 2rem;
padding: 1.8rem;
background: #ffffff;
border: 1px solid #dce7f2;
border-radius: 30px;
box-shadow: 0 28px 54px rgba(15, 23, 42, 0.08);
align-items: stretch;
}

.home-showcase .service-slide-visual {
display: flex;
}

.home-showcase .service-slide-visual-frame {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
border-radius: 24px;
background: linear-gradient(180deg, #f4f9ff 0%, #e6f0fb 100%);
border: 1px solid #d9e5f2;
}

.home-showcase .service-slide-visual-frame img {
display: block;
width: 100%;
max-width: 440px;
height: auto;
}

.home-showcase .service-slide-content {
display: flex;
flex-direction: column;
justify-content: center;
gap: 0.95rem;
}

.home-showcase .service-slide-header {
display: flex;
flex-wrap: wrap;
gap: 0.7rem;
align-items: center;
}

.home-showcase .service-slide-chip,
.home-showcase .service-slide-turnaround,
.home-showcase .service-slide-meta span {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.48rem 0.85rem;
border-radius: 999px;
font-size: 0.85rem;
font-weight: 700;
}

.home-showcase .service-slide-chip {
background: #eaf4ff;
color: #1d4ed8;
}

.home-showcase .service-slide-turnaround {
background: #f2f7fc;
color: #48627d;
}

.home-showcase .service-slide-trust {
display: inline-flex;
align-self: flex-start;
padding: 0.38rem 0.75rem;
border-radius: 999px;
background: #eefaf2;
color: #127a3e;
font-size: 0.8rem;
font-weight: 700;
}

.home-showcase .service-slide-card h3 {
margin: 0;
font-size: clamp(1.75rem, 3vw, 2.55rem);
line-height: 1.02;
letter-spacing: -0.03em;
color: #142338;
}

.home-showcase .service-slide-summary {
margin: 0;
font-size: 1.05rem;
line-height: 1.75;
color: #476078;
max-width: 40rem;
}

.home-showcase .service-slide-feature-list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem 1rem;
}

.home-showcase .service-slide-feature-list li {
position: relative;
padding-left: 1.2rem;
font-size: 0.98rem;
line-height: 1.55;
color: #23394e;
}

.home-showcase .service-slide-feature-list li::before {
content: "";
position: absolute;
left: 0;
top: 0.52rem;
width: 0.45rem;
height: 0.45rem;
border-radius: 999px;
background: #2459f5;
box-shadow: 0 0 0 4px rgba(36, 89, 245, 0.12);
}

.home-showcase .service-slide-footer {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding-top: 1rem;
border-top: 1px solid #e3edf6;
margin-top: 0.1rem;
}

.home-showcase .service-slide-meta {
display: flex;
flex-wrap: wrap;
gap: 0.65rem;
}

.home-showcase .service-slide-meta span {
background: #f2f7fc;
color: #526d86;
}

.home-showcase .service-slide-button {
min-width: 170px;
justify-content: center;
text-align: center;
}

.home-showcase .service-carousel-control {
width: 3rem;
height: 3rem;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid #d6e2ee;
border-radius: 999px;
background: #ffffff;
color: #143251;
font-size: 1.8rem;
line-height: 1;
box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-showcase .service-carousel-control:hover {
transform: translateY(-2px);
box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
background: #f7fbff;
}

.home-showcase .service-carousel-footer {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1rem;
}

.home-showcase .service-carousel-dots {
display: inline-flex;
flex-wrap: wrap;
gap: 0.65rem;
}

.home-showcase .service-carousel-dot {
width: 0.8rem;
height: 0.8rem;
border-radius: 999px;
background: #c8d7e6;
border: none;
transition: transform 180ms ease, background 180ms ease;
}

.home-showcase .service-carousel-dot.is-active {
background: #2459f5;
transform: scale(1.15);
}

.home-showcase .service-carousel-note {
margin: 0;
font-size: 0.95rem;
color: #60758b;
}

@media (max-width: 820px) {
.home-showcase .service-carousel-shell {
grid-template-columns: 1fr;
}

.home-showcase .service-carousel-control {
display: none;
}

.home-showcase .service-slide-card {
grid-template-columns: 1fr;
gap: 1.4rem;
padding: 1.25rem;
}

.home-showcase .service-slide-card h3 {
font-size: clamp(1.55rem, 6vw, 2rem);
}

.home-showcase .service-slide-feature-list {
grid-template-columns: 1fr;
}

.home-showcase .service-slide-footer {
flex-direction: column;
align-items: stretch;
}

.home-showcase .service-slide-button {
width: 100%;
}

.home-showcase .service-carousel-footer {
flex-direction: column;
align-items: flex-start;
}
}

/* HOMEPAGE HERO COMPACT LAYOUT */
.home-hero {
padding: 3.2rem 0 2.15rem;
}

.home-hero-grid {
gap: 1.45rem;
align-items: start;
}

.home-hero .hero-left {
max-width: 590px;
}

.home-hero .hero-badge {
margin-bottom: 0.75rem;
}

.home-hero .hero-title {
font-size: clamp(2.45rem, 4.8vw, 4.25rem);
line-height: 0.96;
max-width: 9.8ch;
margin-bottom: 0.8rem;
}

.home-hero .hero-subtitle {
font-size: 1.05rem;
margin-bottom: 0.45rem;
max-width: 29rem;
}

.home-hero .hero-services {
font-size: 0.94rem;
margin-bottom: 0.9rem;
}

.home-hero .hero-features {
margin-bottom: 1rem;
}

.home-hero .hero-features li {
margin-bottom: 0.45rem;
font-size: 0.98rem;
}

.home-hero .hero-trust {
margin-bottom: 1rem;
gap: 0.7rem;
}

.home-hero .hero-trust span {
padding: 0.72rem 1rem;
font-size: 0.9rem;
}

.home-hero .hero-buttons {
gap: 0.75rem;
}

.home-hero .btn {
min-height: 50px;
padding: 10px 20px;
}

.home-hero .hero-micro {
margin-top: 0.75rem;
font-size: 0.92rem;
}

.home-sidebar {
padding: 1.1rem 1.15rem;
}

.home-sidebar-visual {
margin: 0 0 0.9rem;
padding: 0.5rem;
}

.home-sidebar-visual img {
max-height: 240px;
width: 100%;
object-fit: contain;
}

.home-sidebar-label {
margin-bottom: 0.55rem;
padding: 0.3rem 0.7rem;
font-size: 0.72rem;
}

.home-sidebar h2 {
font-size: clamp(1.7rem, 3vw, 2.3rem);
margin-bottom: 0.65rem;
}

.home-sidebar .home-check-list {
margin-bottom: 0.75rem;
}

.home-sidebar .home-check-list li {
margin-bottom: 0.55rem;
padding-left: 1.3rem;
font-size: 0.96rem;
}

.home-sidebar-meta {
margin: 0 0 0.75rem;
gap: 0.5rem;
}

.home-sidebar-meta span {
padding: 0.45rem 0.68rem;
font-size: 0.8rem;
}

.home-sidebar p {
margin-bottom: 0.55rem;
font-size: 0.98rem;
}

@media (max-width: 1200px) {
.home-hero .hero-title {
max-width: 10.5ch;
}

.home-sidebar-visual img {
max-height: 220px;
}
}

@media (max-width: 820px) {
.home-hero {
padding: 2.75rem 0 2rem;
}

.home-hero-grid {
gap: 1.25rem;
}

.home-sidebar-visual img {
max-height: none;
}
}

.home-brand-strip .container {
max-width: 1220px;
}

.home-brand-heading {
max-width: 980px;
margin-bottom: 1.6rem;
}

.home-brand-heading h2 {
max-width: 980px;
font-size: clamp(2.55rem, 5vw, 4.5rem);
line-height: 1.02;
letter-spacing: -0.045em;
margin-bottom: 0.95rem;
}

.home-brand-heading p {
max-width: 860px;
font-size: 1.08rem;
line-height: 1.7;
color: #4d6278;
}

.brand-marquee {
position: relative;
display: flex;
gap: 1rem;
margin-top: 1.15rem;
overflow: hidden;
padding: 0.25rem 0;
mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brand-marquee::before,
.brand-marquee::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: 70px;
z-index: 1;
pointer-events: none;
}

.brand-marquee::before {
left: 0;
background: linear-gradient(to right, #f3f7fc, transparent);
}

.brand-marquee::after {
right: 0;
background: linear-gradient(to left, #f3f7fc, transparent);
}

.brand-marquee-track {
display: flex;
align-items: stretch;
gap: 0.85rem;
flex: 0 0 auto;
min-width: max-content;
animation: brandMarquee 28s linear infinite;
}

.brand-logo-card {
display: flex;
align-items: center;
justify-content: center;
min-width: 210px;
min-height: 92px;
padding: 0.9rem 1.15rem;
background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
border: 1px solid #dfe8f1;
border-radius: 18px;
box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand-logo-card:hover {
transform: translateY(-2px);
box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
border-color: #cddae7;
background: #ffffff;
}

.brand-logo-card img {
display: block;
width: 100%;
max-width: 142px;
max-height: 42px;
height: auto;
object-fit: contain;
filter: grayscale(1) contrast(1.06);
opacity: 0.72;
transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.brand-logo-card:hover img {
filter: grayscale(0.1) contrast(1.02);
opacity: 1;
transform: scale(1.02);
}

@keyframes brandMarquee {
from {
transform: translateX(0);
}
to {
transform: translateX(calc(-50% - 0.5rem));
}
}

.brand-marquee:hover .brand-marquee-track {
animation-play-state: paused;
}

@media (max-width: 960px) {
.home-brand-heading h2 {
font-size: clamp(2.35rem, 6vw, 3.5rem);
}

.brand-logo-card {
min-width: 180px;
}
}

@media (max-width: 640px) {
.home-brand-heading h2 {
font-size: clamp(2.15rem, 9vw, 3rem);
line-height: 1.06;
}

.home-brand-heading p {
font-size: 1rem;
}

.brand-marquee {
mask-image: none;
}

.brand-marquee::before,
.brand-marquee::after {
display: none;
}

.brand-logo-card {
min-width: 158px;
min-height: 82px;
padding: 0.8rem 1rem;
}

.brand-logo-card img {
max-width: 120px;
max-height: 36px;
}
}

/* Inner Page Consistency */
.public-page .page-intro + .section,
.public-page .page-intro ~ .section {
    position: relative;
}

.public-page .page-intro ~ .section .section-heading h2,
.public-page .page-intro ~ .section .card h2,
.public-page .page-intro ~ .section .card h3,
.public-page .page-intro ~ .section .services-modern-benefit h2,
.public-page .page-intro ~ .section .services-modern-card h2 {
    color: #142334;
}

.public-page .page-intro ~ .section .card,
.public-page .page-intro ~ .section .faq-item.card,
.public-page .page-intro ~ .section .services-modern-card,
.public-page .page-intro ~ .section .services-modern-story,
.public-page .page-intro ~ .section .services-modern-benefit,
.public-page .page-intro ~ .section .services-modern-panel,
.public-page .page-intro ~ .section .services-modern-cta,
.public-page .page-intro ~ .section .service-summary-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dbe5ef;
    box-shadow: 0 24px 54px rgba(16, 30, 50, 0.08);
}

.public-page .page-intro ~ .section .card::before,
.public-page .page-intro ~ .section .faq-item.card::before,
.public-page .page-intro ~ .section .services-modern-card::before,
.public-page .page-intro ~ .section .services-modern-story::before,
.public-page .page-intro ~ .section .services-modern-benefit::before,
.public-page .page-intro ~ .section .services-modern-panel::before,
.public-page .page-intro ~ .section .service-summary-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.public-page .page-intro ~ .section .support-card {
    background: linear-gradient(180deg, #0f172a 0%, #16263c 100%);
    border-color: rgba(97, 199, 255, 0.16);
    box-shadow: 0 24px 54px rgba(3, 12, 24, 0.28);
}

.public-page .page-intro ~ .section .support-card::before {
    background: linear-gradient(90deg, #61c7ff, #3b82f6);
}

.public-page .page-intro ~ .section .support-card h2,
.public-page .page-intro ~ .section .support-card h3,
.public-page .page-intro ~ .section .support-card p,
.public-page .page-intro ~ .section .support-card strong,
.public-page .page-intro ~ .section .support-card a {
    color: #eef5fd;
}

.public-page .page-intro ~ .section .support-card a:hover {
    color: #8fd2ff;
}

.public-page .page-intro ~ .section .services-modern-card,
.public-page .page-intro ~ .section .services-modern-benefit,
.public-page .page-intro ~ .section .services-modern-story,
.public-page .page-intro ~ .section .services-modern-panel {
    border-radius: 26px;
}

.public-page .page-intro ~ .section .services-modern-card:hover,
.public-page .page-intro ~ .section .services-modern-benefit:hover,
.public-page .page-intro ~ .section .services-modern-story:hover,
.public-page .page-intro ~ .section .services-modern-panel:hover,
.public-page .page-intro ~ .section .faq-item.card:hover,
.public-page .page-intro ~ .section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(10, 19, 32, 0.12);
}

.public-page .page-intro ~ .section .card,
.public-page .page-intro ~ .section .faq-item.card,
.public-page .page-intro ~ .section .services-modern-card,
.public-page .page-intro ~ .section .services-modern-benefit,
.public-page .page-intro ~ .section .services-modern-story,
.public-page .page-intro ~ .section .services-modern-panel,
.public-page .page-intro ~ .section .service-summary-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.public-page .page-intro ~ .section .split-layout,
.public-page .page-intro ~ .section .card-grid,
.public-page .page-intro ~ .section .services-modern-grid,
.public-page .page-intro ~ .section .services-modern-benefits {
    align-items: stretch;
}

.public-page .page-intro ~ .section .card p,
.public-page .page-intro ~ .section .services-modern-card p,
.public-page .page-intro ~ .section .services-modern-story p,
.public-page .page-intro ~ .section .services-modern-panel p,
.public-page .page-intro ~ .section .services-modern-benefit p,
.public-page .page-intro ~ .section .faq-answer p {
    color: #506274;
}

.public-page .page-intro ~ .section .stack-form {
    gap: 1rem;
}

.public-page .page-intro ~ .section label > span,
.public-page .page-intro ~ .section .stack-form label span {
    display: block;
    margin-bottom: 0.45rem;
    color: #1a2d42;
    font-weight: 700;
}

.public-page .page-intro ~ .section input,
.public-page .page-intro ~ .section select,
.public-page .page-intro ~ .section textarea {
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid #cad8e6;
    background: #fbfdff;
    color: #162638;
}

.public-page .page-intro ~ .section textarea {
    min-height: 160px;
    resize: vertical;
}

.public-page .page-intro ~ .section input::placeholder,
.public-page .page-intro ~ .section textarea::placeholder {
    color: #7a8da2;
}

.public-page .page-intro ~ .section .button.button-primary,
.public-page .page-intro ~ .section button.button-primary {
    min-height: 52px;
    padding-inline: 1.35rem;
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(29, 78, 216, 0.18);
}

.public-page .page-intro ~ .section .button.button-secondary {
    border-radius: 16px;
}

.public-page .page-intro ~ .section .check-list,
.public-page .page-intro ~ .section .status-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.public-page .page-intro ~ .section .check-list li,
.public-page .page-intro ~ .section .status-list li {
    margin: 0;
    padding: 0.95rem 1rem 0.95rem 2.75rem;
    border-radius: 18px;
    border: 1px solid #dce7f2;
    background: #f8fbff;
    color: #22384d;
}

.public-page .page-intro ~ .section .check-list li::before,
.public-page .page-intro ~ .section .status-list li::before {
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.public-page .page-intro ~ .section .step-card {
    position: relative;
    padding-top: 4.3rem;
}

.public-page .page-intro ~ .section .step-number {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2459f5, #1d4ed8);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(29, 78, 216, 0.22);
}

.public-page .page-intro ~ .section .inline-errors {
    border-radius: 18px;
    border: 1px solid #f3c7c2;
    background: linear-gradient(180deg, #fff7f6 0%, #fff1ee 100%);
    color: #8d3023;
    box-shadow: none;
}

.public-page .page-intro ~ .section .file-input {
    padding: 1rem;
    border-radius: 20px;
    background: #f7fbff;
    border: 1px dashed #bfd2e5;
}

.public-page .page-intro ~ .section .file-input small {
    display: block;
    margin-top: 0.55rem;
    color: #667b92;
}

.public-page .page-intro ~ .section .ticket-summary-grid .card {
    min-height: 100%;
}

.public-page .page-intro ~ .section .data-label {
    color: #5f7690;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.public-page .page-intro ~ .section .timeline-list {
    display: grid;
    gap: 1rem;
}

.public-page .page-intro ~ .section .timeline-item {
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #dce7f2;
    background: #f8fbff;
}

.public-page .page-intro ~ .section .timeline-point {
    width: 12px;
    height: 12px;
    margin-top: 0.2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
}

.public-page .page-intro ~ .section .timeline-date {
    font-size: 0.84rem;
    color: #64819c;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.public-page .page-intro ~ .section .attachment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.public-page .page-intro ~ .section .attachment-list a {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: #ebf3fb;
    color: #134b7d;
    font-weight: 700;
    text-decoration: none;
}

.public-page .page-intro ~ .section .attachment-list a:hover {
    background: #dcecfb;
}

.public-page .page-intro ~ .section .faq-list {
    display: grid;
    gap: 1rem;
}

.public-page .page-intro ~ .section .faq-item.card {
    padding: 0;
}

.public-page .page-intro ~ .section .faq-trigger {
    width: 100%;
    padding: 1.35rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    background: transparent;
    color: #18283c;
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
}

.public-page .page-intro ~ .section .faq-answer {
    padding: 0 1.4rem 1.35rem;
}

.public-page .page-intro ~ .section .faq-trigger span:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: #eef4fa;
    color: #1d4ed8;
}

.public-page .page-intro ~ .section .services-modern-price,
.public-page .page-intro ~ .section .services-modern-tags span,
.public-page .page-intro ~ .section .services-modern-points span {
    background: #eef4fa;
    color: #31506e;
}

.public-page .page-intro ~ .section .services-modern-actions .button {
    min-width: 150px;
    justify-content: center;
}

@media (max-width: 768px) {
    .public-page .page-intro ~ .section .support-card,
    .public-page .page-intro ~ .section .service-summary-card,
    .public-page .page-intro ~ .section .services-modern-panel,
    .public-page .page-intro ~ .section .services-modern-story,
    .public-page .page-intro ~ .section .services-modern-card,
    .public-page .page-intro ~ .section .services-modern-benefit {
        border-radius: 22px;
    }

    .public-page .page-intro ~ .section .faq-trigger {
        padding: 1.2rem 1.15rem;
    }

    .public-page .page-intro ~ .section .faq-answer {
        padding: 0 1.15rem 1.2rem;
    }
}

/* About Page */
.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.about-story-layout {
    align-items: stretch;
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.88fr);
    gap: 1.2rem;
}

.about-story-panel,
.about-story-copy,
.about-owner-card,
.about-mission-card {
    border-radius: 28px;
}

.about-story-panel {
    position: relative;
    overflow: hidden;
    padding: 2.3rem 2.2rem 2.15rem;
    background: linear-gradient(180deg, #152033 0%, #18243a 100%);
    border: 1px solid rgba(92, 124, 168, 0.22);
    box-shadow: 0 30px 68px rgba(11, 20, 36, 0.24);
}

.about-story-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #4da0ff, #2459f5);
}

.about-story-panel h2,
.about-story-panel p {
    color: #f8fbff;
}

.about-story-panel h2 {
    margin: 0 0 1.35rem;
    font-size: clamp(2.25rem, 3.6vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.about-story-panel p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
    max-width: 48rem;
}

.about-story-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.2rem;
    border-radius: 20px;
    background: rgba(46, 67, 111, 0.82);
    font-size: 1.8rem;
}

.about-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.about-metric {
    padding: 1.3rem 1.3rem 1.15rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(42, 53, 76, 0.96), rgba(37, 47, 68, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-metric strong,
.about-metric span {
    display: block;
}

.about-metric strong {
    color: #7ebcff;
    font-size: 1.2rem;
    font-weight: 800;
}

.about-metric span {
    margin-top: 0.45rem;
    color: rgba(241, 247, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.about-story-copy {
    position: relative;
    overflow: hidden;
    padding: 2.35rem 2.35rem 2.15rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dbe5ef;
    box-shadow: 0 24px 54px rgba(16, 30, 50, 0.08);
}

.about-story-copy::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #4da0ff, #2459f5);
}

.about-story-copy .eyebrow {
    margin-bottom: 1rem;
    color: #155a96;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
}

.about-story-copy h2 {
    margin: 0 0 1.3rem;
    font-size: clamp(2.2rem, 3.2vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.about-story-copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
    color: #4a6077;
}

.about-story-copy p + p {
    margin-top: 1rem;
}

.about-quote {
    margin: 1.8rem 0 0;
    padding: 1.25rem 1.3rem;
    border-radius: 20px;
    border: 1px solid #d6e4f2;
    background: #f6fbff;
    color: #2d465d;
    font-weight: 600;
}

.about-quote cite {
    display: block;
    margin-top: 0.65rem;
    color: #1d4ed8;
    font-style: normal;
    font-weight: 800;
}

.about-owner-wrap {
    display: flex;
    justify-content: center;
}

.about-owner-card {
    width: min(100%, 760px);
    overflow: hidden;
    padding: 0;
}

.about-owner-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(135deg, #1d4ed8 0%, #28457f 100%);
    color: #ffffff;
}

.about-owner-head h3,
.about-owner-head p {
    margin: 0;
    color: inherit;
}

.about-owner-head p {
    opacity: 0.88;
}

.about-owner-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
}

.about-owner-list {
    list-style: none;
    margin: 0;
    padding: 1.3rem 1.5rem 1.5rem;
    display: grid;
    gap: 0.9rem;
}

.about-owner-list li {
    position: relative;
    padding-left: 1.7rem;
    color: #42586d;
    line-height: 1.65;
}

.about-owner-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.about-mission-card {
    padding: 2.1rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2459f5 0%, #1d4ed8 40%, #28457f 100%);
    color: #ffffff;
    box-shadow: 0 30px 68px rgba(17, 36, 92, 0.24);
}

.about-mission-card h2,
.about-mission-card p {
    color: inherit;
}

.about-mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 1.35rem;
}

@media (max-width: 768px) {
    .about-hero-actions,
    .about-owner-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-metric-grid {
        grid-template-columns: 1fr;
    }

    .about-mission-card {
        padding: 1.7rem 1.35rem;
    }
}

/* Final Contrast Fixes */
.public-page {
    color: #172233;
}

.public-page p,
.public-page li,
.public-page small,
.public-page label,
.public-page dd,
.public-page dt {
    color: #4f6276;
}

.public-page h1,
.public-page h2,
.public-page h3,
.public-page h4,
.public-page h5,
.public-page h6 {
    color: #142334;
}

.public-page a {
    color: #155a96;
}

.public-page a:hover {
    color: #0f4c81;
}

.public-page .button,
.public-page .btn,
.public-page button {
    color: inherit;
}

.public-page .button.button-primary,
.public-page .btn.btn-primary,
.public-page .btn-primary,
.public-page button.button-primary {
    color: #ffffff;
}

.public-page .button.button-secondary,
.public-page .btn.btn-secondary,
.public-page .btn-secondary {
    background: #e8eef5;
    color: #142334;
    border-color: #d0dbe7;
}

.public-page .button.button-secondary:hover,
.public-page .btn.btn-secondary:hover,
.public-page .btn-secondary:hover {
    background: #dfe8f2;
    color: #0f1d2d;
}

.public-page .button.btn-outline,
.public-page .btn.btn-outline,
.public-page .btn-outline {
    color: #142334;
    border-color: #a7b9cb;
}

.public-page .site-header,
.public-page .site-header a,
.public-page .site-header .brand-name,
.public-page .site-header .site-nav a,
.public-page .site-header .brand-tagline {
    color: #eef5fd;
}

.public-page .site-header .brand-tagline {
    color: rgba(238, 245, 253, 0.84);
}

.public-page .page-intro,
.public-page .page-intro h1,
.public-page .page-intro p,
.public-page .page-intro .eyebrow {
    color: #ffffff;
}

.public-page .page-intro .eyebrow {
    color: #a9d6ff;
}

.public-page .support-card,
.public-page .support-card h2,
.public-page .support-card h3,
.public-page .support-card p,
.public-page .support-card li,
.public-page .support-card strong,
.public-page .support-card a,
.public-page .about-mission-card,
.public-page .about-mission-card h2,
.public-page .about-mission-card p,
.public-page .about-owner-head,
.public-page .about-owner-head h3,
.public-page .about-owner-head p,
.public-page .ref-dashboard-card,
.public-page .ref-dashboard-card h2,
.public-page .ref-dashboard-card h3,
.public-page .ref-dashboard-card p,
.public-page .ref-dashboard-card span,
.public-page .ref-dashboard-card strong,
.public-page .ref-home-cta,
.public-page .ref-home-cta h2,
.public-page .ref-home-cta p,
.public-page .ref-home-cta .home-kicker,
.public-page .services-modern-cta,
.public-page .services-modern-cta h2,
.public-page .services-modern-cta p,
.public-page .services-modern-cta .services-modern-kicker,
.public-page .site-footer,
.public-page .site-footer p,
.public-page .site-footer a,
.public-page .site-footer li,
.public-page .site-footer h3,
.public-page .site-footer h4 {
    color: #eef5fd;
}

.public-page .support-card a:hover,
.public-page .site-footer a:hover,
.public-page .ref-dashboard-card a:hover,
.public-page .ref-home-cta a:hover,
.public-page .services-modern-cta a:hover {
    color: #9cd8ff;
}

.public-page .ref-dashboard-card .home-help-text,
.public-page .services-modern-cta p,
.public-page .site-footer p,
.public-page .site-footer li,
.public-page .about-owner-head p {
    color: rgba(238, 245, 253, 0.86);
}

.public-page .home-hero,
.public-page .home-hero .hero-title,
.public-page .home-hero .hero-subtitle,
.public-page .home-hero .hero-services,
.public-page .home-hero .hero-features li,
.public-page .home-hero .hero-trust span,
.public-page .home-hero .hero-micro,
.public-page .home-hero .home-sidebar h2,
.public-page .home-hero .home-sidebar p,
.public-page .home-hero .home-sidebar li {
    color: #eef5fd;
}

.public-page .home-hero .home-sidebar {
    color: #30465d;
}

.public-page .home-hero .home-sidebar p,
.public-page .home-hero .home-sidebar li,
.public-page .home-hero .home-sidebar a {
    color: #30465d;
}

.public-page .home-hero .home-sidebar-label,
.public-page .home-sidebar-meta span {
    color: #25527a;
}

.public-page .home-hero .button.btn-outline,
.public-page .home-hero .btn.btn-outline,
.public-page .home-hero .btn-outline {
    color: #f8fbff !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
    background: transparent !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
    opacity: 1 !important;
}

.public-page .home-hero .button.btn-outline:hover,
.public-page .home-hero .btn.btn-outline:hover,
.public-page .home-hero .btn-outline:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.54) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    opacity: 1 !important;
}

.public-page .home-values .home-section-heading h2,
.public-page .home-values .home-section-heading p,
.public-page .home-values .home-card h3,
.public-page .home-values .home-card p {
    color: #edf4fb;
}

.public-page .home-service-grid .home-card h3,
.public-page .home-service-grid .service-card-summary,
.public-page .home-service-grid .service-feature-list li,
.public-page .home-service-grid .service-card-time,
.public-page .home-service-grid .ref-service-meta span {
    color: #32485f;
}

.public-page .home-showcase .home-section-heading h2,
.public-page .home-showcase .home-section-heading p,
.public-page .home-showcase .home-card h3,
.public-page .home-showcase .service-card-summary,
.public-page .home-showcase .service-feature-list li,
.public-page .home-showcase .service-card-time,
.public-page .home-showcase .ref-service-meta span,
.public-page .home-showcase .service-card-price {
    color: #32485f;
}

.public-page .home-showcase .home-inline-actions .btn-primary {
    color: #ffffff;
}

.public-page .faq-trigger,
.public-page .faq-answer p,
.public-page .timeline-item p,
.public-page .timeline-item h3,
.public-page .timeline-date,
.public-page .data-label,
.public-page .check-list li,
.public-page .status-list li {
    color: #22384d;
}

.public-page .inline-errors p {
    color: #8d3023;
}

.public-page .attachment-list a,
.public-page .timeline-item a {
    color: #134b7d;
}

.public-page .services-modern-cta {
    background:
        radial-gradient(circle at top right, rgba(97, 199, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #0d1725 0%, #132238 100%);
    border-color: rgba(97, 199, 255, 0.12);
    box-shadow: 0 28px 64px rgba(7, 14, 26, 0.24);
}

.public-page .services-modern-cta h2,
.public-page .services-modern-cta p,
.public-page .services-modern-cta .services-modern-kicker {
    color: #eef5fd !important;
}

.public-page .services-modern-cta .services-modern-kicker {
    background: rgba(94, 173, 255, 0.14);
    border: 1px solid rgba(94, 173, 255, 0.22);
}

.public-page .about-owner-head,
.public-page .about-owner-head h3,
.public-page .about-owner-head p,
.public-page .about-owner-mark {
    color: #ffffff !important;
}

.public-page .about-owner-head p {
    opacity: 0.92;
}

.public-page .about-story-panel {
    background: linear-gradient(180deg, #111a2b 0%, #18253b 100%) !important;
}

.public-page .about-story-panel h2,
.public-page .about-story-panel p,
.public-page .about-story-panel strong,
.public-page .about-story-panel span {
    color: #eef5fd !important;
}

.public-page .about-metric {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.public-page .about-metric strong {
    color: #8fc8ff !important;
}

.public-page .about-metric span {
    color: #d7e7f6 !important;
}

.public-page .support-card,
.public-page .support-card h2,
.public-page .support-card h3,
.public-page .support-card p,
.public-page .support-card li,
.public-page .support-card strong,
.public-page .support-card a {
    color: #eef5fd !important;
}

.public-page .support-card a:hover {
    color: #9cd8ff !important;
}

.btn-secondary {
background: #e2e8f0;
color: #0f172a;
}

.btn-outline {
border: 1px solid #cbd5f5;
color: #0f172a;
}

/* MOBILE */
@media (max-width: 768px) {
.hero-title {
font-size: 34px;
}

.hero-buttons {
flex-direction: column;
}

.hero-trust {
flex-direction: column;
gap: 6px;
}
}

/* HERO DARK THEME FIX */
.home-hero .hero-left {
max-width: 620px;
}

.home-hero .hero-badge {
background: rgba(94, 173, 255, 0.14);
color: #8fc8ff;
border: 1px solid rgba(94, 173, 255, 0.2);
}

.home-hero .hero-title {
color: #ffffff;
font-size: clamp(3rem, 5.8vw, 5.1rem);
line-height: 0.98;
letter-spacing: -0.04em;
max-width: 10.5ch;
}

.home-hero .hero-subtitle {
color: #d7e7f6;
font-size: 1.2rem;
margin-bottom: 12px;
max-width: 34rem;
}

.home-hero .hero-services {
color: #a9bfd7;
font-size: 1rem;
margin-bottom: 22px;
max-width: 34rem;
}

.home-hero .hero-features {
margin-bottom: 22px;
}

.home-hero .hero-features li {
color: #e8f1fa;
font-weight: 600;
}

.home-hero .hero-trust {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 28px;
}

.home-hero .hero-trust span {
display: inline-flex;
align-items: center;
padding: 12px 18px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.08);
color: #edf5fd;
font-weight: 700;
}

.home-hero .hero-buttons {
gap: 14px;
}

.home-hero .btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 56px;
padding: 12px 24px;
}

.home-hero .btn-primary {
background: linear-gradient(135deg, #2459f5, #1d4ed8);
color: #ffffff;
}

.home-hero .btn-secondary {
background: #edf2f7;
color: #0f172a;
}

.home-hero .btn-outline {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.34);
color: #f8fbff;
font-weight: 700;
text-shadow: none;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-hero .btn-outline:hover {
background: rgba(255, 255, 255, 0.14);
border-color: rgba(255, 255, 255, 0.54);
color: #ffffff;
}

@media (max-width: 768px) {
.home-hero .hero-title {
font-size: 34px;
max-width: 12ch;
}

.home-hero .hero-buttons {
flex-direction: column;
}

.home-hero .hero-trust {
flex-direction: column;
gap: 8px;
}
}

/* HEADER REFINEMENT */
.public-page .header-shell {
min-height: 76px;
gap: 1rem;
}

.public-page .brand-block {
flex: 1 1 auto;
min-width: 0;
gap: 0.85rem;
}

.public-page .brand-block > div {
min-width: 0;
}

.public-page .brand-mark {
  width: 190px;
  height: 66px;
  border-radius: 0;
}

.public-page .brand-logo {
  padding: 0;
}

.public-page .brand-name {
font-size: 0.95rem;
line-height: 1.1;
margin-bottom: 0.15rem;
}

.public-page .brand-tagline {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 33rem;
  color: rgba(241, 247, 255, 0.9);
  }

.public-page .site-nav {
gap: 0.2rem;
flex-shrink: 0;
}

.public-page .site-nav a {
padding: 0.72rem 0.82rem;
font-size: 0.9rem;
}

.public-page .header-cta {
padding: 0.82rem 1.3rem;
font-size: 0.92rem;
flex-shrink: 0;
}

@media (max-width: 1280px) {
.public-page .brand-tagline {
  max-width: 24rem;
  font-size: 0.84rem;
  }

.public-page .site-nav a {
padding: 0.68rem 0.72rem;
font-size: 0.86rem;
}
}

@media (max-width: 1100px) {
.public-page .brand-tagline {
display: none;
}

.public-page .brand-name {
font-size: 1rem;
margin-bottom: 0;
}

.public-page .brand-mark {
  width: 156px;
  height: 56px;
  }
}

/* HOMEPAGE REVAMP */
.home-overview {
position: relative;
z-index: 3;
margin-top: -1.6rem;
}

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

.home-assurance-card {
padding: 1.45rem;
border-radius: 26px;
background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
border: 1px solid #dbe7f1;
box-shadow: 0 22px 48px rgba(12, 25, 43, 0.08);
}

.home-assurance-label {
display: inline-flex;
align-items: center;
padding: 0.35rem 0.75rem;
margin-bottom: 0.95rem;
border-radius: 999px;
background: #eaf4ff;
color: #1d4ed8;
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.home-assurance-card h3 {
margin-bottom: 0.7rem;
font-size: 1.24rem;
line-height: 1.15;
color: #132238;
}

.home-assurance-card p {
margin-bottom: 0;
color: #566577;
}

.home-showcase,
.home-process,
.home-reviews,
.home-final-cta {
position: relative;
}

.home-showcase {
background:
radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 30%),
radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.12), transparent 28%),
linear-gradient(180deg, #0b1421 0%, #101b2c 100%);
}

.home-showcase .home-kicker {
background: rgba(94, 173, 255, 0.14);
color: #8fc8ff;
border: 1px solid rgba(94, 173, 255, 0.2);
}

.home-showcase .home-section-heading h2,
.home-showcase .home-section-heading p {
color: #edf4fb;
}

.home-showcase .container,
.home-process .container,
.home-control .container,
.home-reviews .container,
.home-faq-section .container,
.home-final-cta .container {
position: relative;
z-index: 1;
}

.home-section-heading {
max-width: 820px;
margin-bottom: 2rem;
}

.home-section-heading h2 {
font-size: clamp(2rem, 4vw, 3.1rem);
line-height: 1.06;
letter-spacing: -0.03em;
}

.home-section-heading p {
font-size: 1.02rem;
color: #5c6b7c;
}

.home-service-grid .home-card,
.home-process .home-card,
.home-reviews .home-card,
.home-faq-section .home-faq-item {
transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-service-grid .home-card:hover,
.home-process .home-card:hover,
.home-reviews .home-card:hover,
.home-faq-section .home-faq-item:hover {
transform: translateY(-4px);
box-shadow: 0 28px 58px rgba(13, 28, 48, 0.1);
}

.home-service-grid .home-card {
padding: 1.55rem;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 18px 40px rgba(4, 10, 18, 0.28);
backdrop-filter: blur(10px);
display: flex;
flex-direction: column;
gap: 0.95rem;
}

.home-service-grid .home-card h3,
.home-value-grid .home-card h3,
.home-steps-grid .home-card h3,
.home-review-grid .home-card h3 {
font-size: 1.2rem;
}

.ref-service-label {
display: inline-flex;
align-items: center;
align-self: flex-start;
padding: 0.3rem 0.75rem;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
color: #b8d6f4;
font-size: 0.76rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.ref-service-chip {
display: inline-flex;
align-items: center;
align-self: flex-end;
padding: 0.4rem 0.8rem;
border-radius: 999px;
background: rgba(92, 170, 255, 0.14);
color: #8fc8ff;
font-size: 0.82rem;
font-weight: 800;
}

.home-service-grid .service-icon {
background: rgba(97, 199, 255, 0.12);
color: #8fd8ff;
}

.home-service-grid .home-card h3,
.home-service-grid .service-card-summary,
.home-service-grid .service-feature-list li,
.home-service-grid .service-card-time {
color: #edf4fb;
}

.home-service-grid .service-card-summary {
color: #c1d1e1;
}

.ref-service-meta {
display: flex;
flex-wrap: wrap;
gap: 0.55rem;
margin-top: auto;
}

.ref-service-meta span {
display: inline-flex;
align-items: center;
padding: 0.45rem 0.7rem;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
color: #c7d8e8;
font-size: 0.82rem;
font-weight: 700;
}

.home-service-grid .home-inline-actions a {
position: relative;
padding-bottom: 0.15rem;
}

.home-service-grid .home-inline-actions a::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 2px;
background: currentColor;
transform: scaleX(0);
transform-origin: left;
transition: transform 180ms ease;
}

.home-service-grid .home-inline-actions a:hover::after {
transform: scaleX(1);
}

.ref-service-actions {
margin-top: 0.15rem;
padding-top: 0.9rem;
border-top: 1px solid rgba(255, 255, 255, 0.08);
justify-content: space-between;
}

.service-card-summary {
margin-bottom: 0.25rem;
color: #c1d1e1;
}

.service-feature-list {
list-style: none;
padding: 0;
margin: 0 0 0.3rem;
}

.service-feature-list li {
position: relative;
padding: 0.7rem 0 0.7rem 1.3rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
color: #d9e7f4;
font-weight: 500;
}

.service-feature-list li::before {
content: "";
position: absolute;
left: 0;
top: 1rem;
width: 0.58rem;
height: 0.58rem;
border-radius: 999px;
background: #61c7ff;
box-shadow: 0 0 0 3px rgba(97, 199, 255, 0.12);
}

.service-card-footer {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
margin-top: 0.35rem;
}

.service-card-price {
color: #8fc8ff;
font-size: 1.25rem;
font-weight: 800;
}

.service-card-time {
color: #b0c5d8;
font-size: 0.92rem;
font-weight: 700;
}

.home-showcase .card-trust {
color: #66d48a;
}

.home-showcase .service-card:hover {
box-shadow: 0 22px 48px rgba(4, 10, 18, 0.35);
border-color: rgba(143, 200, 255, 0.22);
}

.service-card-button {
width: 100%;
justify-content: center;
text-align: center;
}

.home-values {
background:
radial-gradient(circle at top left, rgba(52, 118, 197, 0.18), transparent 32%),
linear-gradient(180deg, #0c1624 0%, #132238 100%);
}

.home-values .home-kicker {
background: rgba(94, 173, 255, 0.14);
color: #8fc8ff;
border: 1px solid rgba(94, 173, 255, 0.2);
}

.home-values .home-section-heading h2,
.home-values .home-section-heading p {
color: #edf4fb;
}

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

.home-value-grid .home-card {
padding: 1.55rem;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: none;
}

.home-value-grid .home-card h3,
.home-value-grid .home-card p {
color: #eef5fd;
}

.home-process {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(233, 239, 247, 0.8));
}

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

.home-steps-grid .home-card {
padding: 1.5rem 1.45rem 1.45rem;
background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.home-steps-grid .ref-step-card {
padding-top: 1.5rem;
}

.home-steps-grid .ref-step-number {
position: static;
display: inline-flex;
margin-bottom: 1rem;
}

.home-steps-grid .home-card h3 {
margin-top: 0;
}

.home-control .home-track-grid {
align-items: stretch;
}

.home-control .home-card:not(.ref-dashboard-card) {
padding: 1.65rem;
background: linear-gradient(180deg, #ffffff 0%, #f7fafe 100%);
}

.home-control .home-track-form input {
min-height: 52px;
}

.home-control .home-track-form button {
min-height: 52px;
border-radius: 16px;
border: 0;
font-weight: 800;
background: linear-gradient(135deg, #2459f5, #1d4ed8);
color: #ffffff;
}

.home-reviews .home-card {
padding: 1.6rem;
background: linear-gradient(180deg, #ffffff 0%, #f7fafe 100%);
}

.home-review-grid .home-card {
position: relative;
}

.home-review-grid .home-card::before {
content: "";
display: block;
width: 3rem;
height: 4px;
margin-bottom: 1rem;
border-radius: 999px;
background: linear-gradient(90deg, #2c7dd1, #61c7ff);
}

.home-review-grid strong {
display: inline-block;
margin-top: 0.9rem;
color: #0f4c81;
}

.home-faq-section .home-faq-item {
padding: 1.45rem 1.5rem;
background: linear-gradient(180deg, #ffffff 0%, #f7fafe 100%);
}

.home-faq-section .home-faq-item p {
margin-top: 0.9rem;
color: #536274;
}

.home-final-cta .ref-home-cta {
padding: 2rem;
box-shadow: 0 28px 64px rgba(10, 19, 32, 0.22);
}

.home-final-cta .stack-actions .button {
min-width: 170px;
justify-content: center;
}

@media (max-width: 1100px) {
.home-assurance-grid,
.home-value-grid,
.home-steps-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 768px) {
.home-overview {
margin-top: 0;
}

.home-assurance-grid,
.home-value-grid,
.home-steps-grid {
grid-template-columns: 1fr;
}

.home-final-cta .ref-home-cta {
padding: 1.5rem;
}
}

.hero-micro {
margin-top: 14px;
font-size: 14px;
color: #c7d8e8;
font-weight: 600;
}

.tracker-highlight {
border: 1px solid rgba(97, 199, 255, 0.16);
box-shadow: 0 24px 54px rgba(3, 12, 24, 0.32);
}

.tracker-copy {
margin: 0.45rem 0 1rem;
color: #526173;
font-weight: 600;
}

.review-stars {
margin-bottom: 0.9rem;
font-size: 1rem;
letter-spacing: 0.16em;
color: #f5b301;
}

.sticky-cta {
position: fixed;
bottom: 20px;
right: 20px;
background: #1d4ed8;
padding: 12px 18px;
border-radius: 999px;
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
z-index: 999;
}

.sticky-cta a {
color: #fff;
font-weight: 600;
text-decoration: none;
}

/* Final services CTA contrast fix */
.public-page .services-modern-cta,
.public-page .container .services-modern-cta,
.public-page .section .services-modern-cta {
    background:
        radial-gradient(circle at top right, rgba(97, 199, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #0d1725 0%, #132238 100%) !important;
    border: 1px solid rgba(97, 199, 255, 0.12) !important;
    box-shadow: 0 28px 64px rgba(7, 14, 26, 0.24) !important;
}

.public-page .services-modern-cta h2,
.public-page .services-modern-cta p,
.public-page .services-modern-cta .services-modern-kicker {
    color: #eef5fd !important;
    opacity: 1 !important;
}

.public-page .services-modern-cta .services-modern-kicker {
    background: rgba(94, 173, 255, 0.14) !important;
    border: 1px solid rgba(94, 173, 255, 0.22) !important;
}

.public-page .services-modern-cta .button.button-secondary {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
}

.public-page .services-modern-cta .button.button-secondary:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.36) !important;
    color: #ffffff !important;
}

/* Global public-page rhythm and softer background */
body.public-page {
    background:
        radial-gradient(circle at top right, rgba(92, 176, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #eef3f9 0%, #e8eef6 100%) !important;
}

.public-page .page-intro {
    padding: 4.25rem 0 3.5rem;
}

.public-page .section {
    padding: 3.75rem 0;
}

.public-page .section-soft {
    background: rgba(236, 242, 249, 0.76);
}

.public-page .page-intro ~ .section .card,
.public-page .page-intro ~ .section .faq-item.card,
.public-page .page-intro ~ .section .services-modern-card,
.public-page .page-intro ~ .section .services-modern-story,
.public-page .page-intro ~ .section .services-modern-benefit,
.public-page .page-intro ~ .section .services-modern-panel,
.public-page .page-intro ~ .section .services-modern-cta,
.public-page .page-intro ~ .section .service-summary-card,
.public-page .home-card,
.public-page .brand-logo-card {
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%) !important;
}

@media (max-width: 768px) {
    .public-page .page-intro {
        padding: 3.5rem 0 2.75rem;
    }

    .public-page .section {
        padding: 3rem 0;
    }
}

/* Final light-card text contrast fixes */
.public-page .ref-dashboard-card,
.public-page .ref-dashboard-card h2,
.public-page .ref-dashboard-card h3,
.public-page .ref-dashboard-card p,
.public-page .ref-dashboard-card span,
.public-page .ref-dashboard-card strong,
.public-page .ref-dashboard-card .home-help-text,
.public-page .ref-dashboard-card .home-kicker,
.public-page .support-card,
.public-page .support-card h2,
.public-page .support-card h3,
.public-page .support-card p,
.public-page .support-card li,
.public-page .support-card strong,
.public-page .support-card a,
.public-page .home-values .home-card h3,
.public-page .home-values .home-card p {
    color: #22384d !important;
}

.public-page .ref-dashboard-card .home-kicker,
.public-page .support-card a {
    color: #155a96 !important;
}

.public-page .support-card a:hover {
    color: #0f4c81 !important;
}

.public-page .home-values .home-card {
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%) !important;
    border: 1px solid #dbe5ef !important;
}

/* Final darker theme and readability refinements */
body.public-page {
    background:
        radial-gradient(circle at top right, rgba(74, 148, 224, 0.1), transparent 24%),
        linear-gradient(180deg, #e6edf6 0%, #dde6f1 100%) !important;
}

.public-page p,
.public-page li,
.public-page dd,
.public-page dt,
.public-page label {
    color: #445a71;
}

.public-page .page-intro ~ .section .card,
.public-page .page-intro ~ .section .faq-item.card,
.public-page .page-intro ~ .section .services-modern-card,
.public-page .page-intro ~ .section .services-modern-story,
.public-page .page-intro ~ .section .services-modern-benefit,
.public-page .page-intro ~ .section .services-modern-panel,
.public-page .page-intro ~ .section .service-summary-card,
.public-page .home-card,
.public-page .brand-logo-card,
.public-page .home-values .home-card,
.public-page .about-story-copy,
.public-page .support-card {
    background: linear-gradient(180deg, #f9fbfe 0%, #edf3f9 100%) !important;
    border-color: #d4e0ec !important;
}

.public-page .about-metric {
    background: linear-gradient(180deg, rgba(43, 55, 78, 0.98), rgba(36, 46, 67, 0.98)) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Locked services CTA styling */
.public-page .section .services-modern-cta,
.public-page .container .services-modern-cta,
.public-page .page-intro ~ .section .services-modern-cta {
    background:
        radial-gradient(circle at top right, rgba(97, 199, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #0d1725 0%, #132238 100%) !important;
    border: 1px solid rgba(97, 199, 255, 0.12) !important;
    box-shadow: 0 28px 64px rgba(7, 14, 26, 0.24) !important;
}

.public-page .services-modern-cta h2,
.public-page .services-modern-cta p,
.public-page .services-modern-cta .services-modern-kicker {
    color: #eef5fd !important;
    opacity: 1 !important;
}

.public-page .services-modern-cta .services-modern-kicker {
    background: rgba(94, 173, 255, 0.14) !important;
    border: 1px solid rgba(94, 173, 255, 0.22) !important;
}

.public-page .services-modern-cta .button.button-secondary {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
}

.public-page .services-modern-cta .button.button-secondary:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.36) !important;
    color: #ffffff !important;
}

.public-page .about-metric strong {
    color: #7ebcff !important;
}

.public-page .about-metric span {
    color: rgba(241, 247, 255, 0.88) !important;
}

.public-page .about-story-copy h2,
.public-page .support-card h2,
.public-page .ref-dashboard-card h2,
.public-page .home-values .home-card h3 {
    color: #17283c !important;
}

.public-page .about-story-copy p,
.public-page .support-card p,
.public-page .ref-dashboard-card p,
.public-page .home-values .home-card p {
    color: #4a6077 !important;
}

/* Final About panel fix */
.public-page .about-story-layout .about-story-panel {
    background: linear-gradient(180deg, #152033 0%, #18243a 100%) !important;
    border: 1px solid rgba(92, 124, 168, 0.22) !important;
    box-shadow: 0 30px 68px rgba(11, 20, 36, 0.24) !important;
}

.public-page .about-story-layout .about-story-panel h2,
.public-page .about-story-layout .about-story-panel p,
.public-page .about-story-layout .about-story-panel li,
.public-page .about-story-layout .about-story-panel strong,
.public-page .about-story-layout .about-story-panel span {
    color: #f8fbff !important;
}

.public-page .about-story-layout .about-story-panel p {
    color: rgba(241, 247, 255, 0.92) !important;
}

.public-page .about-story-layout .about-story-panel .about-story-icon {
    background: rgba(46, 67, 111, 0.82) !important;
}

.public-page .about-story-layout .about-story-panel .about-metric {
    background: linear-gradient(180deg, rgba(42, 53, 76, 0.96), rgba(37, 47, 68, 0.96)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.public-page .about-story-layout .about-story-panel .about-metric strong {
    color: #7ebcff !important;
}

.public-page .about-story-layout .about-story-panel .about-metric span {
    color: rgba(241, 247, 255, 0.88) !important;
}

@media (max-width: 768px) {
.sticky-cta {
left: 16px;
right: 16px;
bottom: 16px;
text-align: center;
}
}

.services-section,
.home-showcase {
background: #f8fafc;
}

.home-showcase .home-kicker {
background: #eaf4ff;
color: #1d4ed8;
border: 1px solid #d8e7fb;
}

.home-showcase .home-section-heading h2,
.home-showcase .home-section-heading p {
color: #172233;
}

.service-card,
.home-showcase .service-card {
background: #ffffff;
border: 1px solid #e2e8f0;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
backdrop-filter: none;
}

.home-showcase .service-icon {
background: #eaf4ff;
color: #1d4ed8;
}

.home-showcase .ref-service-label {
background: #eef4fa;
color: #295784;
}

.home-showcase .ref-service-chip {
background: #eaf4ff;
color: #1d4ed8;
}

.home-showcase .home-card h3,
.home-showcase .service-card-summary,
.home-showcase .service-feature-list li,
.home-showcase .service-card-time {
color: #32485f;
}

.home-showcase .service-card-summary {
color: #41566d;
}

.home-showcase .ref-service-meta span {
background: #eef4fa;
color: #4c6580;
}

.home-showcase .ref-service-actions {
border-top: 1px solid #dde7f1;
}

.home-showcase .service-feature-list li {
border-bottom: 1px solid #e3ebf4;
}

.home-showcase .service-feature-list li::before {
background: #2459f5;
box-shadow: 0 0 0 3px rgba(36, 89, 245, 0.12);
}

.home-showcase .service-card-price {
color: #2459f5;
}

.home-showcase .card-trust {
color: #16a34a;
}

.service-card {
transition: transform 0.2s ease, box-shadow 0.2s ease;
cursor: pointer;
}

.service-card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-trust {
display: inline-block;
font-size: 12px;
color: #16a34a;
margin-bottom: 10px;
font-weight: 600;
}

.btn-primary {
background: #1d4ed8;
color: #fff;
}

.btn-primary:hover {
background: #1e40af;
}



/* Final end-of-file About story panel override */
.public-page .about-story-layout .about-story-panel-dark {
background: linear-gradient(180deg, #152033 0%, #18243a 100%) !important;
border: 1px solid rgba(92, 124, 168, 0.22) !important;
box-shadow: 0 30px 68px rgba(11, 20, 36, 0.24) !important;
padding: 2.35rem 2.35rem 2.2rem !important;
}

.public-page .about-story-layout .about-story-panel-dark::before {
background: linear-gradient(90deg, #4da0ff, #2459f5) !important;
}

.public-page .about-story-layout .about-story-panel-dark h2,
.public-page .about-story-layout .about-story-panel-dark p,
.public-page .about-story-layout .about-story-panel-dark li,
.public-page .about-story-layout .about-story-panel-dark strong,
.public-page .about-story-layout .about-story-panel-dark span {
color: #f8fbff !important;
}

.public-page .about-story-layout .about-story-panel-dark h2 {
margin: 0 0 1.5rem !important;
font-size: clamp(3rem, 4.6vw, 4.6rem) !important;
line-height: 1.08 !important;
letter-spacing: -0.04em !important;
}

.public-page .about-story-layout .about-story-panel-dark p {
color: rgba(241, 247, 255, 0.92) !important;
font-size: 1rem !important;
line-height: 1.95 !important;
max-width: 48rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-story-icon {
width: 4rem !important;
height: 4rem !important;
margin-bottom: 1.4rem !important;
border-radius: 20px !important;
background: rgba(46, 67, 111, 0.88) !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric {
background: linear-gradient(180deg, rgba(42, 53, 76, 0.98), rgba(37, 47, 68, 0.98)) !important;
border: 1px solid rgba(255, 255, 255, 0.08) !important;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
border-radius: 22px !important;
padding: 1.25rem 1.25rem 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric strong {
color: #7ebcff !important;
font-size: 1.15rem !important;
}

.public-page .about-story-layout .about-story-panel-dark .about-metric span {
color: rgba(241, 247, 255, 0.88) !important;
font-size: 0.8rem !important;
letter-spacing: 0.03em !important;
text-transform: uppercase !important;
margin-top: 0.45rem !important;
}
