/* public/css/landing.css - Bento Grid Layout with Logo Brand Colors for TrungThanh Express */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

:root {
    --color-brand-blue: #1a56db;
    --color-brand-blue-hover: #1e40af;
    --color-brand-red: #e02424;
    --color-brand-red-hover: #c81e1e;
    
    --color-bg: #f8fafc;
    --color-card-bg: #ffffff;
    --color-text-main: #0f172a;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    
    --font-display: 'Google Sans', 'Inter', sans-serif;
    --font-body: 'Google Sans', 'Inter', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    
    --radius-bento: 24px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-bento: 0 10px 30px -10px rgba(26, 86, 219, 0.06), 0 1px 3px rgba(0,0,0,0.01);
    --shadow-bento-hover: 0 20px 40px -15px rgba(26, 86, 219, 0.12), 0 4px 6px rgba(0,0,0,0.02);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- COMMON CONTAINER & GRID --- */
.container-large {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Base Bento Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.bento-cell {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-bento);
    padding: 32px;
    box-shadow: var(--shadow-bento);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.bento-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-bento-hover);
    border-color: rgba(26, 86, 219, 0.2);
}

/* Specific Spans */
.span-12 { grid-column: span 12; }
.span-8 { grid-column: span 8; }
.span-7 { grid-column: span 7; }
.span-6 { grid-column: span 6; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }

/* --- HEADER & NAVIGATION --- */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--color-brand-blue);
    background: #fff;
    padding: 4px;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--color-brand-blue);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-brand-red);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    color: var(--color-text-main);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    padding: 4px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--color-brand-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-brand-blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-portal-wrap {
    text-decoration: none;
}

.btn-bento-action {
    background: var(--color-brand-blue);
    color: #fff;
    border: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.15);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-bento-action:hover {
    background: var(--color-brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 86, 219, 0.25);
}

.btn-bento-action.red {
    background: var(--color-brand-red);
    box-shadow: 0 4px 12px rgba(224, 36, 36, 0.15);
}

.btn-bento-action.red:hover {
    background: var(--color-brand-red-hover);
    box-shadow: 0 6px 16px rgba(224, 36, 36, 0.25);
}

.btn-bento-action.outline {
    background: transparent;
    color: var(--color-text-main);
    border: 1.5px solid var(--color-border);
    box-shadow: none;
}

.btn-bento-action.outline:hover {
    background: var(--color-bg);
    border-color: var(--color-brand-blue);
    color: var(--color-brand-blue);
}

/* --- BENTO CELLS HIGHLIGHTS --- */
.bento-cell.dark-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    background-image: 
        linear-gradient(rgba(26, 86, 219, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 86, 219, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #0f172a;
    border: 1px solid rgba(26, 86, 219, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    font-family: var(--font-mono);
    border: 1px solid rgba(224, 36, 36, 0.2);
    background: rgba(224, 36, 36, 0.05);
    color: var(--color-brand-red);
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--color-brand-red);
}

.hero-desc {
    font-size: 16px;
    color: #94a3b8;
    max-width: 500px;
    margin-bottom: 24px;
}

/* Tracking box in bento cell */
.track-bar-wrap {
    background: #1e293b;
    border: 1.5px solid rgba(255,255,255,0.1);
    padding: 6px;
    border-radius: var(--radius-sm);
    display: flex;
    max-width: 500px;
    transition: var(--transition);
}

.track-bar-wrap:focus-within {
    border-color: var(--color-brand-blue);
    box-shadow: 0 0 12px rgba(26, 86, 219, 0.2);
}

.track-input-icon {
    display: flex;
    align-items: center;
    padding-left: 12px;
    color: var(--color-brand-blue);
    font-size: 16px;
}

.track-input {
    background: transparent;
    border: none;
    outline: none;
    flex-grow: 1;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 8px 12px;
    color: #fff;
}

.track-input::placeholder {
    color: #64748b;
}

/* Bento cell Portal link info card */
.bento-cell.portal-promo {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(26, 86, 219, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portal-promo-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--color-brand-blue);
    margin-bottom: 10px;
}

.portal-promo-desc {
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
}

/* Bento Stats Box */
.bento-cell.stats-cell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

.stats-grid-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.mini-stat-item {
    border-left: 3px solid var(--color-brand-blue);
    padding-left: 14px;
}

.mini-stat-item.red-border {
    border-left-color: var(--color-brand-red);
}

.mini-stat-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--color-text-main);
    line-height: 1.1;
}

.mini-stat-lbl {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

/* --- CALCULATOR BENTO --- */
.price-section-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 16px;
    color: var(--color-brand-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.calc-form-col {
    display: flex;
    flex-direction: column;
    position: relative;
}

.calc-lbl {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.calc-select, .calc-inp {
    padding: 10px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    color: var(--color-text-main);
    background: var(--color-bg);
    transition: var(--transition);
}

.calc-select:focus, .calc-inp:focus {
    background: #fff;
    border-color: var(--color-brand-blue);
}

/* Autocomplete search results */
.autocomplete-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 100;
    max-height: 180px;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
}

.autocomplete-item {
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--color-border);
}

.autocomplete-item:hover {
    background-color: var(--color-bg);
    color: var(--color-brand-blue);
}

.autocomplete-loading, .autocomplete-no-result {
    padding: 10px 14px;
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: center;
}

.calc-res-box {
    background: #f8fafc;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 16px;
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.calc-res-title {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-brand-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.calc-res-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 8px;
    font-size: 14px;
}

.res-lbl {
    font-weight: 500;
    color: var(--color-text-muted);
}

.res-val {
    font-weight: 700;
    text-align: right;
}

.res-val.highlight {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--color-brand-red);
    font-weight: 900;
}

/* Price Table Bento cell */
.price-table-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: var(--color-text-main);
    margin-bottom: 16px;
    text-transform: uppercase;
    border-bottom: 2.5px solid var(--color-brand-blue);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.price-table th {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-weight: 800;
    text-align: center;
    padding: 10px 6px;
    border: 1px solid var(--color-border);
    white-space: nowrap;
}

.price-table td {
    padding: 10px 6px;
    border: 1px solid var(--color-border);
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
}

.price-table tr:nth-child(even) {
    background-color: #fafbfc;
}

/* --- SERVICES BENTO CARDS --- */
.svc-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(26, 86, 219, 0.05);
    color: var(--color-brand-blue);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.svc-card:hover .svc-icon-wrap {
    background: var(--color-brand-blue);
    color: #fff;
}

.svc-card:nth-child(even):hover .svc-icon-wrap {
    background: var(--color-brand-red);
}

.svc-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 10px;
}

.svc-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.svc-more {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-brand-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

/* --- DYNAMIC TRACKING RESULT IN BENTO GRID --- */
.track-results-sec {
    grid-column: span 12;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.cargo-manifest-card {
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-bento);
    box-shadow: var(--shadow-bento);
    padding: 32px;
}

.cargo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px dashed var(--color-border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.cargo-logo-area {
    display: flex;
    flex-direction: column;
}

.cargo-logo-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

.cargo-logo-sub {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-brand-blue);
    font-weight: 500;
    margin-top: 2px;
}

.cargo-barcode {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.barcode-lines {
    height: 30px;
    width: 140px;
    background: repeating-linear-gradient(90deg, #000, #000 2px, #fff 2px, #fff 5px, #000 5px, #000 6px, #fff 6px, #fff 8px);
    margin-bottom: 4px;
}

.barcode-text {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 1.5px;
}

.cargo-title-stamp {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    font-size: 14px;
    margin-bottom: 28px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item .lbl {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.detail-item .val {
    font-weight: 700;
    color: var(--color-text-main);
}

.detail-item .val.highlight {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-brand-blue);
}

.detail-stamp-wrap {
    display: flex;
    align-items: center;
}

.cargo-stamp {
    border: 3px double var(--color-brand-red);
    color: var(--color-brand-red);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 2px 8px;
    transform: rotate(0deg) scale(0);
    display: inline-block;
    transform-origin: center center;
    animation: stampPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.6s;
}

.cargo-stamp.done {
    border-color: #059669;
    color: #059669;
}

.cargo-stamp.transit {
    border-color: var(--color-brand-blue);
    color: var(--color-brand-blue);
}

.cargo-stamp.pending {
    border-color: #f59e0b;
    color: #f59e0b;
}

.cargo-stamp.failed {
    border-color: #ef4444;
    color: #ef4444;
}

/* ==========================================
   PUBLIC TRACKING REDESIGN
   ========================================== */
.public-tracking-card {
    padding: 0;
    overflow: hidden;
}

.public-tracking-card .cargo-header {
    margin: 0;
    padding: 24px 28px;
    border-bottom: 1px solid var(--color-border);
    background: #fff;
}

.public-tracking-card > .cargo-title-stamp {
    display: none;
}

.public-tracking-card > .details-grid {
    display: none;
}

.public-tracking-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 20px;
    padding: 24px 28px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.public-tracking-summary,
.public-tracking-contact-card,
.public-tracking-goods-item {
    border: 1px solid var(--color-border);
    background: #fff;
    border-radius: 12px;
}

.public-tracking-summary {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.public-tracking-eyebrow,
.public-tracking-section-title,
.public-tracking-goods-item span,
.public-tracking-route span,
.public-tracking-meta span,
.public-tracking-timeline-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.public-tracking-order-code {
    font-family: var(--font-mono);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    color: var(--color-brand-blue);
    word-break: break-word;
}

.public-tracking-route {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid var(--color-border);
}

.public-tracking-route div,
.public-tracking-meta div {
    min-width: 0;
}

.public-tracking-route strong,
.public-tracking-meta strong,
.public-tracking-goods-item strong {
    display: block;
    margin-top: 3px;
    color: var(--color-text-main);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
    word-break: break-word;
}

.public-tracking-route i {
    color: var(--color-brand-red);
}

.public-tracking-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.public-tracking-meta div {
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
}

.public-tracking-infobar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pt-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
}

.pt-info.pt-info-date {
    background: linear-gradient(135deg, #fff1f2 0%, #fff7f7 100%);
    border-color: #fecdd3;
}

.pt-info > i {
    font-size: 22px;
    line-height: 1;
    color: var(--color-brand-blue);
    flex-shrink: 0;
}

.pt-info.pt-info-date > i {
    color: var(--color-brand-red);
}

.pt-info > div {
    min-width: 0;
}

.pt-info span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pt-info strong {
    display: block;
    margin-top: 3px;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
    color: var(--color-text-main);
    word-break: break-word;
}

@media (max-width: 560px) {
    .public-tracking-infobar { grid-template-columns: 1fr; }
}

.public-tracking-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.public-tracking-contact-card {
    padding: 18px;
    min-width: 0;
}

.public-tracking-contact-card.sender {
    border-top: 3px solid var(--color-brand-blue);
}

.public-tracking-contact-card.recipient {
    border-top: 3px solid var(--color-brand-red);
}

.public-tracking-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.public-tracking-section-title i {
    color: var(--color-brand-blue);
}

.public-tracking-contact-card.recipient .public-tracking-section-title i {
    color: var(--color-brand-red);
}

.public-tracking-person {
    font-size: 18px;
    font-weight: 900;
    color: var(--color-text-main);
    line-height: 1.25;
    margin-bottom: 12px;
    word-break: break-word;
}

.public-tracking-line {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
}

.public-tracking-line + .public-tracking-line {
    margin-top: 8px;
}

.public-tracking-line i {
    margin-top: 2px;
    color: #94a3b8;
}

.public-tracking-goods-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0 28px 22px;
}

.public-tracking-goods-item {
    padding: 14px 16px;
    min-width: 0;
}

.public-tracking-timeline-title {
    margin: 0 28px;
    padding-top: 22px;
    border-top: 1px dashed var(--color-border);
}

.public-tracking-card .public-tracking-timeline {
    margin-top: 10px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
}

/* ===== TRA CỨU — NÂNG CẤP GIAO DIỆN (v2) ===== */
.public-tracking-card {
    border: 1px solid #e8eef5 !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 50px -22px rgba(11, 132, 201, 0.30), 0 2px 10px rgba(15, 23, 42, 0.05) !important;
}

.public-tracking-card .cargo-header {
    background: linear-gradient(120deg, #eef6ff 0%, #ffffff 56%, #fff4f4 100%);
    padding: 22px 30px;
    border-bottom: 1px solid #eef2f7;
    align-items: center;
}

.public-tracking-layout {
    grid-template-columns: 1fr;
    background: #fbfcfe;
    padding: 26px 30px 24px;
    gap: 22px;
}

.public-tracking-summary {
    border: 1px solid #eef2f7;
    border-radius: 20px;
    box-shadow: 0 6px 22px -14px rgba(15, 23, 42, 0.16);
    padding: 24px;
    gap: 18px;
}

.public-tracking-order-code {
    font-size: 34px;
    letter-spacing: -0.5px;
}

.public-tracking-card .cargo-stamp {
    border: none !important;
    border-radius: 999px;
    padding: 8px 18px 8px 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: #eef2f7;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform-origin: left center;
}

.public-tracking-card .cargo-stamp::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.public-tracking-card .cargo-stamp.done { background: #dcfce7; color: #047857; }
.public-tracking-card .cargo-stamp.transit { background: #dbeafe; color: #1e5fa5; }
.public-tracking-card .cargo-stamp.pending { background: #fef3c7; color: #b45309; }
.public-tracking-card .cargo-stamp.failed { background: #fee2e2; color: #dc2626; }

.public-tracking-contact-grid { gap: 18px; }

.public-tracking-contact-card {
    border: 1px solid #eef2f7;
    border-radius: 20px;
    box-shadow: 0 6px 22px -16px rgba(15, 23, 42, 0.20);
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.public-tracking-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -18px rgba(15, 23, 42, 0.30);
}

.public-tracking-person { font-size: 20px; }
.public-tracking-line { font-size: 13.5px; }

.public-tracking-card > .cargo-title-stamp[data-i18n="manifest_transit_log"] {
    display: block !important;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #64748b;
    border: none !important;
    margin: 6px 30px 0 !important;
    padding: 18px 0 0 !important;
    position: relative;
}

.public-tracking-card > .cargo-title-stamp[data-i18n="manifest_transit_log"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0 18%, #e2e8f0 82%, transparent);
}

/* Vertical Route Timeline */
.tracking-timeline-box {
    position: relative;
    padding-left: 36px;
}

.tracking-timeline-box::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 11px;
    width: 2px;
    background: var(--color-border);
}

.timeline-step {
    position: relative;
    padding-bottom: 24px;
    opacity: 0.35;
    transition: var(--transition);
}

.timeline-step.active {
    opacity: 1;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.step-icon {
    position: absolute;
    left: -42px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.timeline-step.active .step-icon {
    border-color: var(--color-brand-blue);
    background: #eff6ff;
    box-shadow: 0 0 15px rgba(26, 86, 219, 0.2);
}

.timeline-step.active:last-child .step-icon {
    border-color: #059669;
    background: #ecfdf5;
    box-shadow: 0 0 15px rgba(5, 150, 105, 0.25);
}

.timeline-step.failed {
    opacity: 1;
}

.timeline-step.failed .step-icon {
    border-color: #ef4444;
    background: #fef2f2;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
}

.timeline-step.failed .step-title {
    color: #ef4444;
    font-weight: 900;
}

.timeline-step.failed .step-time {
    color: #ef4444;
}

.step-info {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-left: 10px;
    border: 1px solid var(--color-border);
}

.step-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--color-text-main);
}

.step-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.step-time {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-brand-blue);
    font-weight: 700;
    margin-top: 4px;
}

/* --- quy trình vận chuyển bento style --- */
.process-sec {
    background: var(--color-bg);
}

.bento-process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-process-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-step-num {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--color-brand-blue);
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bento-process-item:nth-child(even) .process-step-num {
    background: var(--color-brand-red);
}

.process-info {
    display: flex;
    flex-direction: column;
}

.process-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 4px;
}

.process-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --- BENTO NEWS ARTICLES --- */
.bento-news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-news-item {
    display: grid;
    grid-template-columns: 0.25fr 0.75fr;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
}

.bento-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bento-news-item:hover {
    transform: translateX(4px);
}

.news-img {
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

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

.news-info {
    display: flex;
    flex-direction: column;
}

.news-date {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--color-brand-blue);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.news-title {
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 2px;
}

.news-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partners-section {
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 32px 0;
    overflow: hidden;
}

.partners-wrap {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

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

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease, opacity 0.3s ease;
    filter: none;
    opacity: 1;
    cursor: pointer;
    flex-shrink: 0;
    min-height: 54px;
    min-width: 128px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
}

.partner-logo:hover {
    filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.12));
    transform: translateY(-2px);
}

.partner-logo img {
    display: block;
    max-width: 170px;
    max-height: 42px;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- CONTACT SECTION --- */
.contact-sec {
    background: #ffffff;
}

.contact-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(26, 86, 219, 0.05);
    color: var(--color-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-lbl {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    color: var(--color-text-muted);
}

.info-val {
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--color-brand-blue);
    color: #fff;
    border-color: var(--color-brand-blue);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.textarea-control {
    resize: none;
    height: 80px;
}

.sec-title-wrap {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.sec-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* --- FOOTER --- */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px;
    font-size: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 2px;
}

.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-desc {
    color: #64748b;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 4px;
}

.copyright {
    text-align: center;
    color: #475569;
    margin-top: 30px;
    font-family: var(--font-mono);
    font-size: 10px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- RESPONSIVE MOBILE BENTO --- */
@media (max-width: 992px) {
    .bento-grid {
        gap: 16px;
    }
    .span-8, .span-7, .span-6, .span-5, .span-4, .span-3 {
        grid-column: span 12;
    }
    .hero-title {
        font-size: 32px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    header .nav-menu {
        display: none;
    }
    .bento-cell {
        padding: 24px;
    }
    .sec-title {
        font-size: 22px;
    }
    .sec-subtitle {
        font-size: 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .calc-form-row {
        grid-template-columns: 1fr;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .cargo-header {
        flex-direction: column;
        gap: 16px;
    }
    .cargo-barcode {
        align-items: flex-start;
    }
    .bento-news-item {
        grid-template-columns: 1fr;
    }
    .news-img {
        height: 120px;
    }
}

@media (max-width: 900px) {
    .public-tracking-layout,
    .public-tracking-contact-grid,
    .public-tracking-goods-grid {
        grid-template-columns: 1fr;
    }

    .public-tracking-card .cargo-header {
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .public-tracking-card .cargo-header,
    .public-tracking-layout {
        padding: 18px;
    }

    .public-tracking-goods-grid {
        padding: 0 18px 18px;
    }

    .public-tracking-timeline-title {
        margin: 0 18px;
    }

    .public-tracking-order-code {
        font-size: 24px;
    }

    .public-tracking-route,
    .public-tracking-meta {
        grid-template-columns: 1fr;
    }

    .public-tracking-route > i {
        display: none;
    }
}

/* ==========================================
   CSS CHO CHUYỂN ĐỔI TAB & BỐ CỤC BENTO MỚI
   ========================================== */

/* --- 1. Cấu trúc Tab --- */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 2. Trạng thái Active cho Nav Link (Desktop) --- */
.nav-link.active {
    color: var(--color-brand-blue);
}

.nav-link.active::after {
    width: 100%;
}

/* --- 3. Thanh điều hướng Mobile (Bottom Nav) --- */
.mobile-nav-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-border);
    z-index: 1000;
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
    padding: 8px 0;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 11.5px;
    font-weight: 700;
    gap: 4px;
    transition: var(--transition);
    position: relative;
    flex: 1;
    text-align: center;
}

.mobile-nav-item i {
    font-size: 18px;
    transition: var(--transition);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--color-brand-blue);
}

.mobile-nav-item.active i {
    transform: scale(1.1);
    color: var(--color-brand-blue);
}

.mobile-nav-item.active::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 25%;
    right: 25%;
    height: 3px;
    background: var(--color-brand-blue);
    border-radius: 0 0 3px 3px;
}

@media (max-width: 768px) {
    .mobile-nav-bar {
        display: flex;
    }
    body {
        padding-bottom: 80px; /* Bù khoảng trống cho bottom nav */
    }
    .btn-bento-action {
        padding: 12px 20px;
    }
    .track-input, .calc-select, .calc-inp {
        font-size: 16px; /* Prevents iOS auto-zoom */
    }
}

/* --- 4. Bố cục Bento ngang cho "Tại sao chọn TTEX" --- */
@media (min-width: 993px) {
    .span-8 .stats-grid-mini {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .span-8 .mini-stat-item {
        border-left: none;
        border-top: 3px solid var(--color-brand-blue);
        padding-left: 0;
        padding-top: 16px;
    }
    .span-8 .mini-stat-item.red-border {
        border-top-color: var(--color-brand-red);
    }
}

/* --- 5. Quy trình luân chuyển đơn hàng dạng ngang (Desktop) --- */
@media (min-width: 993px) {
    .span-12 .bento-process-list {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
        position: relative;
        padding: 20px 0;
    }
    
    /* Đường nối ngang giữa các bước */
    .span-12 .bento-process-list::before {
        content: '';
        position: absolute;
        top: 38px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: var(--color-border);
        z-index: 1;
    }
    
    .span-12 .bento-process-item {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        position: relative;
        z-index: 2;
    }
    
    .span-12 .process-step-num {
        width: 38px;
        height: 38px;
        border-radius: var(--radius-sm);
        border: 3px solid #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    
    .span-12 .process-info {
        align-items: center;
    }
    
    .span-12 .process-title {
        font-size: 15px;
        margin-top: 4px;
    }
    
    .span-12 .process-desc {
        font-size: 11px;
        max-width: 200px;
    }
}

/* ==========================================
   HIỆU ỨNG CHUYỂN ĐỘNG TRA CỨU CAO CẤP
   ========================================== */

/* 1. Phiếu Manifest in trượt dọc 3D */
.cargo-manifest-card {
    animation: manifestPrint 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: top center;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(26, 86, 219, 0.05);
}

@keyframes manifestPrint {
    from {
        opacity: 0;
        transform: scaleY(0.1) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scaleY(1) translateY(0);
    }
}

/* 2. Hiệu ứng quét Laser Mã Vạch */
.barcode-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    padding: 2px;
    background: #fff;
    display: inline-block;
}

.laser-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ef4444;
    box-shadow: 0 0 10px 2px rgba(239, 68, 68, 0.8), 0 0 4px rgba(239, 68, 68, 0.5);
    animation: laserScan 2.5s linear infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes laserScan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* 3. Hiệu ứng Shipper chạy kéo theo loading (Custom Loader Card) */
.tracking-loader-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    border-radius: var(--radius-bento);
    border: 1px solid rgba(26, 86, 219, 0.15);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-bento);
    margin-top: 16px;
    position: relative;
    overflow: hidden;
}

.loader-road {
    width: 85%;
    max-width: 500px;
    height: 4px;
    background: rgba(15, 23, 42, 0.08);
    margin: 48px auto 24px;
    position: relative;
    border-radius: 2px;
}

.loader-progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-brand-blue), var(--color-brand-red));
    box-shadow: 0 0 10px rgba(26, 86, 219, 0.5);
    border-radius: 2px;
}

.loader-shipper {
    position: absolute;
    top: -45px;
    left: 0%;
    width: 70px;
    height: auto;
    transform: translate(-50%, 0) scaleX(-1);
    z-index: 10;
}

.loader-shipper img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    animation: scooterFloatGently 1s ease-in-out infinite alternate;
}

@keyframes truckDrive {
    0% { left: 0%; transform: scaleX(1); }
    45% { left: 85%; transform: scaleX(1); }
    50% { left: 85%; transform: scaleX(-1); }
    95% { left: 0%; transform: scaleX(-1); }
    100% { left: 0%; transform: scaleX(1); }
}

@keyframes pulseLoader {
    from {
        border-color: var(--color-border);
        box-shadow: var(--shadow-bento);
    }
    to {
        border-color: rgba(26, 86, 219, 0.3);
        box-shadow: 0 15px 35px -10px rgba(26, 86, 219, 0.08);
    }
}

/* 4. Hiệu ứng trượt hành trình so le (Staggered Steps) */
.timeline-step {
    opacity: 0;
    transform: translateX(-20px);
    animation: stepFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   BỐ CỤC HERO 2 CỘT & HIỆU ỨNG SHIPPER 3D
   ========================================== */

.hero-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.hero-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    max-width: 440px;
    z-index: 10;
}

.hero-text-side .hero-title {
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-text-side .hero-title span {
    color: var(--color-brand-red);
}

.hero-text-side .hero-desc {
    color: #475569;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.hero-text-side .hero-tag {
    border: 1px solid rgba(224, 36, 36, 0.25);
    background: rgba(224, 36, 36, 0.05);
    color: var(--color-brand-red);
}

.hero-text-side .track-bar-wrap {
    background: #ffffff;
    border: 1.5px solid rgba(26, 86, 219, 0.15);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.hero-text-side .track-input {
    color: #0f172a;
}

.hero-text-side .track-input::placeholder {
    color: #94a3b8;
}

.hero-graphic-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.hero-slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

/* Mặt nạ phủ mờ nhẹ nhàng để lọc màu dịu hơn */
.hero-slides-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 17, 32, 0.2) 0%, rgba(11, 17, 32, 0.02) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 60px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
}

.hero-slide.exit {
    opacity: 0;
    transform: scale(1.05);
}

.shipper-3d-img {
    width: auto;
    height: 90%;
    max-height: 380px;
    max-width: 480px;
    object-fit: contain;
    animation: shipperFloat 6s ease-in-out infinite alternate;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
}

.slide-caption {
    position: absolute;
    right: 80px;
    bottom: 95px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    z-index: 5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-slide.active .slide-caption {
    color: #fff;
    border-color: rgba(26, 86, 219, 0.4);
    box-shadow: 0 0 20px rgba(26, 86, 219, 0.3);
    opacity: 1;
    transform: translateY(0);
}

/* Con đường logistics & Trạm */
.logistics-road {
    position: absolute;
    bottom: 65px;
    left: 5%;
    width: 90%;
    height: 4px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 2px;
    z-index: 2;
    pointer-events: auto;
}

.logistics-road-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15%;
    background: linear-gradient(90deg, var(--color-brand-blue), var(--color-brand-red));
    box-shadow: 0 0 10px rgba(26, 86, 219, 0.4);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.road-station {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    cursor: pointer;
    pointer-events: auto;
}

.station-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(15, 23, 42, 0.2);
    transition: all 0.3s ease;
}

.road-station.active .station-dot {
    background: var(--color-brand-blue);
    border-color: #fff;
    box-shadow: 0 0 12px var(--color-brand-blue), 0 0 0 4px rgba(26, 86, 219, 0.15);
}

.road-station.station-0 { left: 15%; }
.road-station.station-1 { left: 50%; }
.road-station.station-2 { left: 85%; }

.station-label {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.road-station.active .station-label {
    color: var(--color-brand-blue);
    text-shadow: none;
}

/* Shipper Scooter */
.scooter-rider {
    position: absolute;
    bottom: 53px;
    left: 15%;
    width: 80px;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease;
}

.scooter-rider img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
    animation: scooterFloatGently 1.5s ease-in-out infinite alternate;
}

@keyframes scooterFloatGently {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-3px) rotate(1deg); }
}

.stories-progress-bar {
    display: flex;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 240px;
    gap: 8px;
    z-index: 10;
    pointer-events: auto;
}

.progress-segment {
    flex: 1;
    height: 4px;
    background: rgba(15, 23, 42, 0.15);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.progress-segment:hover {
    background: rgba(15, 23, 42, 0.25);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-brand-blue) 0%, var(--color-brand-red) 100%);
    border-radius: 2px;
    transition: width 0.08s linear;
}

.shipper-glow-bg {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.2) 0%, rgba(56, 189, 248, 0.1) 60%, transparent 100%);
    filter: blur(35px);
    border-radius: 50%;
    animation: glowPulse 3.5s ease-in-out infinite alternate;
    z-index: 1;
    right: 40px;
    top: 30px;
}

@keyframes shipperFloat {
    0% {
        transform: translateY(5px) rotate(-0.5deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
    100% {
        transform: translateY(5px) rotate(-0.5deg);
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.15);
        opacity: 0.95;
    }
}

/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
    .hero-content-wrap {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 20px;
        pointer-events: auto;
    }
    .hero-text-side {
        width: 100%;
    }
    .hero-graphic-side {
        position: relative;
        width: 100%;
        min-height: 420px;
        margin-top: 20px;
        z-index: 2;
        pointer-events: auto;
    }
    .hero-slides-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
        width: 220px;
        height: 220px;
        overflow: visible;
    }
    .hero-slides-container::after {
        background: linear-gradient(180deg, rgba(11, 17, 32, 0.2) 0%, rgba(11, 17, 32, 0.02) 100%);
    }
    .hero-slide {
        padding-right: 0;
        justify-content: center;
    }
    .shipper-3d-img {
        max-width: 160px;
        height: 160px;
    }
    .slide-caption {
        right: auto;
        left: 50%;
        transform: translate(-50%, 10px);
        bottom: 95px;
    }
    .hero-slide.active .slide-caption {
        transform: translate(-50%, 0);
    }
    .logistics-road {
        bottom: 85px;
        left: 2%;
        width: 96%;
    }
    .scooter-rider {
        bottom: 73px;
        width: 60px;
    }
    .stories-progress-bar {
        bottom: 12px;
    }
    .shipper-glow-bg {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
    }
}

/* Pop and float animations for the active step emojis & stamps */
.timeline-step.active .step-icon span {
    display: inline-block;
    animation: emojiPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, emojiFloat 2s ease-in-out infinite alternate 0.6s;
}

@keyframes emojiPop {
    0% { transform: scale(0.6); }
    50% { transform: scale(1.2) translateY(-3px); }
    100% { transform: scale(1) translateY(0); }
}

@keyframes emojiFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes stampPop {
    0% {
        transform: rotate(0deg) scale(2);
        opacity: 0;
        filter: blur(2px);
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

/* Responsive adjustments for header auth buttons on mobile */
@media (max-width: 480px) {
    .header-auth-buttons .btn-portal-wrap button {
        padding: 8px 12px;
        gap: 0;
    }
    .header-auth-buttons .btn-portal-wrap button .btn-text {
        display: none;
    }
}

/* Language Dropdown in Header */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.btn-lang-toggle {
    padding: 0;
    width: 38px;
    height: 38px;
    justify-content: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-lang-toggle:hover {
    background: var(--color-bg);
    border-color: var(--color-brand-blue);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 1050;
    min-width: 140px;
    padding: 6px;
    flex-direction: column;
    gap: 4px;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-dropdown-menu.show {
    display: flex;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.lang-dropdown-item:hover {
    background-color: var(--color-bg);
    color: var(--color-brand-blue);
}

.lang-dropdown-item.active {
    background-color: var(--color-bg);
    color: var(--color-brand-blue);
    position: relative;
}

.lang-dropdown-item.active::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 25%;
    bottom: 25%;
    width: 3px;
    background-color: var(--color-brand-blue);
    border-radius: 2px;
}


/* ==========================================================================
   MOBILE OPTIMIZATIONS (ADDED FOR MOBILE UX EXCELLENCE)
   ========================================================================== */

/* --- 1. General Mobile Enhancements & Tap Highlights --- */
* {
    -webkit-tap-highlight-color: transparent;
}

/* --- 2. Header, Navigation & Language Dropdown on Mobile --- */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    header.scrolled {
        padding: 6px 0;
    }
    .btn-lang-toggle {
        width: 44px;
        height: 44px; /* Premium 44px touch target on mobile */
    }
    .lang-dropdown-menu {
        right: -8px; /* Offset to align nicely with small phone margins */
        top: 115%;
    }
}

@media (max-width: 400px) {
    .logo-text {
        gap: 0;
    }
    .logo-title {
        font-size: 15px;
    }
    .logo-sub {
        display: none; /* Hide subtitle to fit buttons on the same line on iPhone SE */
    }
    .header-auth-buttons {
        gap: 6px !important;
    }
}

/* --- 3. Bento Cells and Spacing on Mobile --- */
@media (max-width: 480px) {
    .container-large {
        padding: 0 12px;
    }
    .bento-grid {
        gap: 12px;
        margin-bottom: 12px;
    }
    .bento-cell {
        padding: 16px;
        border-radius: 16px; /* slightly rounder layout fit for small screens */
    }
    .price-section-title {
        margin-bottom: 12px;
    }
}

/* --- 4. Contact Form Responsive Spacing --- */
@media (max-width: 768px) {
    .contact-grid-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --- 5. Dynamic Order Manifest Table & Timeline on Mobile --- */
@media (max-width: 600px) {
    .details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    /* Address spans all columns */
    .details-grid .detail-item[style*="grid-column: span 3"],
    .details-grid .detail-item:last-child {
        grid-column: span 2 !important;
    }
    .detail-item .lbl {
        font-size: 10.5px;
    }
    .detail-item .val {
        font-size: 13px;
    }
    .detail-item .val.highlight {
        font-size: 15px;
    }
    .cargo-stamp {
        font-size: 11.5px;
        padding: 2px 6px;
    }
}

/* --- 6. Base Price Table Cells Padding --- */
@media (max-width: 480px) {
    .price-table th, .price-table td {
        padding: 8px 4px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 20px 0;
    }
    .partners-wrap {
        display: flex !important;
        mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent) !important;
        -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent) !important;
    }
    .marquee-track {
        gap: 32px !important;
        animation: marquee-scroll 22s linear infinite !important;
    }
    .partner-logo {
        filter: none !important;
        opacity: 1 !important;
        min-width: 112px !important;
        min-height: 48px !important;
        padding: 8px 12px !important;
    }
    .partner-logo svg,
    .partner-logo img {
        max-width: 112px !important;
        max-height: 32px !important;
        width: auto !important;
        height: auto !important;
    }
}

/* --- 8. Interactive 3D Slider micro-responsive scale --- */
@media (max-width: 480px) {
    .hero-graphic-side {
        min-height: 320px;
        margin-top: 10px;
    }
    .hero-slides-container {
        width: 180px;
        height: 180px;
    }
    .shipper-3d-img {
        max-width: 130px;
        height: 130px;
    }
    .slide-caption {
        bottom: 60px;
        font-size: 9px;
        padding: 4px 10px;
    }
    .logistics-road {
        bottom: 50px;
    }
    .scooter-rider {
        bottom: 42px;
        width: 48px;
    }
    .stories-progress-bar {
        bottom: 8px;
    }
    .shipper-glow-bg {
        width: 180px;
        height: 180px;
    }
}


/* ==========================================================================
   APPLE GALLERY DIRECTION
   Inspired by DESIGN.md: quiet chrome, full-bleed tiles, pill actions, and
   one soft shadow reserved for logistics imagery.
   ========================================================================== */
:root {
    --apple-action: #0066cc;
    --apple-action-focus: #0071e3;
    --apple-action-on-dark: #2997ff;
    --apple-ink: #1d1d1f;
    --apple-muted: #6e6e73;
    --apple-hairline: #e5e5ea;
    --apple-canvas: #ffffff;
    --apple-parchment: #f5f5f7;
    --apple-pearl: #fafafc;
    --apple-dark: #272729;
    --apple-black: #000000;
    --apple-product-shadow: rgba(0, 0, 0, 0.22) 3px 5px 30px 0;
    --apple-product-shadow-filter: 3px 5px 30px rgba(0, 0, 0, 0.22);

    --color-brand-blue: var(--apple-action);
    --color-brand-blue-hover: var(--apple-action-focus);
    --color-brand-red: var(--apple-action);
    --color-brand-red-hover: var(--apple-action-focus);
    --color-bg: var(--apple-parchment);
    --color-card-bg: var(--apple-canvas);
    --color-text-main: var(--apple-ink);
    --color-text-muted: var(--apple-muted);
    --color-border: var(--apple-hairline);
    --font-display: 'Google Sans', 'Inter', sans-serif;
    --font-body: 'Google Sans', 'Inter', sans-serif;
    --radius-bento: 18px;
    --radius-sm: 999px;
    --shadow-bento: none;
    --shadow-bento-hover: none;
}

body {
    background: var(--apple-parchment);
    color: var(--apple-ink);
    font-size: 17px;
    line-height: 1.47;
}

.container-large {
    max-width: 1880px;
    padding-left: clamp(16px, 2.5vw, 36px);
    padding-right: clamp(16px, 2.5vw, 36px);
}

header {
    background: rgba(245, 245, 247, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

header.scrolled {
    padding: 8px 0;
}

.nav-container {
    min-height: 44px;
}

.logo-img {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    padding: 2px;
}

.logo-title {
    color: #0b84c9; /* Brand sky blue */
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.logo-sub {
    color: #e21b2c; /* Brand red */
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none; /* capitalized as requested by user */
}

.nav-menu {
    gap: clamp(28px, 3.5vw, 54px); /* Spaced out to balance wide header space */
}

.nav-link {
    color: rgba(29, 29, 31, 0.78);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--apple-ink);
}

.btn-bento-action,
.btn-bento-action.red {
    background: var(--apple-action);
    border: 1px solid var(--apple-action);
    border-radius: 999px;
    box-shadow: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    min-height: 44px;
    padding: 11px 22px;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.btn-bento-action:hover,
.btn-bento-action.red:hover {
    background: var(--apple-action-focus);
    border-color: var(--apple-action-focus);
    box-shadow: none;
    transform: none;
}

.btn-bento-action:active,
.btn-bento-action.red:active,
.btn-bento-action.outline:active {
    transform: scale(0.95);
}

.btn-bento-action:focus-visible,
.calc-select:focus-visible,
.calc-inp:focus-visible,
.track-input:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--apple-action-focus);
    outline-offset: 3px;
}

.btn-bento-action.outline {
    background: transparent;
    border: 1px solid var(--apple-action);
    color: var(--apple-action);
}

.btn-bento-action.outline:hover {
    background: var(--apple-action);
    border-color: var(--apple-action);
    color: #ffffff;
}


.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.bento-grid {
    gap: 12px;
    margin-bottom: 12px;
}

#home .bento-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.bento-cell {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: clamp(48px, 6vw, 80px);
    transition: background-color 180ms ease, color 180ms ease;
}

.bento-cell:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.bento-cell.dark-hero {
    background: var(--apple-canvas);
    border: 0;
    color: var(--apple-ink);
    grid-column: 1 / -1;
    min-height: calc(100vh - 64px);
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

.hero-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    gap: clamp(32px, 6vw, 88px);
    max-width: 1320px;
    margin: 0 auto;
}

.hero-tag {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--apple-muted);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 18px;
    padding: 0;
}

.hero-title {
    color: var(--apple-ink);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.05;
    margin-bottom: 18px;
    text-transform: none;
}

.hero-title span {
    color: var(--apple-action);
}

.hero-desc {
    color: var(--apple-ink);
    font-size: clamp(20px, 2.1vw, 28px);
    font-weight: 300;
    line-height: 1.3;
    max-width: 620px;
}

.hero-graphic-side {
    min-height: 520px;
}

.shipper-glow-bg {
    display: none;
}

.hero-slides-container {
    background: var(--apple-parchment);
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.shipper-3d-img,
.scooter-rider img,
.news-img img,
.logo-img img,
.footer-logo-img img {
    filter: drop-shadow(var(--apple-product-shadow-filter));
}

.slide-caption {
    background: rgba(245, 245, 247, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 0;
    border-radius: 999px;
    color: var(--apple-ink);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0;
}

.logistics-road,
.stories-progress-bar {
    background: rgba(29, 29, 31, 0.1);
}

.road-station .station-dot,
.progress-fill {
    background: var(--apple-action);
}

.station-label {
    color: var(--apple-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.track-bar-wrap {
    background: var(--apple-canvas);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    box-shadow: none;
    min-height: 64px;
    padding: 6px 8px 6px 16px;
    display: flex;
    align-items: center;
}

.track-bar-wrap:focus-within {
    border-color: var(--apple-action-focus);
    box-shadow: none;
}

.track-input-icon {
    color: var(--apple-muted);
    padding-left: 18px;
}

.track-input {
    color: var(--apple-ink);
    font-size: 17px;
    font-weight: 400;
}

.track-input::placeholder {
    color: #86868b;
}

.bento-cell.portal-promo,
.bento-cell.stats-cell,
.bento-cell.svc-card,
#pricing .bento-cell,
#news .bento-cell,
#contact .bento-cell {
    background: var(--apple-parchment);
    border: 0;
}

#home .bento-cell.portal-promo {
    background: var(--apple-dark);
    color: #ffffff;
}

#home .bento-cell.portal-promo .portal-promo-title,
#home .bento-cell.portal-promo .portal-promo-desc {
    color: #ffffff;
}

.portal-promo-title,
.sec-title,
.contact-info-title,
.price-section-title,
.price-table-title,
.svc-title,
.news-title,
.process-title {
    color: var(--apple-ink);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.portal-promo-title,
.sec-title {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.portal-promo-desc,
.svc-desc,
.news-desc,
.process-desc,
.contact-info-grid p {
    color: var(--apple-muted);
    font-size: 17px;
    line-height: 1.47;
}

.sec-title-wrap {
    background: var(--apple-canvas);
    margin: 0;
    padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 64px) 36px;
    text-align: center;
}

.sec-subtitle {
    color: var(--apple-muted);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.mini-stat-item,
.mini-stat-item.red-border {
    border-left: 0;
    padding-left: 0;
}

.mini-stat-num {
    color: var(--apple-ink);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    letter-spacing: 0;
}

.mini-stat-lbl {
    color: var(--apple-muted);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.svc-icon-wrap,
.info-icon,
.process-step-num,
.social-btn,
.mobile-nav-item i {
    background: var(--apple-canvas);
    border: 1px solid var(--apple-hairline);
    border-radius: 999px;
    color: var(--apple-action);
    box-shadow: none;
}

.svc-card:hover .svc-icon-wrap,
.svc-card:nth-child(even):hover .svc-icon-wrap {
    background: var(--apple-action);
    color: #ffffff;
}

.svc-more,
.footer-link,
.text-primary,
.news-date {
    color: var(--apple-action);
}

.calc-select,
.calc-inp,
.autocomplete-box,
.calc-res-box {
    background: var(--apple-canvas);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: none;
    color: var(--apple-ink);
    font-size: 17px;
    font-weight: 400;
}

.calc-select,
.calc-inp {
    min-height: 48px;
}

.calc-lbl {
    color: var(--apple-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.price-table {
    border-collapse: separate;
    border-spacing: 0;
}

.price-table th,
.price-table td {
    background: var(--apple-canvas);
    border-color: var(--apple-hairline);
    font-size: 14px;
    font-weight: 400;
}

.price-table th {
    color: var(--apple-muted);
    font-weight: 600;
}

.res-val.highlight {
    color: var(--apple-action);
    font-weight: 600;
}

.bento-process-list,
.bento-news-list,
.contact-grid-wrap {
    gap: 20px;
}

.bento-news-item,
.info-item,
.bento-process-item,
.partner-logo {
    background: var(--apple-canvas);
    border: 1px solid var(--apple-hairline);
    border-radius: 18px;
    box-shadow: none;
}

.news-img {
    background: var(--apple-parchment);
    border-radius: 12px;
}

.partners-section {
    background: var(--apple-canvas);
    margin-top: 12px !important;
    padding: 42px 0;
}

.partners-wrap {
    max-width: 100%;
}

footer {
    background: var(--apple-parchment);
    color: var(--apple-muted);
}

.footer-title,
.footer-desc,
.footer-links,
.footer-link,
.copyright {
    color: var(--apple-muted);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.footer-title {
    color: var(--apple-ink);
    font-size: 14px;
    font-weight: 600;
}

.mobile-nav-bar {
    background: rgba(245, 245, 247, 0.86);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
}

.mobile-nav-item {
    color: var(--apple-muted);
    font-weight: 400;
}

.mobile-nav-item.active {
    color: var(--apple-action);
}

.lang-dropdown-menu {
    border-color: rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .hero-content-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc,
    .track-bar-wrap {
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .bento-cell,
    .bento-cell.dark-hero {
        padding: 48px 18px;
    }

    .portal-promo-title,
    .sec-title {
        font-size: 34px;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 560px) {
    .track-bar-wrap {
        border-radius: 24px;
        flex-wrap: wrap;
        min-height: auto !important;
        padding: 16px !important;
        gap: 12px;
    }

    .track-bar-wrap .track-input-icon {
        font-size: 18px !important;
        margin-right: 8px !important;
    }

    .track-bar-wrap .track-input {
        font-size: 16px !important;
        min-width: 0;
        width: 100%;
        padding: 8px 0 !important;
    }

    .track-bar-wrap .btn-bento-action {
        width: 100%;
        justify-content: center;
        min-height: 48px !important;
        font-size: 16px !important;
        padding: 0 24px !important;
    }
}

/* Page artwork banners: image is visual, copy/actions stay as translatable HTML. */
.page-banner {
    background: linear-gradient(135deg, #eef5fd 0%, #ffffff 100%);
    line-height: 1.47;
    overflow: hidden;
    position: relative;
}

.rich-banner {
    align-items: center;
    display: flex;
    isolation: isolate;
    min-height: clamp(560px, 48vw, 720px);
    padding: clamp(56px, 6vw, 88px) clamp(24px, 4vw, 56px);
}

.rich-banner::before {
    background: linear-gradient(90deg, #eef5fd 0%, #eef5fd 42%, rgba(238, 245, 253, 0.96) 48%, rgba(238, 245, 253, 0) 56%);
    -webkit-mask-image: linear-gradient(180deg, #000000 0%, #000000 81%, transparent 91%);
    mask-image: linear-gradient(180deg, #000000 0%, #000000 81%, transparent 91%);
    content: '';
    inset: 0;
    position: absolute;
    z-index: 1;
}

.banner-art {
    display: block;
    filter: saturate(1.05) contrast(1.02);
    height: 100%;
    inset: 0;
    left: 0;
    object-fit: cover;
    object-position: right center;
    opacity: 0.68;
    position: absolute;
    right: 0;
    transform: scale(1.02);
    transform-origin: center;
    width: 100%;
    z-index: 0;
}

/* Textless banner art guard: source artwork can contain promo copy, so readable page copy stays in HTML only. */
.rich-banner::after {
    background: linear-gradient(90deg, rgba(238, 245, 253, 0) 0%, rgba(238, 245, 253, 0.74) 58%, #eef5fd 100%);
    content: '';
    inset: 0 0 0 auto;
    pointer-events: none;
    position: absolute;
    width: 18%;
    z-index: 1;
}

.banner-home .banner-art {
    object-position: 85% center;
    transform: scale(1.02);
}

.banner-home::before {
    background: linear-gradient(90deg, #eef5fd 0%, #eef5fd 28%, rgba(238, 245, 253, 0.9) 38%, rgba(238, 245, 253, 0) 48%);
}

.banner-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.banner-services .banner-art {
    object-position: 82% center;
    transform: scale(1.06);
}

.banner-pricing .banner-art {
    object-position: 85% center;
    transform: scale(1.05);
}

.banner-news .banner-art {
    object-position: 70% center;
    transform: scale(1.06);
}

.banner-contact .banner-art {
    object-position: 85% center;
    transform: scale(1.05);
}

.banner-services::before,
.banner-pricing::before {
    background: linear-gradient(90deg, #eef5fd 0%, #eef5fd 28%, rgba(238, 245, 253, 0.9) 38%, rgba(238, 245, 253, 0) 48%);
}

.banner-services::after {
    background: linear-gradient(90deg, rgba(238, 245, 253, 0) 0%, rgba(238, 245, 253, 0.84) 54%, #eef5fd 100%);
    width: 24%;
}

.banner-pricing::after {
    width: 20%;
}

.banner-news::after,
.banner-contact::after {
    width: 18%;
}

.banner-copy {
    color: var(--apple-ink);
    max-width: min(540px, 38vw);
    position: relative;
    z-index: 2;
}

.banner-eyebrow {
    color: var(--apple-action);
    display: inline-block;
    font-family: var(--font-body);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 600;
    margin-bottom: 14px;
}

.banner-title {
    color: var(--apple-ink);
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 66px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0 0 18px;
    text-transform: none;
}

.banner-title span {
    color: var(--apple-action);
}

.banner-desc {
    color: rgba(29, 29, 31, 0.78);
    font-size: clamp(18px, 1.55vw, 24px);
    font-weight: 400;
    line-height: 1.35;
    margin: 16px 0 24px;
    max-width: 720px;
}

.banner-track-wrap {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    display: flex;
    max-width: 680px;
    min-height: 72px;
    padding: 8px 10px 8px 24px;
}

.banner-track-wrap,
.track-bar-wrap {
    min-height: 72px !important;
    padding: 8px 10px 8px 24px !important;
}

.banner-track-wrap .track-input-icon,
.track-bar-wrap .track-input-icon {
    font-size: 20px !important;
    padding-left: 0 !important;
    margin-right: 12px !important;
}

.banner-track-wrap .track-input,
.track-bar-wrap .track-input {
    color: var(--apple-ink);
    font-size: 20px !important;
    font-weight: 500;
}

.banner-track-wrap .btn-bento-action,
.track-bar-wrap .btn-bento-action {
    font-size: 18px !important;
    font-weight: 600 !important;
    min-height: 56px !important;
    padding: 0 38px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.banner-metrics,
.banner-service-list,
.banner-contact-grid {
    display: grid;
    gap: 12px;
    margin: 16px 0 24px;
}

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

.banner-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.banner-metrics span,
.banner-service-list span,
.banner-contact-grid span {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding: 14px 16px;
}

.banner-service-list span,
.banner-contact-grid span {
    align-items: flex-start;
}

.banner-service-list i,
.banner-contact-grid i {
    color: var(--apple-action);
    font-size: 18px;
    margin-bottom: 4px;
}

.banner-metrics strong,
.banner-service-list strong,
.banner-contact-grid strong {
    color: var(--apple-ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.18;
}

.banner-metrics small,
.banner-contact-grid small {
    color: var(--apple-muted);
    font-size: 12px;
    line-height: 1.25;
}

.banner-cta {
    align-items: center;
    background: var(--apple-action);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    text-decoration: none;
}

.banner-cta:hover {
    background: var(--apple-action-focus);
}

.page-banner + .sec-title-wrap {
    display: none;
}

#home > .bento-grid > .dark-hero {
    display: none;
}

#home > .bento-grid > .portal-promo {
    display: none;
}

#home > .bento-grid,
#services > .bento-grid,
#pricing > .bento-grid,
#contact > .bento-grid {
    margin-top: 12px;
}

.tab-content > .bento-grid {
    gap: clamp(18px, 2vw, 28px);
    margin: 28px auto 18px;
    max-width: 1880px;
    padding: 0 clamp(16px, 2.5vw, 36px);
}

#home > .bento-grid > .stats-cell {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 102, 204, 0.1);
    min-height: clamp(340px, 24vw, 420px);
    padding: clamp(30px, 3vw, 46px);
}

#home > .bento-grid > .stats-cell.span-4 {
    background:
        radial-gradient(circle at 88% 12%, rgba(0, 113, 227, 0.12), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
    grid-column: span 4;
}

#home > .bento-grid > .stats-cell.span-8 {
    background:
        radial-gradient(circle at 88% 12%, rgba(0, 113, 227, 0.08), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
    color: var(--apple-ink);
    grid-column: span 8;
}

#home > .bento-grid > .stats-cell .portal-promo-title {
    align-items: center;
    display: flex;
    font-size: clamp(18px, 1.25vw, 22px) !important;
    gap: 10px;
    margin-bottom: 24px !important;
}

#home > .bento-grid > .stats-cell.span-4 .stats-grid-mini {
    display: grid;
    gap: 16px;
}

#home > .bento-grid > .stats-cell.span-4 .mini-stat-item {
    align-items: baseline;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 102, 204, 0.08);
    border-left: 0;
    border-radius: 22px;
    display: flex;
    gap: 14px;
    min-height: 78px;
    padding: 18px 20px;
}

#home > .bento-grid > .stats-cell.span-4 .mini-stat-num {
    color: var(--apple-ink);
    flex: 0 0 auto;
    font-size: clamp(32px, 3.4vw, 54px);
}

#home > .bento-grid > .stats-cell.span-4 .mini-stat-lbl {
    color: var(--apple-muted);
    font-size: clamp(13px, 1vw, 16px);
    letter-spacing: 0;
    text-transform: none;
}

#home > .bento-grid > .stats-cell.span-8 .stats-grid-mini {
    display: grid;
    gap: clamp(16px, 1.6vw, 24px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: calc(100% - 52px);
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 102, 204, 0.08);
    border-left: 0;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(176px, 13vw, 230px);
    padding: clamp(22px, 2vw, 30px);
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-num {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-size: clamp(18px, 1.25vw, 23px) !important;
    gap: 16px;
    line-height: 1.25;
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-num i {
    align-items: center;
    background: rgba(0, 113, 227, 0.14);
    border-radius: 16px;
    display: inline-flex;
    font-size: 28px;
    height: 56px;
    justify-content: center;
    width: 56px;
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-lbl {
    color: var(--apple-muted) !important;
    display: block;
    font-size: clamp(13px, 0.95vw, 16px) !important;
    line-height: 1.5;
    margin-top: 14px !important;
}

@media (max-width: 768px) {
    .rich-banner {
        min-height: auto;
        padding: 44px 18px;
    }

    .rich-banner::before {
        background: linear-gradient(90deg, #eef5fd 0%, rgba(238, 245, 253, 0.9) 68%, rgba(238, 245, 253, 0.42) 100%);
    }

    .rich-banner::after {
        display: none;
    }

    .banner-art {
        left: auto;
        filter: saturate(1.08) contrast(1.04);
        opacity: 0.5;
        width: 78%;
    }

    .banner-services .banner-art,
    .banner-pricing .banner-art,
    .banner-news .banner-art,
    .banner-contact .banner-art {
        object-position: 70% center;
        opacity: 0.38;
    }

    .banner-copy {
        max-width: none;
        width: 100%;
    }

    .banner-title {
        font-size: clamp(25px, 7vw, 28px);
        line-height: 1.1;
    }

    .banner-title span {
        display: block;
    }

    .banner-desc {
        font-size: 17px;
        max-width: 33ch;
        overflow-wrap: break-word;
    }

    .banner-track-wrap {
        border-radius: 24px;
        flex-wrap: wrap;
        min-height: auto !important;
        padding: 16px !important;
        gap: 12px;
    }

    .banner-track-wrap .track-input-icon {
        font-size: 18px !important;
        margin-right: 8px !important;
    }

    .banner-track-wrap .track-input {
        font-size: 16px !important;
        width: 100%;
        padding: 8px 0 !important;
    }

    .banner-track-wrap .btn-bento-action {
        width: 100%;
        justify-content: center;
        min-height: 48px !important;
        font-size: 16px !important;
        padding: 0 24px !important;
    }

    .banner-metrics,
    .banner-service-list,
    .banner-contact-grid {
        grid-template-columns: 1fr;
    }

    #home > .bento-grid {
        padding: 0 18px;
    }

    #home > .bento-grid > .stats-cell.span-4,
    #home > .bento-grid > .stats-cell.span-8 {
        grid-column: 1 / -1;
    }

    #home > .bento-grid > .stats-cell.span-8 .stats-grid-mini {
        grid-template-columns: 1fr;
    }
}

/* ==================== BUTTONS SYNCHRONIZATION ==================== */
.btn-bento-action,
.btn-bento-action.red,
.btn-bento-action.outline {
    border-radius: 999px !important;
}
.btn-lang-toggle {
    border-radius: 50% !important;
}

/* ==================== RESPONSIVE BANNER REDESIGN (< 1024px) ==================== */
@media (max-width: 1023px) {
    .rich-banner {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0 !important;
        min-height: auto !important;
        background: #eef5fd !important;
    }
    
    .rich-banner .banner-art {
        position: relative !important;
        height: auto !important;
        width: 100% !important;
        aspect-ratio: 16/10 !important;
        object-fit: cover !important;
        object-position: 72% center !important;
        opacity: 1 !important;
        transform: none !important;
        z-index: 0 !important;
    }
    
    .rich-banner::before,
    .rich-banner::after,
    .banner-home::before,
    .banner-home::after,
    .banner-services::before,
    .banner-services::after,
    .banner-pricing::before,
    .banner-pricing::after {
        display: none !important;
    }
    
    .banner-copy {
        max-width: 100% !important;
        width: 100% !important;
        padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 32px) !important;
        background: #eef5fd !important;
        text-align: left !important;
        z-index: 2 !important;
    }
    
    .banner-title {
        font-size: clamp(28px, 5.5vw, 38px) !important;
        line-height: 1.1 !important;
        margin-bottom: 12px !important;
    }
    
    .banner-title span {
        display: inline !important;
    }
    
    .banner-desc {
        font-size: clamp(15px, 3vw, 17px) !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
        max-width: 100% !important;
    }
    
    .banner-track-wrap {
        max-width: 100% !important;
        min-height: 56px !important;
        padding: 4px 6px 4px 16px !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    .banner-track-wrap .track-input-icon {
        font-size: 16px !important;
        margin-right: 8px !important;
    }
    
    .banner-track-wrap .track-input {
        font-size: 15px !important;
        padding: 8px 0 !important;
    }
    
    .banner-track-wrap .btn-bento-action {
        font-size: 14px !important;
        min-height: 44px !important;
        padding: 0 20px !important;
        width: auto !important;
        justify-content: center !important;
    }
    
    .banner-service-list {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* ==================== PROCESS STEP NUMBER VISIBILITY FIX ==================== */
.bento-process-item:nth-child(even) .process-step-num {
    background: var(--apple-action) !important;
    color: #ffffff !important;
    border-color: var(--apple-action) !important;
}

/* ==================== IMPECCABLE LAYOUT REFINEMENT ==================== */
:root {
    --apple-body-muted: #cccccc;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 24px;
    --space-xl: 48px;
    --space-2xl: 80px;
}

.banner-home {
    height: clamp(600px, 46vw, 680px);
    min-height: 0;
}

.banner-home .banner-copy {
    max-width: min(620px, 44vw);
}

.banner-home .banner-title {
    font-size: clamp(48px, 4vw, 64px);
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin-bottom: var(--space-lg);
    text-wrap: balance;
}

.banner-home .banner-desc {
    margin: 0 0 var(--space-lg);
    max-width: 58ch;
    text-wrap: pretty;
}

.banner-home .banner-track-wrap {
    max-width: 580px;
}

#home > .bento-grid {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    margin: var(--space-md) auto 0;
}

#home > .bento-grid > .stats-cell {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    grid-column: auto;
    min-height: clamp(360px, 28vw, 440px);
    padding: clamp(36px, 4vw, 64px);
    transform: none;
}

#home > .bento-grid > .stats-cell:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

#home > .bento-grid > .stats-cell.span-4 {
    background: var(--apple-dark);
    color: var(--apple-canvas);
    grid-column: auto;
}

#home > .bento-grid > .stats-cell.span-4 .portal-promo-title,
#home > .bento-grid > .stats-cell.span-4 .mini-stat-num {
    color: var(--apple-canvas) !important;
}

#home > .bento-grid > .stats-cell.span-4 .portal-promo-title i {
    color: var(--apple-action-on-dark);
}

#home > .bento-grid > .stats-cell.span-4 .stats-grid-mini {
    display: grid;
    gap: 0;
}

#home > .bento-grid > .stats-cell.span-4 .mini-stat-item {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: minmax(118px, auto) 1fr;
    min-height: 0;
    padding: 18px 0;
}

#home > .bento-grid > .stats-cell.span-4 .mini-stat-num {
    font-size: clamp(30px, 3vw, 46px);
}

#home > .bento-grid > .stats-cell.span-4 .mini-stat-lbl {
    color: var(--apple-body-muted);
    line-height: 1.4;
}

#home > .bento-grid > .stats-cell.span-8 {
    background: var(--apple-canvas);
    color: var(--apple-ink);
    grid-column: auto;
}

#home > .bento-grid > .stats-cell.span-8 .stats-grid-mini {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-item {
    background: transparent;
    border: 0;
    border-left: 1px solid var(--apple-hairline);
    border-radius: 0;
    justify-content: flex-start;
    min-height: 0;
    padding: var(--space-sm) clamp(22px, 2.5vw, 38px);
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-item:first-child {
    border-left: 0;
    padding-left: 0;
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-item:last-child {
    padding-right: 0;
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-num i {
    background: transparent;
    border: 1px solid var(--apple-hairline);
    border-radius: 999px;
    color: var(--apple-action) !important;
    height: 48px;
    width: 48px;
}

#home > .bento-grid > .stats-cell.span-8 .mini-stat-lbl {
    max-width: 25ch;
    text-wrap: pretty;
}

.banner-track-wrap:focus-within {
    border-color: var(--apple-action-focus);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

.banner-track-wrap .track-input:focus-visible,
.banner-track-wrap .btn-bento-action:focus-visible {
    outline: 2px solid var(--apple-action-focus);
    outline-offset: 2px;
}

@media (max-width: 1023px) {
    .banner-home {
        height: auto;
    }

    .banner-track-wrap {
        align-items: center;
        display: grid;
        gap: var(--space-sm) !important;
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 56px !important;
        padding: 5px 5px 5px 16px !important;
    }

    .banner-track-wrap .track-input-icon {
        margin: 0 !important;
    }

    .banner-track-wrap .track-input {
        min-width: 0;
        padding: 0 !important;
        width: auto !important;
    }

    .banner-track-wrap .btn-bento-action {
        min-height: 44px !important;
        padding: 0 18px !important;
        width: auto !important;
    }

    #home > .bento-grid {
        grid-template-columns: 1fr;
    }

    #home > .bento-grid > .stats-cell {
        grid-column: 1;
    }
}

@media (max-width: 640px) {
    .banner-home .banner-copy {
        max-width: none;
        padding: 28px 20px 32px !important;
    }

    .banner-home .banner-title {
        font-size: clamp(30px, 8vw, 36px) !important;
        letter-spacing: -0.025em;
        margin-bottom: var(--space-md) !important;
    }

    .banner-home .banner-desc {
        font-size: 16px !important;
        line-height: 1.45 !important;
        margin-bottom: 20px !important;
    }

    .banner-track-wrap {
        align-items: center;
        display: grid;
        gap: var(--space-sm) !important;
        grid-template-columns: auto minmax(0, 1fr) auto;
        min-height: 56px !important;
        padding: 5px 5px 5px 16px !important;
    }

    .banner-track-wrap .track-input-icon {
        margin: 0 !important;
    }

    .banner-track-wrap .track-input {
        font-size: 14px !important;
        min-width: 0;
        padding: 0 !important;
        width: auto !important;
    }

    .banner-track-wrap .btn-bento-action {
        font-size: 13px !important;
        min-height: 44px !important;
        padding: 0 14px !important;
        width: auto !important;
    }

    #home > .bento-grid {
        padding: 0 16px;
    }

    #home > .bento-grid > .stats-cell {
        min-height: 0;
        padding: 32px 24px;
    }

    #home > .bento-grid > .stats-cell .portal-promo-title {
        margin-bottom: var(--space-lg) !important;
    }

    #home > .bento-grid > .stats-cell.span-4 .stats-grid-mini {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-item {
        align-content: start;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        border-top: 0;
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
        padding: 0 12px;
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-item:first-child {
        border-left: 0;
        padding-left: 0;
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-item:last-child {
        padding-right: 0;
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-num {
        font-size: clamp(22px, 7vw, 30px);
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-lbl {
        font-size: 12px;
    }

    #home > .bento-grid > .stats-cell.span-8 .stats-grid-mini {
        grid-template-columns: 1fr;
    }

    #home > .bento-grid > .stats-cell.span-8 .mini-stat-item,
    #home > .bento-grid > .stats-cell.span-8 .mini-stat-item:first-child,
    #home > .bento-grid > .stats-cell.span-8 .mini-stat-item:last-child {
        border-left: 0;
        border-top: 1px solid var(--apple-hairline);
        padding: 20px 0;
    }

    #home > .bento-grid > .stats-cell.span-8 .mini-stat-num {
        align-items: center;
        display: grid;
        gap: 16px;
        grid-template-columns: 48px 1fr;
    }

    #home > .bento-grid > .stats-cell.span-8 .mini-stat-lbl {
        margin-left: 64px !important;
        margin-top: var(--space-sm) !important;
        max-width: 30ch;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-track {
        transform: none !important;
    }
}

/* ==================== IMPECCABLE CONTACT POLISH ==================== */
#contact > .bento-grid {
    margin: var(--space-md) auto 0;
    max-width: 1440px;
    padding: 0 clamp(16px, 2.5vw, 36px);
}

#contact > .bento-grid > .bento-cell {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    padding: 0;
}

#contact .contact-grid-wrap {
    background: var(--apple-canvas);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    min-height: 600px;
}

#contact .contact-info-grid {
    background: var(--apple-dark);
    color: var(--apple-canvas);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: clamp(44px, 5vw, 72px);
}

#contact .contact-info-grid > div:first-child {
    margin-bottom: var(--space-lg);
}

#contact .contact-info-grid .contact-info-title,
#contact .contact-form-panel .contact-info-title {
    font-size: clamp(28px, 2.2vw, 36px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 var(--space-md);
    text-wrap: balance;
}

#contact .contact-info-grid .contact-info-title {
    color: var(--apple-canvas);
}

#contact .contact-info-grid p {
    color: var(--apple-body-muted);
    font-size: 17px;
    line-height: 1.47;
    margin: 0;
    max-width: 42ch;
    text-wrap: pretty;
}

#contact .info-item {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    gap: 16px;
    padding: 20px 0;
}

#contact .info-icon {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--apple-action-on-dark);
    flex: 0 0 44px;
    font-size: 16px;
    height: 44px;
    width: 44px;
}

#contact .info-content {
    min-width: 0;
}

#contact .info-lbl {
    color: var(--apple-body-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

#contact .info-val {
    color: var(--apple-canvas);
    display: block;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: var(--space-xs);
    overflow-wrap: anywhere;
    text-decoration: none;
}

#contact a.info-val:hover {
    color: var(--apple-action-on-dark);
}

#contact .social-links {
    gap: var(--space-md);
    margin-top: auto;
    padding-top: var(--space-xl);
}

#contact .social-btn {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--apple-canvas);
    height: 44px;
    width: 44px;
}

#contact .social-btn:hover,
#contact .social-btn:focus-visible {
    background: var(--apple-action);
    border-color: var(--apple-action);
    color: var(--apple-canvas);
}

#contact .contact-form-panel {
    background: var(--apple-canvas);
    padding: clamp(44px, 5vw, 72px);
}

#contact .contact-form-panel .contact-info-title {
    color: var(--apple-ink);
}

#contact .contact-form {
    gap: 20px;
}

#contact .calc-form-row {
    gap: 20px;
    margin-bottom: 0 !important;
}

#contact .calc-form-col {
    gap: var(--space-sm);
}

#contact .calc-lbl {
    color: var(--apple-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

#contact .calc-inp {
    background: var(--apple-canvas);
    border: 1px solid #d2d2d7;
    border-radius: 11px;
    color: var(--apple-ink);
    font-size: 17px;
    font-weight: 400;
    min-height: 52px;
    padding: 0 16px;
}

#contact .calc-inp::placeholder {
    color: var(--apple-muted);
    opacity: 1;
}

#contact .calc-inp:focus {
    border-color: var(--apple-action-focus);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.18);
    outline: 0;
}

#contact .textarea-control {
    height: 144px;
    line-height: 1.47;
    padding: 14px 16px;
    resize: vertical;
}

#contact .contact-form .btn-bento-action {
    font-size: 17px;
    font-weight: 600;
    min-height: 52px;
    margin-top: var(--space-xs);
}

@media (max-width: 1100px) {
    #contact .contact-grid-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    }

    #contact .contact-info-grid,
    #contact .contact-form-panel {
        padding: 44px 36px;
    }
}

@media (max-width: 800px) {
    #contact > .bento-grid {
        padding: 0 16px;
    }

    #contact .contact-grid-wrap {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    #contact .contact-info-grid,
    #contact .contact-form-panel {
        padding: 40px 28px;
    }

    #contact .social-links {
        margin-top: var(--space-lg);
        padding-top: 0;
    }
}

@media (max-width: 520px) {
    #contact .calc-form-row {
        grid-template-columns: 1fr;
    }

    #contact .contact-info-grid,
    #contact .contact-form-panel {
        padding: 32px 20px;
    }

    #contact .contact-info-grid .contact-info-title,
    #contact .contact-form-panel .contact-info-title {
        font-size: 28px;
    }
}

/* ==================== IMPECCABLE PRICING POLISH ==================== */
#pricing > .bento-grid {
    align-items: start;
    gap: var(--space-lg);
    margin: var(--space-lg) auto 18px;
    max-width: 1440px;
    padding: 0 clamp(20px, 3vw, 48px);
}

#pricing .pricing-calculator-panel,
#pricing .pricing-table-panel,
#pricing .pricing-tracking-panel {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 0;
    padding: clamp(32px, 3vw, 48px);
    transform: none;
}

#pricing .pricing-calculator-panel:hover,
#pricing .pricing-table-panel:hover,
#pricing .pricing-tracking-panel:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

#pricing .pricing-calculator-panel {
    background: var(--apple-canvas);
    grid-column: span 6;
}

#pricing .pricing-table-panel {
    background: var(--apple-parchment);
    grid-column: span 6;
}

#pricing .price-section-title,
#pricing .price-table-title {
    color: var(--apple-ink);
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

#pricing .price-section-title i,
#pricing .price-table-title i {
    color: var(--apple-action);
}

#pricing .calc-form-row {
    gap: 18px;
    margin-bottom: 18px;
}

#pricing .calc-lbl {
    color: var(--apple-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

#pricing .calc-select,
#pricing .calc-inp {
    background: #f7f8fa;
    border: 1px solid var(--apple-hairline);
    border-radius: 11px;
    font-size: 16px;
    min-height: 54px;
    padding: 12px 16px;
}

#pricing .calc-select:focus,
#pricing .calc-inp:focus {
    background: var(--apple-canvas);
    border-color: var(--apple-action-focus);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.16);
}

#pricing .pricing-calculate-button {
    justify-content: center;
    margin-top: 4px;
    min-height: 54px;
    width: 100%;
}

#pricing .price-table-title {
    align-items: center;
    border-bottom: 1px solid var(--apple-hairline);
    padding-bottom: 16px;
}

#pricing .pricing-validity {
    background: rgba(0, 113, 227, 0.1);
    border-radius: 999px;
    color: var(--apple-action);
    flex: none;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 10px;
}

#pricing .price-table th,
#pricing .price-table td {
    font-size: 14px;
    padding: 14px 8px;
}

#pricing .price-table th {
    white-space: normal;
}

#pricing .price-table td {
    color: var(--apple-ink);
    font-weight: 600;
}

#pricing .pricing-note,
#pricing .pricing-result-note,
#pricing .pricing-tracking-description {
    color: var(--apple-muted);
    font-size: 13px;
    line-height: 1.55;
}

#pricing .pricing-note {
    margin-top: 18px;
}

#pricing .pricing-result-note {
    margin-top: 12px;
}

#pricing .pricing-fee-label {
    font-size: 14px;
    font-weight: 700;
}

#pricing .pricing-tracking-panel {
    align-items: center;
    background: var(--apple-dark);
    display: grid;
    gap: 8px var(--space-xl);
    grid-template-columns: minmax(240px, 0.75fr) minmax(420px, 1.25fr);
}

#pricing .pricing-tracking-panel .price-section-title {
    color: var(--apple-canvas);
    margin: 0;
}

#pricing .pricing-tracking-panel .price-section-title i {
    color: var(--apple-action-on-dark);
}

#pricing .pricing-tracking-description {
    color: var(--apple-body-muted);
    margin: 0;
    max-width: 48ch;
}

#pricing .pricing-tracking-panel .track-bar-wrap {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: none;
    width: 100%;
}

@media (max-width: 992px) {
    #pricing .pricing-calculator-panel,
    #pricing .pricing-table-panel,
    #pricing .pricing-tracking-panel {
        grid-column: 1 / -1;
    }

    #pricing .pricing-tracking-panel {
        grid-template-columns: 1fr;
    }

    #pricing .pricing-tracking-panel .track-bar-wrap {
        grid-column: 1;
        grid-row: auto;
        margin-top: 12px;
    }
}

@media (max-width: 680px) {
    #pricing > .bento-grid {
        gap: 16px;
        padding: 0 16px;
    }

    #pricing .pricing-calculator-panel,
    #pricing .pricing-table-panel,
    #pricing .pricing-tracking-panel {
        padding: 28px 20px;
    }

    #pricing .calc-form-row {
        grid-template-columns: 1fr;
    }

    #pricing .price-table-title {
        align-items: flex-start;
        gap: 12px;
    }

    #pricing .price-table {
        min-width: 600px;
    }

    #pricing .track-bar-wrap {
        min-height: 56px;
    }
}

/* ==================== TTEX MOBILE INTERFACE UPGRADE ==================== */
@media (max-width: 768px) {
    :root {
        --mobile-edge: clamp(16px, 5vw, 22px);
        --mobile-section: clamp(32px, 9vw, 48px);
    }

    html {
        scroll-padding-top: 68px;
    }

    body {
        background: var(--apple-parchment);
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    header {
        background: rgba(255, 255, 255, 0.92);
        padding: 8px 0;
    }

    header.scrolled {
        padding: 7px 0;
    }

    .nav-container {
        gap: 10px;
        min-height: 46px;
        padding-left: var(--mobile-edge);
        padding-right: var(--mobile-edge);
    }

    .logo-wrap {
        flex: 1 1 auto;
        min-width: 0;
    }

    .logo-title {
        font-size: 16px;
        letter-spacing: -0.01em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-auth-buttons {
        flex: 0 0 auto;
        gap: 6px !important;
    }

    .header-auth-buttons .btn-portal-wrap button,
    .btn-lang-toggle {
        min-height: 42px;
    }

    .landing-main {
        padding-left: 0;
        padding-right: 0;
    }

    .rich-banner {
        border-bottom: 1px solid var(--apple-hairline);
        margin: 0;
    }

    .rich-banner .banner-art {
        aspect-ratio: 4 / 3 !important;
        display: block;
        filter: saturate(1.04) contrast(1.02);
        object-position: 72% center !important;
    }

    .banner-home .banner-art {
        aspect-ratio: 2 / 1 !important;
        max-height: 230px;
        object-position: 74% center !important;
    }

    .banner-copy {
        background: var(--apple-canvas) !important;
        padding: var(--mobile-section) var(--mobile-edge) 30px !important;
    }

    .banner-eyebrow {
        color: var(--apple-action);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.35;
        margin-bottom: 10px;
        max-width: 30ch;
    }

    .banner-title,
    .banner-home .banner-title {
        color: var(--apple-ink);
        font-size: clamp(31px, 9vw, 39px) !important;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.04 !important;
        margin-bottom: 14px !important;
        max-width: 14ch;
        text-wrap: balance;
    }

    .banner-title span,
    .banner-home .banner-title span {
        display: inline !important;
    }

    .banner-desc,
    .banner-home .banner-desc {
        color: rgba(29, 29, 31, 0.78);
        font-size: 16px !important;
        line-height: 1.48 !important;
        margin-bottom: 22px !important;
        max-width: 34ch !important;
        text-wrap: pretty;
    }

    .banner-home .banner-track-wrap {
        background: var(--apple-dark) !important;
        border: 0;
        border-radius: 20px !important;
        box-shadow: none;
        display: grid !important;
        gap: 8px !important;
        grid-template-columns: 24px minmax(0, 1fr) auto !important;
        min-height: 58px !important;
        padding: 7px 7px 7px 16px !important;
        width: 100%;
    }

    .banner-home .banner-track-wrap .track-input-icon {
        color: var(--apple-action-on-dark);
        font-size: 16px !important;
        margin: 0 !important;
    }

    .banner-home .banner-track-wrap .track-input {
        color: #ffffff;
        font-size: 15px !important;
        font-weight: 500;
        min-width: 0;
        padding: 0 !important;
        width: 100% !important;
    }

    .banner-home .banner-track-wrap .track-input::placeholder {
        color: rgba(255, 255, 255, 0.58);
        opacity: 1;
    }

    .banner-home .banner-track-wrap .btn-bento-action {
        background: var(--apple-action);
        color: #ffffff;
        font-size: 13px !important;
        font-weight: 700 !important;
        min-height: 44px !important;
        padding: 0 14px !important;
        width: auto !important;
    }

    .banner-home .banner-track-wrap:focus-within {
        box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.22);
    }

    #home > .bento-grid {
        gap: 0;
        margin: 0;
        max-width: none;
        padding: 0;
    }

    #home > .bento-grid > .stats-cell {
        border: 0;
        border-radius: 0;
        min-height: 0;
        padding: 34px var(--mobile-edge);
    }

    #home > .bento-grid > .stats-cell .portal-promo-title {
        font-size: 18px !important;
        line-height: 1.24;
        margin-bottom: 20px !important;
    }

    #home > .bento-grid > .stats-cell.span-4 {
        background: var(--apple-dark);
        color: #ffffff;
    }

    #home > .bento-grid > .stats-cell.span-4 .stats-grid-mini {
        display: grid;
        gap: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-item {
        align-content: start;
        border-left: 1px solid rgba(255, 255, 255, 0.16);
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-item:first-child {
        border-left: 0;
        padding-left: 0;
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-item:last-child {
        padding-right: 0;
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-num {
        color: #ffffff !important;
        font-size: clamp(23px, 7.2vw, 31px);
        line-height: 1;
        white-space: nowrap;
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-lbl {
        color: var(--apple-body-muted);
        font-size: 12px;
        line-height: 1.35;
    }

    #home > .bento-grid > .stats-cell.span-8 {
        background: var(--apple-canvas);
    }

    #home > .bento-grid > .stats-cell.span-8 .stats-grid-mini {
        display: grid;
        gap: 0;
        grid-template-columns: 1fr;
    }

    #home > .bento-grid > .stats-cell.span-8 .mini-stat-item,
    #home > .bento-grid > .stats-cell.span-8 .mini-stat-item:first-child,
    #home > .bento-grid > .stats-cell.span-8 .mini-stat-item:last-child {
        align-items: start;
        border-left: 0;
        border-top: 1px solid var(--apple-hairline);
        display: grid;
        gap: 12px 14px;
        grid-template-columns: 48px minmax(0, 1fr);
        min-height: 0;
        padding: 18px 0;
    }

    #home > .bento-grid > .stats-cell.span-8 .mini-stat-num {
        display: contents;
        font-size: 17px !important;
        line-height: 1.35;
    }

    #home > .bento-grid > .stats-cell.span-8 .mini-stat-num i {
        align-items: center;
        background: #f5f5f7;
        border: 1px solid var(--apple-hairline);
        border-radius: 999px;
        color: var(--apple-action) !important;
        display: inline-flex;
        font-size: 19px;
        height: 44px;
        justify-content: center;
        width: 44px;
    }

    #home > .bento-grid > .stats-cell.span-8 .mini-stat-num span {
        align-self: center;
        color: var(--apple-ink);
        font-size: 17px;
        font-weight: 700;
        min-width: 0;
    }

    #home > .bento-grid > .stats-cell.span-8 .mini-stat-lbl {
        color: var(--apple-muted) !important;
        font-size: 14px !important;
        grid-column: 2;
        line-height: 1.45;
        margin: -8px 0 0 !important;
        max-width: 34ch;
    }

    .partners-section {
        margin-top: 0 !important;
        padding: 24px 0;
    }

    .mobile-nav-bar {
        background: rgba(255, 255, 255, 0.92);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        gap: 3px;
        min-height: calc(66px + env(safe-area-inset-bottom, 0px));
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-nav-item {
        border-radius: 16px;
        color: var(--apple-muted);
        font-size: 11px;
        gap: 4px;
        justify-content: center;
        min-height: 54px;
        padding: 6px 4px;
    }

    .mobile-nav-item i {
        background: transparent;
        border: 0;
        color: currentColor;
        font-size: 17px;
    }

    .mobile-nav-item.active {
        background: #ffffff;
        color: var(--apple-action);
    }

    .mobile-nav-item.active::after {
        display: none;
    }

    .mobile-nav-item.active i {
        transform: none;
    }
}

@media (max-width: 640px) {
    .header-auth-buttons .btn-portal-wrap button .btn-text {
        display: none;
    }

    .header-auth-buttons .btn-portal-wrap button {
        height: 42px;
        justify-content: center;
        padding: 0;
        width: 42px;
    }

    .logo-img {
        height: 32px;
        width: 32px;
    }
}

@media (max-width: 360px) {
    .banner-home .banner-track-wrap {
        grid-template-columns: 20px minmax(0, 1fr) auto !important;
        padding-left: 12px !important;
    }

    .banner-home .banner-track-wrap .track-input {
        font-size: 14px !important;
    }

    .banner-home .banner-track-wrap .btn-bento-action {
        padding: 0 11px !important;
    }

    #home > .bento-grid > .stats-cell.span-4 .mini-stat-lbl {
        font-size: 11px;
    }
}

/* Final banner guard: keep artwork crisp while the gradient layer protects readable HTML copy. */
.rich-banner .banner-art {
    filter: saturate(1.08) contrast(1.04) !important;
    opacity: 0.78 !important;
}

.banner-home .banner-art {
    object-position: 74% center !important;
    transform: scale(1.02) !important;
}

.banner-services .banner-art {
    object-position: 66% center !important;
    transform: scale(1.04) !important;
}

.banner-pricing .banner-art {
    object-position: 68% center !important;
    transform: scale(1.04) !important;
}

.banner-news {
    display: flex !important;
}

.banner-news .banner-art {
    object-position: 70% center !important;
    transform: scale(1.05) !important;
}

.banner-contact .banner-art {
    object-position: 72% center !important;
    transform: scale(1.04) !important;
}

@media (max-width: 1023px) {
    .rich-banner .banner-art {
        filter: saturate(1.1) contrast(1.05) !important;
        opacity: 1 !important;
    }
}
