:root {
    --navy-950: #0e2235;
    --navy-900: #133453;
    --navy-800: #1d4b74;
    --teal-600: #177e89;
    --teal-500: #1b9aaa;
    --amber-500: #f3b53f;
    --amber-400: #ffd073;
    --ink: #1a2b3d;
    --muted: #5f6f81;
    --line: rgba(19, 52, 83, 0.12);
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --shadow-lg: 0 24px 60px rgba(14, 34, 53, 0.10);
    --shadow-md: 0 16px 38px rgba(14, 34, 53, 0.08);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(243, 181, 63, 0.16), transparent 24%),
        radial-gradient(circle at top left, rgba(27, 154, 170, 0.11), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #f3f7fb 45%, #eef3f8 100%);
}
h1, h2, h3, h4, h5, h6, .navbar-brand strong, .section-title {
    font-family: "Sora", sans-serif;
}
a { text-decoration: none; }

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.top-ribbon {
    background: linear-gradient(90deg, #0f1f31, #17304a 56%, #1c4c5f 100%);
    color: #eff6fc;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-ribbon-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem 1.5rem;
    padding: 0.75rem 0;
}
.top-ribbon-link {
    color: #f8fbff;
    font-weight: 700;
}
.top-ribbon-link:hover,
.top-ribbon-link:focus {
    color: white;
}
.site-header .navbar {
    position: relative;
    min-height: 92px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
    border-bottom: 1px solid rgba(19, 52, 83, 0.08);
    box-shadow: 0 18px 40px rgba(14, 34, 53, 0.08);
    backdrop-filter: blur(18px) saturate(180%);
}
.site-header .navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(19, 52, 83, 0), rgba(23, 126, 137, 0.35), rgba(19, 52, 83, 0));
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    color: var(--navy-950);
}
.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}
.brand-mark {
    width: 3.35rem;
    height: 3.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 12px 18px rgba(7, 20, 31, 0.24));
}
.brand-copy strong {
    font-size: 1.02rem;
    letter-spacing: -0.02em;
    color: var(--navy-950);
}
.navbar-brand small {
    display: block;
    max-width: 24rem;
    color: rgba(26, 43, 61, 0.66);
    font-size: 0.75rem;
    line-height: 1.45;
}
.nav-utility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
    margin-right: 1.1rem;
}
.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(19, 52, 83, 0.10);
    background: rgba(19, 52, 83, 0.05);
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 700;
}
.nav-link {
    color: rgba(19, 52, 83, 0.88);
    font-weight: 800;
    padding: 0.75rem 0.95rem !important;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.active,
.show > .nav-link {
    color: var(--navy-950);
    background: rgba(23, 126, 137, 0.11);
    box-shadow: inset 0 0 0 1px rgba(23, 126, 137, 0.10);
}
.nav-menu-dropdown {
    min-width: 280px;
    margin-top: 0.85rem;
    padding: 0.55rem;
    border: 1px solid rgba(19, 52, 83, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 22px 48px rgba(12, 29, 44, 0.12);
}
.nav-menu-dropdown .dropdown-item {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    color: var(--ink);
    font-weight: 700;
    white-space: normal;
}
.nav-menu-dropdown .dropdown-item:hover,
.nav-menu-dropdown .dropdown-item:focus,
.nav-menu-dropdown .dropdown-item.active {
    color: var(--navy-950);
    background: rgba(23, 154, 170, 0.10);
}
.nav-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-left: 1rem;
}
.site-header .navbar-toggler {
    border: 1px solid rgba(19, 52, 83, 0.12);
    border-radius: 14px;
    padding: 0.55rem 0.7rem;
}
.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 126, 137, 0.14);
}
.site-header .navbar-collapse {
    gap: 1rem;
}
.site-header .navbar .btn-sm {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.site-header .navbar .btn-sm:hover,
.site-header .navbar .btn-sm:focus {
    transform: translateY(-1px);
}
.site-header .navbar .btn-light {
    color: white;
    background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(14, 34, 53, 0.12);
}
.site-header .navbar .btn-light:hover,
.site-header .navbar .btn-light:focus {
    color: white;
    background: linear-gradient(135deg, #102845, #166d76);
    border-color: transparent;
}
.site-header .navbar .btn-outline-light {
    color: var(--navy-950);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(19, 52, 83, 0.14);
}
.site-header .navbar .btn-outline-light:hover,
.site-header .navbar .btn-outline-light:focus {
    color: var(--navy-950);
    background: rgba(19, 52, 83, 0.06);
    border-color: rgba(19, 52, 83, 0.18);
}
.share-slider-shell {
    position: relative;
    z-index: 9;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.95));
    border-bottom: 1px solid rgba(19, 52, 83, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.share-slider-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 0.78rem 0;
}
.share-slider-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(23, 154, 170, 0.10);
    color: var(--teal-600);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}
.share-slider-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.share-slider-track {
    display: flex;
    width: max-content;
    animation: share-scroll 30s linear infinite;
}
.share-slider-marquee:hover .share-slider-track {
    animation-play-state: paused;
}
.share-slider-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-right: 0.85rem;
}
.share-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(19, 52, 83, 0.10);
    background: white;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(13, 31, 49, 0.05);
}
.share-chip:hover {
    color: white;
    background: linear-gradient(135deg, var(--navy-800), var(--teal-600));
    border-color: transparent;
}
.share-chip-copy {
    border: 1px solid rgba(19, 52, 83, 0.10);
    cursor: pointer;
}

@keyframes share-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.main-shell { min-height: calc(100vh - 180px); }
.hero-panel,
.section-shell,
.feature-card,
.pricing-card,
.info-card,
.table-shell,
.auth-card,
.tracking-card,
.hero-mini-card,
.summary-card,
.service-group-card,
.testimonial-card,
.metric-card,
.process-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.hero-panel,
.section-shell,
.table-shell,
.info-card {
    padding: clamp(1.2rem, 3vw, 2rem);
}
.hero-panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.95)),
        radial-gradient(circle at top right, rgba(243, 181, 63, 0.20), transparent 32%);
}
.hero-panel-premium {
    background:
        radial-gradient(circle at top left, rgba(23, 154, 170, 0.12), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(243, 181, 63, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.96));
}
.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -5% -18% auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(23, 126, 137, 0.14), transparent 66%);
    pointer-events: none;
}
.hero-side-card {
    height: 100%;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    color: var(--navy-900);
    background: rgba(243, 181, 63, 0.16);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-title {
    margin: 0.85rem 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: var(--navy-950);
}
.hero-title {
    margin-top: 1rem;
    max-width: 11ch;
    font-size: clamp(2.45rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: var(--navy-950);
}
.hero-title-wide {
    max-width: 13ch;
}
.hero-copy {
    margin-top: 1rem;
    max-width: 48rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}
.hero-actions,
.chip-row,
.dashboard-summary-grid,
.footer-grid,
.section-head,
.feedback-stack,
.hero-signal-bar,
.metric-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-actions { margin-top: 1.6rem; }
.hero-signal-bar > div,
.chip-row span,
.summary-card,
.hero-mini-card {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-lg);
}
.hero-signal-bar > div {
    min-width: 150px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 52, 83, 0.08);
    box-shadow: 0 14px 30px rgba(13, 31, 49, 0.06);
}
.hero-signal-bar strong {
    display: block;
    color: var(--navy-950);
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
}
.hero-signal-bar span {
    color: var(--muted);
    font-size: 0.92rem;
}
.chip-row span {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 52, 83, 0.10);
    color: var(--navy-950);
    font-weight: 700;
}
.hero-card-stack {
    display: grid;
    gap: 1rem;
}
.hero-visual-shell {
    position: relative;
    display: grid;
    gap: 1rem;
}
.hero-visual-panel {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(19, 52, 83, 0.10);
    background:
        linear-gradient(145deg, rgba(10, 31, 48, 0.96), rgba(19, 63, 95, 0.94) 72%, rgba(23, 126, 137, 0.86)),
        linear-gradient(90deg, var(--navy-900), var(--teal-600));
    box-shadow: 0 24px 50px rgba(12, 29, 44, 0.22);
    color: white;
}
.hero-visual-panel-soft {
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(243, 181, 63, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
    box-shadow: var(--shadow-md);
}
.hero-visual-panel h2 {
    margin: 0.55rem 0 0;
    font-size: 1.8rem;
    line-height: 1.15;
}
.hero-visual-panel-soft h2,
.hero-visual-panel-soft .hero-visual-overline {
    color: var(--navy-950);
}
.hero-visual-overline {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-visual-list,
.directory-preview-stack {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.25rem;
}
.hero-visual-list-item,
.directory-preview-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 18px;
}
.hero-visual-list-item {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.directory-preview-item {
    color: inherit;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(19, 52, 83, 0.08);
}
.hero-visual-list-item i {
    color: var(--amber-400);
    font-size: 1.1rem;
}
.hero-visual-list-item strong,
.directory-preview-item strong {
    display: block;
    margin-bottom: 0.25rem;
}
.hero-visual-list-item span,
.directory-preview-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.6;
}
.directory-preview-item span {
    color: var(--muted);
}
.hero-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}
.hero-visual-stat {
    display: block;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(19, 52, 83, 0.10);
    background: rgba(255, 255, 255, 0.96);
    color: inherit;
    box-shadow: 0 14px 30px rgba(13, 31, 49, 0.06);
}
.hero-visual-stat strong,
.hero-visual-stat small,
.hero-visual-stat span {
    display: block;
}
.hero-visual-stat small {
    color: var(--muted);
    margin-bottom: 0.45rem;
}
.hero-visual-stat strong {
    color: var(--navy-950);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    line-height: 1.35;
}
.hero-visual-stat span {
    margin-top: 0.35rem;
    color: var(--teal-600);
    font-size: 0.88rem;
    font-weight: 700;
}
.hero-visual-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}
.timeline-step {
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(19, 52, 83, 0.08);
    background: rgba(255, 255, 255, 0.88);
}
.timeline-step span,
.timeline-step strong,
.timeline-step small {
    display: block;
}
.timeline-step span {
    width: 2rem;
    height: 2rem;
    display: inline-grid;
    place-items: center;
    margin-bottom: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
    color: white;
    font-weight: 800;
}
.timeline-step strong {
    color: var(--navy-950);
}
.timeline-step small {
    margin-top: 0.35rem;
    color: var(--muted);
    line-height: 1.55;
}
.hero-mini-card small,
.summary-card small,
.metric-card small {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--muted);
}
.hero-mini-card strong,
.summary-card strong,
.metric-card strong {
    display: block;
    color: var(--navy-950);
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
}
.hero-mini-card.accent {
    background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
    color: white;
}
.hero-mini-card.accent small,
.hero-mini-card.accent strong { color: white; }

.section-head {
    justify-content: space-between;
    align-items: end;
    margin-bottom: 1.5rem;
}
.service-grid,
.catalog-preview-grid,
.process-grid,
.trust-grid,
.metric-grid {
    display: grid;
    gap: 1rem;
}
.service-category-block + .service-category-block {
    margin-top: 2rem;
}
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.catalog-preview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-group-card { padding: 1.3rem; }
.service-family-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 252, 255, 0.93));
    box-shadow: var(--shadow-md);
}
.service-family-card h3 {
    margin: 0.35rem 0 0;
}
.service-family-card p {
    margin: 0;
    color: var(--muted);
}
.service-family-label {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(23, 154, 170, 0.10);
    color: var(--teal-600);
    font-size: 0.8rem;
    font-weight: 800;
}
.service-family-list {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding-left: 1.1rem;
    color: var(--navy-950);
}
.metric-card,
.process-card {
    padding: 1.35rem;
}
.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.25rem;
    align-items: start;
}
.process-card h3,
.metric-card h3,
.feature-card h3 {
    margin: 0;
}
.metric-card span,
.process-card p {
    color: var(--muted);
    margin-bottom: 0;
}
.service-group-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.service-list {
    display: grid;
    gap: 0.9rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}
.service-list.compact li { gap: 0.65rem; }
.service-list i,
.service-icon {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 1rem;
    color: white;
    background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
}
.service-list span { color: var(--muted); }
.feature-card,
.pricing-card,
.info-card,
.testimonial-card,
.auth-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.4rem;
}
.info-card small {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--muted);
}
.info-card strong {
    color: var(--navy-950);
}
.service-directory-card {
    position: relative;
}
.service-directory-meta {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.directory-controls {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.directory-search-shell,
.directory-filter-shell,
.directory-empty-state,
.tracking-empty-state {
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19, 52, 83, 0.08);
    background: rgba(255, 255, 255, 0.88);
}
.directory-filter-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}
.directory-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.directory-filter-pill {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(19, 52, 83, 0.12);
    border-radius: 999px;
    background: white;
    color: var(--navy-900);
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
}
.directory-filter-pill.is-active {
    color: white;
    border-color: transparent;
    background: linear-gradient(135deg, var(--navy-800), var(--teal-600));
}
.directory-empty-state,
.tracking-empty-state {
    display: grid;
    place-items: center;
    gap: 0.45rem;
    text-align: center;
}
.directory-empty-state i,
.tracking-empty-state i {
    color: var(--teal-600);
    font-size: 1.6rem;
}
.directory-section + .directory-section {
    margin-top: 2.4rem;
    padding-top: 2.1rem;
    border-top: 1px solid rgba(19, 52, 83, 0.08);
}
.metric-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(243, 181, 63, 0.14);
    color: var(--navy-900);
    font-size: 0.9rem;
    font-weight: 700;
}
.pricing-value {
    color: var(--teal-600);
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    font-weight: 800;
}
.testimonial-card .stars {
    color: #df9c0f;
    font-size: 1.15rem;
}
.testimonial-card span,
.feature-card p,
.info-card p,
.pricing-card p {
    color: var(--muted);
}

.tracking-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}
.detail-rate-card {
    background:
        radial-gradient(circle at top right, rgba(243, 181, 63, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(19, 52, 83, 0.04), rgba(23, 154, 170, 0.08));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
}
.detail-fact-list,
.detail-doc-list {
    display: grid;
    gap: 0.9rem;
}
.detail-fact-list div {
    padding: 0.95rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(19, 52, 83, 0.08);
}
.detail-fact-list strong {
    display: block;
    margin-top: 0.3rem;
    color: var(--navy-950);
}
.tracking-card { padding: 1.5rem; }
.tracking-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.status-stepper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}
.status-step {
    padding: 0.95rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19, 52, 83, 0.10);
    background: rgba(255, 255, 255, 0.82);
}
.status-step span {
    display: inline-grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    margin-bottom: 0.6rem;
    border-radius: 999px;
    background: rgba(19, 52, 83, 0.08);
    color: var(--navy-900);
    font-weight: 800;
}
.status-step strong {
    display: block;
    color: var(--navy-950);
}
.status-step.done {
    background: rgba(23, 154, 170, 0.10);
    border-color: rgba(23, 154, 170, 0.22);
}
.status-step.done span,
.status-step.active span {
    background: linear-gradient(135deg, var(--navy-800), var(--teal-500));
    color: white;
}
.status-step.active {
    background: rgba(243, 181, 63, 0.14);
    border-color: rgba(243, 181, 63, 0.28);
}

.auth-shell {
    min-height: 72vh;
    display: grid;
    place-items: center;
}
.auth-card {
    width: min(1080px, 100%);
    overflow: hidden;
}
.auth-side {
    padding: 2rem;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(135deg, var(--navy-950), var(--teal-600));
}
.auth-side h1 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
}
.auth-stage {
    position: relative;
    min-height: 78vh;
    display: grid;
    place-items: center;
    padding: 0.75rem 0 1.5rem;
}
.auth-stage::before,
.auth-stage::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(8px);
}
.auth-stage::before {
    top: -40px;
    left: min(6vw, 64px);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(23, 154, 170, 0.16), transparent 68%);
}
.auth-stage::after {
    right: min(5vw, 56px);
    bottom: 10px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(243, 181, 63, 0.16), transparent 68%);
}
.auth-card-premium {
    position: relative;
    width: min(1180px, 100%);
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
    box-shadow: 0 32px 70px rgba(14, 34, 53, 0.14);
}
.auth-showcase,
.auth-form-pane {
    position: relative;
}
.auth-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 100%;
    padding: clamp(1.8rem, 3.8vw, 2.8rem);
    color: white;
    overflow: hidden;
}
.auth-showcase::after {
    content: "";
    position: absolute;
    inset: auto -10% -14% auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 66%);
}
.auth-showcase > * {
    position: relative;
    z-index: 1;
}
.auth-showcase-user {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(155deg, #0b2233 0%, #144b72 58%, #1b9aaa 100%);
}
.auth-showcase-staff {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(155deg, #102136 0%, #1b395a 52%, #177e89 100%);
}
.auth-showcase h1 {
    margin: 0.35rem 0 0;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}
.auth-showcase p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 1rem;
    line-height: 1.8;
}
.auth-showcase-band,
.auth-micro-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.auth-showcase-band span,
.auth-micro-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
}
.auth-showcase-band span {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.auth-feature-grid {
    display: grid;
    gap: 0.9rem;
}
.auth-feature-card {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.auth-feature-card i {
    color: var(--amber-400);
    font-size: 1.05rem;
}
.auth-feature-card strong,
.auth-feature-card span,
.auth-support-card small,
.auth-support-card strong,
.auth-support-card span {
    display: block;
}
.auth-feature-card strong {
    margin-bottom: 0.28rem;
    color: white;
}
.auth-feature-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
}
.auth-support-card {
    margin-top: auto;
    padding: 1.05rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.auth-support-card small {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.28rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.auth-support-card strong {
    color: white;
    font-size: 1.1rem;
}
.auth-support-card span {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 0.2rem;
}
.auth-form-pane {
    padding: clamp(1.2rem, 3vw, 2rem);
    background:
        radial-gradient(circle at top right, rgba(243, 181, 63, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(247, 251, 255, 0.92), rgba(241, 246, 251, 0.98));
}
.auth-form-frame {
    max-width: 610px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: 28px;
    border: 1px solid rgba(19, 52, 83, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 40px rgba(14, 34, 53, 0.08);
    backdrop-filter: blur(12px);
}
.auth-form-head {
    margin-bottom: 1.35rem;
}
.auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: var(--teal-600);
    background: rgba(23, 154, 170, 0.10);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.auth-form-head h2 {
    margin: 1rem 0 0.6rem;
    color: var(--navy-950);
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.auth-form-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}
.auth-form {
    display: grid;
    gap: 1.15rem;
}
.auth-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.auth-field {
    display: grid;
    gap: 0.45rem;
}
.auth-field-full {
    grid-column: 1 / -1;
}
.auth-field .form-label {
    margin-bottom: 0;
    color: var(--navy-950);
    font-size: 0.92rem;
    font-weight: 800;
}
.auth-form-pane .form-control {
    min-height: 54px;
    border-radius: 16px;
    border-color: rgba(19, 52, 83, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80);
}
.auth-captcha-card,
.auth-inline-note {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 20px;
}
.auth-captcha-card {
    border: 1px solid rgba(19, 52, 83, 0.10);
    background: linear-gradient(135deg, rgba(19, 52, 83, 0.04), rgba(23, 154, 170, 0.07));
}
.auth-captcha-card small,
.auth-captcha-card strong,
.auth-captcha-card span {
    display: block;
}
.auth-captcha-card small {
    color: var(--muted);
    margin-bottom: 0.24rem;
}
.auth-captcha-card strong {
    color: var(--navy-950);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}
.auth-captcha-card span {
    color: var(--teal-600);
    font-size: 0.84rem;
    font-weight: 800;
    text-align: right;
}
.auth-inline-note {
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid rgba(23, 154, 170, 0.12);
    background: rgba(23, 154, 170, 0.08);
}
.auth-inline-note i {
    color: var(--teal-600);
    font-size: 1rem;
}
.auth-inline-note span {
    color: var(--navy-900);
    line-height: 1.65;
}
.auth-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.auth-action-row .btn {
    min-height: 54px;
    padding-inline: 1.3rem;
}
.auth-micro-list span {
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(19, 52, 83, 0.10);
}
.auth-micro-list i {
    color: var(--teal-600);
}

.table-shell .table { margin-bottom: 0; }
.table-shell thead th {
    color: var(--navy-950);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.table-shell tbody td { vertical-align: middle; }
.feedback-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(19, 52, 83, 0.05);
}

.admin-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1.25rem;
    align-items: start;
}
.admin-form-panel,
.admin-side-panel {
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
}
.admin-side-panel {
    background:
        radial-gradient(circle at top right, rgba(243, 181, 63, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(19, 52, 83, 0.04), rgba(23, 154, 170, 0.08));
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.field-help {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.88rem;
}
.user-role-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}
.user-role-pill.role-admin {
    background: rgba(19, 52, 83, 0.10);
    color: var(--navy-900);
}
.user-role-pill.role-operator {
    background: rgba(23, 126, 137, 0.12);
    color: #0f6870;
}
.user-role-pill.role-vendor {
    background: rgba(83, 99, 255, 0.12);
    color: #3040a8;
}
.user-role-pill.role-user {
    background: rgba(243, 181, 63, 0.16);
    color: #8b5e08;
}

.check-stack {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}
.check-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(19, 52, 83, 0.08);
}
.auth-side .check-item {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}
.auth-side .field-help,
.auth-side .check-item strong {
    color: white;
}
.check-item i {
    color: var(--amber-500);
    font-size: 1.05rem;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
}
.btn-brand {
    color: white;
    border: none;
    background: linear-gradient(135deg, var(--navy-800), var(--teal-600));
}
.btn-brand:hover {
    color: white;
    transform: translateY(-1px);
}
.btn-outline-brand {
    color: var(--navy-900);
    border: 1px solid rgba(19, 52, 83, 0.18);
    background: white;
}
.btn-outline-brand:hover {
    color: white;
    background: linear-gradient(135deg, var(--navy-800), var(--teal-600));
    border-color: transparent;
}

.form-control,
.form-select {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    border-color: #d2dfeb;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 0.25rem rgba(27, 154, 170, 0.12);
}
.alert {
    border-radius: var(--radius-md);
}

.accordion-item {
    border: 1px solid rgba(19, 52, 83, 0.10);
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 0.8rem;
}
.accordion-button {
    font-weight: 700;
    color: var(--navy-950);
    background: rgba(255, 255, 255, 0.90);
}
.accordion-button:not(.collapsed) {
    color: var(--navy-950);
    background: rgba(243, 181, 63, 0.14);
    box-shadow: none;
}

.site-footer {
    margin-top: 3rem;
    padding: 2rem 0;
    color: #dcecff;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}
.footer-links {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links a {
    color: inherit;
}
.footer-links a:hover {
    color: white;
}
.footer-contact-list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}
.support-sidebar-grid {
    display: grid;
    gap: 1rem;
}
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, #14996e, #20bf8f);
    box-shadow: 0 16px 30px rgba(20, 153, 110, 0.28);
}

.section-copy {
    max-width: 58rem;
    margin-top: 0.85rem;
    color: var(--muted);
    line-height: 1.8;
}
.category-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.category-cloud a,
.category-cloud span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(19, 52, 83, 0.10);
    background: rgba(255, 255, 255, 0.88);
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 800;
}
.category-cloud a:hover {
    color: white;
    background: linear-gradient(135deg, var(--navy-800), var(--teal-600));
    border-color: transparent;
}
.premium-dark-panel,
.cta-banner,
.dashboard-hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}
.premium-dark-panel {
    padding: 1.5rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 28%),
        linear-gradient(155deg, rgba(10, 31, 48, 0.98), rgba(20, 73, 109, 0.94) 62%, rgba(23, 126, 137, 0.90));
    box-shadow: 0 24px 50px rgba(12, 29, 44, 0.22);
}
.premium-dark-panel::after,
.cta-banner::after,
.dashboard-hero-shell::after {
    content: "";
    position: absolute;
    inset: auto -8% -24% auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
    pointer-events: none;
}
.premium-dark-panel > *,
.cta-banner > *,
.dashboard-hero-shell > * {
    position: relative;
    z-index: 1;
}
.premium-dark-panel h2,
.dashboard-hero-shell h2 {
    margin: 0.55rem 0 0;
    font-size: 1.85rem;
    line-height: 1.12;
}
.premium-dark-panel p,
.premium-dark-panel span,
.premium-dark-panel small {
    color: rgba(255, 255, 255, 0.78);
}
.premium-stat-grid,
.dashboard-kpi-grid {
    display: grid;
    gap: 1rem;
}
.premium-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
}
.premium-stat-card {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}
.premium-stat-card small,
.premium-stat-card strong,
.premium-stat-card span {
    display: block;
}
.premium-stat-card small {
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.68);
}
.premium-stat-card strong {
    color: white;
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
}
.premium-stat-card span {
    margin-top: 0.28rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.86rem;
}
.premium-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}
.premium-list-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
}
.premium-list-item strong,
.premium-list-item span {
    display: block;
}
.premium-list-item strong {
    color: white;
    margin-bottom: 0.22rem;
}
.premium-list-item span {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
    font-size: 0.92rem;
}
.premium-list-item i:last-child {
    margin-left: auto;
    align-self: center;
    color: rgba(255, 255, 255, 0.76);
}
.premium-list-item:hover {
    color: inherit;
    transform: translateY(-1px);
}
.premium-list-item-static:hover {
    transform: none;
}
.cta-banner,
.dashboard-hero-shell {
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(145deg, rgba(10, 31, 48, 0.98), rgba(18, 58, 91, 0.94) 66%, rgba(23, 126, 137, 0.92));
    box-shadow: 0 24px 50px rgba(12, 29, 44, 0.22);
}
.cta-banner .eyebrow,
.dashboard-hero-shell .eyebrow {
    color: white;
    background: rgba(255, 255, 255, 0.12);
}
.cta-banner .section-title,
.cta-banner .section-copy,
.dashboard-hero-shell .section-title,
.dashboard-hero-shell .section-copy {
    color: white;
}
.dashboard-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.dashboard-spotlight-card .premium-list {
    margin-top: 1rem;
}
.status-pill-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    border: 1px solid transparent;
}
.status-badge.is-pending,
.status-badge.is-unpaid,
.status-badge.is-open {
    color: #8b5e08;
    background: rgba(243, 181, 63, 0.16);
    border-color: rgba(243, 181, 63, 0.24);
}
.status-badge.is-processing {
    color: #0b6870;
    background: rgba(23, 154, 170, 0.14);
    border-color: rgba(23, 154, 170, 0.22);
}
.status-badge.is-approved,
.status-badge.is-printed,
.status-badge.is-walletdebited {
    color: #184e94;
    background: rgba(50, 115, 220, 0.14);
    border-color: rgba(50, 115, 220, 0.22);
}
.status-badge.is-shipped,
.status-badge.is-delivered {
    color: #0f7a46;
    background: rgba(15, 157, 88, 0.14);
    border-color: rgba(15, 157, 88, 0.22);
}
.status-badge.is-completed,
.status-badge.is-paid,
.status-badge.is-published {
    color: #0f7a46;
    background: rgba(15, 157, 88, 0.14);
    border-color: rgba(15, 157, 88, 0.22);
}
.status-badge.is-failed,
.status-badge.is-rejected,
.status-badge.is-closed {
    color: #a2332f;
    background: rgba(210, 48, 37, 0.12);
    border-color: rgba(210, 48, 37, 0.22);
}
.status-badge.is-complaint,
.status-badge.is-feedback {
    color: var(--navy-900);
    background: rgba(19, 52, 83, 0.08);
    border-color: rgba(19, 52, 83, 0.12);
}
.contact-form-shell {
    gap: 1.4rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}
.gallery-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-height: 270px;
    padding: 1.4rem;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    box-shadow: 0 24px 45px rgba(12, 29, 44, 0.14);
}
.gallery-card::after {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -18%;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
    pointer-events: none;
}
.gallery-card > * {
    position: relative;
    z-index: 1;
}
.gallery-card:hover {
    color: white;
    transform: translateY(-2px);
}
.gallery-card-lead {
    min-height: 100%;
    grid-row: span 2;
}
.gallery-card-top,
.gallery-card-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}
.gallery-card .service-family-label {
    color: white;
    background: rgba(255, 255, 255, 0.14);
}
.gallery-card-index {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.gallery-card-icon {
    width: 4rem;
    height: 4rem;
    display: inline-grid;
    place-items: center;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.gallery-card h3 {
    margin: 0;
    color: white;
    font-size: 1.35rem;
}
.gallery-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.72;
}
.gallery-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 700;
}
.gallery-tone-a {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(145deg, #0b2440, #15537f 62%, #1aa487);
}
.gallery-tone-b {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(145deg, #1d3557, #2a5f86 58%, #efb44b);
}
.gallery-tone-c {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(145deg, #123450, #166579 56%, #2ac28f);
}
.gallery-tone-d {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(145deg, #3a244d, #2b5c8f 56%, #1aa487);
}

@media (max-width: 1199.98px) {
    .nav-actions { margin-left: 0; margin-top: 0.9rem; }
    .nav-utility { display: none !important; }
    .nav-menu-dropdown {
        min-width: 100%;
        margin-top: 0.4rem;
        box-shadow: none;
    }
    .share-slider-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .service-grid,
    .catalog-preview-grid,
    .metric-grid,
    .footer-grid,
    .process-grid,
    .trust-grid,
    .tracking-info-grid,
    .directory-controls {
        grid-template-columns: 1fr 1fr;
    }
    .section-head { display: block; }
    .admin-form-grid,
    .form-grid-2,
    .status-stepper,
    .detail-hero-grid,
    .hero-visual-grid,
    .hero-visual-timeline {
        grid-template-columns: 1fr;
    }
    .premium-stat-grid,
    .dashboard-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-card-lead {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 320px;
    }
    .auth-form-grid {
        grid-template-columns: 1fr;
    }
    .auth-showcase,
    .auth-form-pane {
        padding: 1.35rem;
    }
    .top-ribbon-inner { justify-content: center; }
}

@media (max-width: 767.98px) {
    .service-grid,
    .catalog-preview-grid,
    .metric-grid,
    .footer-grid,
    .process-grid,
    .trust-grid,
    .tracking-form,
    .tracking-info-grid,
    .directory-controls {
        grid-template-columns: 1fr;
    }
    .hero-title { max-width: none; }
    .nav-actions,
    .hero-actions { width: 100%; }
    .nav-actions .btn,
    .hero-actions .btn,
    .tracking-form .btn {
        width: 100%;
    }
    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
    }
    .premium-stat-grid,
    .dashboard-kpi-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .share-slider-label {
        justify-content: center;
    }
    .share-slider-marquee {
        mask-image: none;
    }
    .share-slider-track {
        animation-duration: 36s;
    }
    .category-cloud,
    .status-pill-stack {
        width: 100%;
    }
    .category-cloud a,
    .category-cloud span {
        width: 100%;
        justify-content: center;
    }
    .hero-visual-panel,
    .service-family-card,
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.2rem;
    }
    .auth-stage {
        min-height: auto;
        padding-top: 0;
    }
    .auth-card-premium {
        border-radius: 24px;
    }
    .auth-form-frame,
    .auth-showcase {
        padding: 1.2rem;
    }
    .auth-captcha-card,
    .auth-inline-note,
    .auth-action-row {
        display: grid;
    }
    .auth-action-row .btn {
        width: 100%;
    }
}
