:root {
    --brand: #ffad00;
    --brand-dark: #e89400;
    --navy: #0b2341;
    --navy-deep: #06172c;
    --blue: #1c5ba8;
    --text: #17263a;
    --muted: #66758a;
    --line: #e3eaf2;
    --soft: #f5f8fc;
    --white: #ffffff;
    --success: #15966b;
    --shadow-sm: 0 10px 30px rgba(11, 35, 65, 0.08);
    --shadow-lg: 0 24px 70px rgba(6, 23, 44, 0.18);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.fw-800 {
    font-weight: 800;
}

.min-vh-75 {
    min-height: 75vh;
}

.topbar {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
    letter-spacing: 0.01em;
    padding: 0.6rem 0;
}

.topbar-link {
    color: #fff;
    font-weight: 700;
}

.main-navbar {
    min-height: 82px;
    box-shadow: 0 5px 20px rgba(6, 23, 44, 0.06);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
}

.brand-mark > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.04;
}

.brand-mark strong {
    color: var(--navy);
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.brand-mark small {
    color: var(--muted);
    font-size: 0.58rem;
    margin-top: 0.35rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-symbol {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--navy);
    transform: rotate(45deg);
    box-shadow: inset -8px -8px 0 rgba(255, 255, 255, 0.05);
}

.brand-symbol::before,
.brand-symbol::after {
    content: "";
    position: absolute;
    background: var(--brand);
    border-radius: 999px;
}

.brand-symbol::before {
    width: 22px;
    height: 7px;
    left: 10px;
    top: 11px;
}

.brand-symbol::after {
    width: 7px;
    height: 21px;
    left: 10px;
    top: 11px;
}

.brand-symbol-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    background: #fff;
}

.navbar-nav .nav-link {
    color: #34445a;
    font-size: 0.91rem;
    font-weight: 700;
    padding: 0.8rem 0.9rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--navy);
}

.btn {
    font-weight: 800;
    border-radius: 12px;
    padding: 0.74rem 1.15rem;
}

.btn-brand {
    --bs-btn-color: #172033;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: #172033;
    --bs-btn-hover-bg: #ffc036;
    --bs-btn-hover-border-color: #ffc036;
    --bs-btn-active-color: #172033;
    --bs-btn-active-bg: #e99b00;
    --bs-btn-active-border-color: #e99b00;
    box-shadow: 0 10px 24px rgba(255, 173, 0, 0.2);
}

.btn-dark-blue {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.btn-dark-blue:hover {
    color: #fff;
    background: var(--navy-deep);
    border-color: var(--navy-deep);
}

.hero-section,
.page-hero {
    position: relative;
    background:
        radial-gradient(circle at 84% 15%, rgba(43, 107, 182, 0.26), transparent 24%),
        linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 57%, #103b6d 100%);
}

.hero-section::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to right, #000, transparent 86%);
}

.hero-grid {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -160px;
    top: -220px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-grid::before,
.hero-grid::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.hero-grid::before {
    inset: 70px;
}

.hero-grid::after {
    inset: 145px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-section h1 {
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.hero-section h1 span {
    color: var(--brand);
}

.hero-lead,
.page-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.06rem;
    line-height: 1.75;
}

.tracking-card {
    max-width: 650px;
    padding: 1.4rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.tracking-card-label,
.tracking-code-label {
    display: block;
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tracking-card-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    color: var(--navy);
    background: #fff4d5;
    border-radius: 13px;
    font-size: 1.25rem;
}

.form-label {
    color: #314158;
    font-size: 0.82rem;
    font-weight: 800;
}

.tracking-form .input-group,
.page-tracking-form .input-group {
    border: 1px solid #dce4ee;
    border-radius: 13px;
    overflow: hidden;
}

.tracking-form .input-group-text {
    color: var(--muted);
    background: #fff;
    border: 0;
}

.tracking-form .form-control,
.page-tracking-form .form-control {
    border: 0;
    box-shadow: none;
    font-size: 0.95rem;
    font-weight: 700;
}

.tracking-form .btn,
.page-tracking-form .btn {
    border-radius: 0;
    padding-inline: 1.4rem;
}

.sample-code-button {
    padding: 0;
    color: var(--blue);
    background: transparent;
    border: 0;
    font-weight: 800;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.79rem;
    font-weight: 700;
}

.hero-features i {
    color: var(--brand);
}

.hero-visual-wrap {
    position: relative;
    padding: 2rem 0;
}

.hero-visual {
    width: 100%;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.12));
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 190px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(6,23,44,0.18);
}

.hero-floating-card-top {
    top: 18%;
    right: -1%;
}

.hero-floating-card-bottom {
    bottom: 11%;
    left: 2%;
}

.hero-floating-card strong,
.hero-floating-card small {
    display: block;
}

.hero-floating-card strong {
    color: var(--navy);
    font-size: 1.04rem;
}

.hero-floating-card small {
    color: var(--muted);
    font-size: 0.67rem;
}

.float-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--navy);
    background: #fff3d0;
    border-radius: 12px;
    font-size: 1.08rem;
}

.float-icon-success {
    color: var(--success);
    background: #e9f7f1;
}

.stats-strip {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(6, 23, 44, 0.06);
}

.stat-item {
    position: relative;
    padding: 1.45rem 1rem;
    text-align: center;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: var(--line);
}

.stat-item strong,
.stat-item span {
    display: block;
}

.stat-item strong {
    color: var(--navy);
    font-size: 1.42rem;
    font-weight: 800;
}

.stat-item span {
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 700;
}

.section-space {
    padding: 6rem 0;
}

.section-title {
    max-width: 760px;
    margin: 0.75rem 0 0;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-copy {
    color: var(--muted);
    line-height: 1.8;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,173,0,0.6);
    box-shadow: var(--shadow-sm);
}

.service-card.featured {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.service-card.featured::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -90px;
    bottom: -100px;
    border: 32px solid rgba(255,255,255,0.04);
    border-radius: 50%;
}

.service-number {
    position: absolute;
    top: 1.4rem;
    right: 1.5rem;
    color: #dce4ec;
    font-size: 1.8rem;
    font-weight: 800;
}

.service-card.featured .service-number {
    color: rgba(255,255,255,0.14);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 2rem;
    color: var(--navy);
    background: #fff2cc;
    border-radius: 17px;
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.28rem;
    font-weight: 800;
}

.service-card.featured h3 {
    color: #fff;
}

.service-card p {
    min-height: 88px;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.75;
}

.service-card.featured p {
    color: rgba(255,255,255,0.67);
}

.service-card a {
    position: relative;
    z-index: 1;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
}

.service-card.featured a {
    color: var(--brand);
}

.process-section {
    background: var(--soft);
}

.process-list {
    display: grid;
    gap: 1rem;
}

.process-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1.35rem 1.5rem;
    background: #fff;
    border: 1px solid #e3eaf2;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(6, 23, 44, 0.04);
}

.process-step {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--navy);
    background: var(--brand);
    border-radius: 50%;
    font-weight: 800;
}

.process-item h3 {
    margin: 0 0 0.25rem;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
}

.process-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.process-item > i {
    color: #b2c0cf;
    font-size: 1.7rem;
}

.coverage-section {
    background: #fff;
}

.coverage-card {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4.5rem);
    background:
        radial-gradient(circle at 85% 50%, rgba(42, 96, 160, 0.45), transparent 30%),
        var(--navy-deep);
    border-radius: 30px;
}

.coverage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, #000, transparent 75%);
}

.coverage-card > .row {
    position: relative;
    z-index: 1;
}

.section-kicker-light {
    color: var(--brand);
}

.coverage-copy {
    max-width: 700px;
    margin: 1.4rem 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.coverage-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.coverage-pills span {
    padding: 0.55rem 0.85rem;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 700;
}

.coverage-quote {
    padding: 2rem;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.coverage-quote > i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.4rem;
    color: var(--navy);
    background: #fff1c8;
    border-radius: 15px;
    font-size: 1.4rem;
}

.coverage-quote h3 {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
}

.coverage-quote p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.coverage-quote .btn-light {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.3rem 2.5rem;
    background: #fff8e6;
    border: 1px solid #ffe5a0;
    border-radius: 24px;
}

.cta-card h2 {
    max-width: 750px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.page-hero-compact {
    padding: 4.8rem 0;
}

.page-tracking-form {
    padding: 1.25rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}

.page-tracking-form small {
    display: block;
    margin-top: 0.7rem;
    color: var(--muted);
    font-size: 0.67rem;
}

.tracking-results-section {
    background: var(--soft);
}

.tracking-empty-state {
    max-width: 620px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background: #fff;
    border: 1px dashed #cfd9e5;
    border-radius: 24px;
}

.tracking-empty-state > span,
.not-found-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 1.4rem;
    color: var(--navy);
    background: #fff2cf;
    border-radius: 22px;
    font-size: 2rem;
}

.tracking-empty-state h2,
.tracking-not-found h2 {
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 800;
}

.tracking-empty-state p,
.tracking-not-found p {
    color: var(--muted);
}

.tracking-not-found {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 850px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
}

.not-found-icon {
    margin: 0;
}

.tracking-summary-card,
.content-card {
    padding: clamp(1.4rem, 3vw, 2.2rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(6,23,44,0.04);
}

.tracking-status-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    flex: 0 0 auto;
    border-radius: 18px;
    font-size: 1.7rem;
}

.tracking-code {
    color: var(--navy);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.tracking-update {
    color: var(--muted);
    font-size: 0.78rem;
}

.delivery-estimate {
    padding: 1.25rem 1.35rem;
    background: var(--soft);
    border-radius: 16px;
}

.delivery-estimate span,
.delivery-estimate strong,
.delivery-estimate small {
    display: block;
}

.delivery-estimate span {
    color: var(--muted);
    font-size: 0.71rem;
    font-weight: 800;
    text-transform: uppercase;
}

.delivery-estimate strong {
    margin: 0.25rem 0;
    color: var(--navy);
    font-size: 1.15rem;
}

.delivery-estimate small {
    color: #7a8798;
    font-size: 0.66rem;
}

.shipment-progress {
    color: var(--muted);
    font-size: 0.75rem;
}

.shipment-progress .progress {
    height: 9px;
    background: #e8eef5;
    border-radius: 99px;
}

.shipment-progress .progress-bar {
    background: linear-gradient(90deg, var(--brand-dark), var(--brand));
    border-radius: 99px;
}

.content-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid var(--line);
}

.content-card-header.compact {
    margin-bottom: 0.5rem;
}

.content-card-header h2 {
    margin: 0.35rem 0 0;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 800;
}

.content-card-header > i {
    color: #a7b6c7;
    font-size: 1.5rem;
}

.tracking-timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.timeline-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: -3px;
    left: 10px;
    width: 2px;
    background: #dbe4ee;
}

.timeline-marker {
    position: relative;
    z-index: 1;
    padding-top: 5px;
}

.timeline-marker span {
    display: block;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 6px solid #b8c5d2;
    border-radius: 50%;
}

.timeline-item.current .timeline-marker span {
    border-color: var(--brand);
    box-shadow: 0 0 0 6px rgba(255,173,0,0.16);
}

.timeline-content {
    padding: 0 0 1rem;
}

.timeline-content h3 {
    margin: 0;
    color: var(--navy);
    font-size: 0.98rem;
    font-weight: 800;
}

.timeline-location {
    color: var(--muted);
    font-size: 0.73rem;
}

.timeline-content time {
    color: var(--muted);
    font-size: 0.67rem;
    text-align: right;
}

.timeline-content time strong {
    color: var(--navy);
}

.timeline-content p {
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.65;
}

.shipment-details {
    margin: 0;
}

.shipment-details > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid #edf1f5;
}

.shipment-details > div:last-child {
    border-bottom: 0;
}

.shipment-details dt {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.shipment-details dd {
    max-width: 65%;
    margin: 0;
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 800;
    text-align: right;
}

.help-card {
    padding: 2rem;
    color: #fff;
    background: var(--navy);
    border-radius: 24px;
}

.help-card-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.2rem;
    color: var(--navy);
    background: var(--brand);
    border-radius: 15px;
    font-size: 1.35rem;
}

.help-card h2 {
    font-size: 1.3rem;
    font-weight: 800;
}

.help-card p {
    color: rgba(255,255,255,0.68);
    font-size: 0.8rem;
    line-height: 1.65;
}

.contact-form-card h2,
.contact-info-card h2 {
    color: var(--navy);
    font-weight: 800;
}

.form-control,
.form-select {
    border-color: #dbe3ec;
    border-radius: 12px;
    font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(255, 173, 0, 0.8);
    box-shadow: 0 0 0 0.2rem rgba(255,173,0,0.15);
}

.contact-info-card {
    height: 100%;
    padding: clamp(2rem, 4vw, 3rem);
    color: #fff;
    background: var(--navy);
    border-radius: 24px;
}

.contact-info-card h2 {
    margin-top: 0.6rem;
    color: #fff;
}

.contact-info-card > p {
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
}

.contact-info-card ul {
    display: grid;
    gap: 1rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-info-card li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
}

.contact-info-card li > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--navy);
    background: var(--brand);
    border-radius: 12px;
}

.contact-info-card small,
.contact-info-card strong {
    display: block;
}

.contact-info-card small {
    color: rgba(255,255,255,0.57);
    font-size: 0.65rem;
}

.contact-info-card strong {
    color: #fff;
    font-size: 0.82rem;
}

.site-footer {
    color: rgba(255,255,255,0.72);
    background: var(--navy-deep);
}

.brand-mark-light strong {
    color: #fff;
}

.brand-mark-light small {
    color: rgba(255,255,255,0.52);
}

.brand-mark-light .brand-symbol {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-copy {
    max-width: 410px;
    color: rgba(255,255,255,0.56);
    font-size: 0.8rem;
    line-height: 1.75;
}

.social-button {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    color: #fff;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 11px;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-button:hover {
    color: var(--navy);
    background: var(--brand);
}

.footer-title {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
}

.footer-links,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links {
    display: grid;
    gap: 0.7rem;
}

.footer-links a {
    color: rgba(255,255,255,0.54);
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-contact {
    display: grid;
    gap: 0.9rem;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    color: rgba(255,255,255,0.58);
    font-size: 0.75rem;
}

.footer-contact i {
    color: var(--brand);
}

.footer-bottom {
    color: rgba(255,255,255,0.42);
    background: rgba(0,0,0,0.16);
    font-size: 0.67rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 1000;
    right: 22px;
    bottom: 22px;
    display: grid;
    place-items: center;
    width: 57px;
    height: 57px;
    color: #fff;
    background: #20b85a;
    border: 4px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
    font-size: 1.6rem;
}

.whatsapp-float:hover {
    color: #fff;
    background: #18a34e;
}

@media (max-width: 991.98px) {
    .main-navbar {
        min-height: 72px;
    }

    .navbar-collapse {
        padding: 1rem 0 1.3rem;
    }

    .hero-section h1 {
        font-size: clamp(2.6rem, 10vw, 4rem);
    }

    .section-space {
        padding: 4.5rem 0;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .brand-symbol {
        width: 38px;
        height: 38px;
    }

    .brand-mark strong {
        font-size: 1.18rem;
    }

    .tracking-card {
        padding: 1.15rem;
    }

    .tracking-form .input-group {
        display: grid;
        grid-template-columns: auto 1fr;
        overflow: visible;
        border: 0;
        gap: 0;
    }

    .tracking-form .input-group-text {
        border: 1px solid #dce4ee;
        border-right: 0;
        border-radius: 12px 0 0 12px;
    }

    .tracking-form .form-control {
        border: 1px solid #dce4ee;
        border-left: 0;
        border-radius: 0 12px 12px 0 !important;
    }

    .tracking-form .btn {
        grid-column: 1 / -1;
        margin-top: 0.65rem;
        border-radius: 12px !important;
    }

    .hero-features {
        display: grid;
        gap: 0.6rem;
    }

    .stat-item {
        padding: 1.2rem 0.6rem;
    }

    .stat-item:nth-child(2n)::after {
        display: none;
    }

    .stat-item strong {
        font-size: 1.15rem;
    }

    .process-item {
        grid-template-columns: auto 1fr;
    }

    .process-item > i {
        display: none;
    }

    .coverage-card {
        border-radius: 22px;
    }

    .cta-card {
        padding: 1.7rem;
    }

    .tracking-not-found {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .not-found-icon {
        margin: 0 auto;
    }

    .timeline-content time {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .hero-section .row {
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.55rem;
    }

    .hero-lead,
    .page-hero p {
        font-size: 0.94rem;
    }

    .page-hero-compact {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .shipment-details > div {
        display: block;
    }

    .shipment-details dd {
        max-width: none;
        margin-top: 0.3rem;
        text-align: left;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
    }
}

/* Functional site components */
.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: .7rem 1rem;
    color: #fff;
    background: var(--navy-deep);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
.topbar a { color: inherit; }
.topbar a:hover { color: #fff; }

.btn-outline-navy {
    --bs-btn-color: var(--navy);
    --bs-btn-border-color: #cbd6e2;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--navy);
    --bs-btn-hover-border-color: var(--navy);
}

.dropdown-menu { min-width: 250px; padding: .65rem; border-radius: 16px; }
.dropdown-item { padding: .72rem .85rem; border-radius: 10px; font-size: .86rem; font-weight: 700; color: #34445a; }
.dropdown-item:hover { color: var(--navy); background: var(--soft); }
.dropdown-item i { color: var(--brand-dark); }

.quick-actions-section { position: relative; z-index: 3; margin-top: -28px; }
.quick-action-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.quick-action-card:hover { color: inherit; transform: translateY(-3px); box-shadow: 0 18px 38px rgba(11,35,65,.12); }
.quick-action-card > span { display: grid; place-items: center; width: 48px; height: 48px; color: var(--navy); background: #fff4d8; border-radius: 14px; font-size: 1.2rem; }
.quick-action-card div { display: flex; flex-direction: column; }
.quick-action-card strong { font-size: .92rem; }
.quick-action-card small { margin-top: .2rem; color: var(--muted); font-size: .72rem; }
.quick-action-card > i { color: var(--brand-dark); }

.icon-button {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    color: var(--navy);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 9px;
}
.icon-button:hover { background: #e8eef5; }

.shipment-stepper { display: grid; grid-template-columns: repeat(6, 1fr); position: relative; }
.shipment-stepper::before { content: ""; position: absolute; left: 8%; right: 8%; top: 18px; height: 3px; background: #e4eaf1; }
.shipment-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .55rem; text-align: center; }
.shipment-step > span { display: grid; place-items: center; width: 38px; height: 38px; color: #8a97a8; background: #fff; border: 3px solid #e4eaf1; border-radius: 50%; font-size: .72rem; font-weight: 800; }
.shipment-step small { color: #77869a; font-size: .66rem; font-weight: 700; }
.shipment-step.done > span { color: #fff; background: var(--success); border-color: var(--success); }
.shipment-step.done small { color: #456276; }
.shipment-step.current > span { color: var(--navy); background: var(--brand); border-color: #fff; box-shadow: 0 0 0 4px rgba(255,173,0,.2); }
.shipment-step.current small { color: var(--navy); font-weight: 800; }
.tracking-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.empty-help-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.2rem; }
.empty-help-links a { color: var(--navy); font-size: .8rem; font-weight: 800; }
.pickup-alert { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding: 1.25rem 1.4rem; color: #fff; background: linear-gradient(110deg, #0a7254, #15966b); border-radius: 18px; box-shadow: var(--shadow-sm); }
.pickup-alert > span { display: grid; place-items: center; width: 52px; height: 52px; background: rgba(255,255,255,.14); border-radius: 14px; font-size: 1.3rem; }
.pickup-alert strong { display: block; margin-bottom: .25rem; }
.pickup-alert p { margin: 0; color: rgba(255,255,255,.75); font-size: .78rem; }

.service-detail-card { padding: 2rem; margin-bottom: 2rem; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-sm); scroll-margin-top: 110px; }
.service-detail-card h2 { margin: .5rem 0 1rem; font-size: clamp(1.8rem, 3vw, 2.55rem); font-weight: 800; letter-spacing: -.04em; }
.service-detail-card p { color: var(--muted); line-height: 1.75; }
.service-detail-visual { min-height: 310px; display: flex; flex-direction: column; justify-content: end; padding: 2rem; color: #fff; background: radial-gradient(circle at 75% 20%, rgba(255,173,0,.65), transparent 24%), linear-gradient(145deg, #0b2341, #1c5ba8); border-radius: 22px; overflow: hidden; }
.service-detail-visual i { margin-bottom: auto; font-size: 5rem; opacity: .9; }
.service-detail-visual span { max-width: 260px; font-size: 1.25rem; font-weight: 800; }
.service-detail-visual.dark { background: radial-gradient(circle at 75% 20%, rgba(255,173,0,.35), transparent 24%), linear-gradient(145deg, #06172c, #0b2341); }
.service-detail-visual.accent { color: var(--navy); background: radial-gradient(circle at 75% 20%, rgba(255,255,255,.55), transparent 24%), linear-gradient(145deg, #ffad00, #ffd779); }
.feature-check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 1.2rem; padding: 0; margin: 1.5rem 0; list-style: none; }
.feature-check-list li { position: relative; padding-left: 1.55rem; color: #41536a; font-size: .82rem; font-weight: 700; }
.feature-check-list li::before { content: "\F26A"; position: absolute; left: 0; color: var(--success); font-family: "bootstrap-icons"; }
.info-banner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem; padding: 1.7rem; background: var(--soft); border: 1px solid var(--line); border-radius: 22px; }
.info-banner > span { display: grid; place-items: center; width: 56px; height: 56px; color: var(--brand-dark); background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); font-size: 1.35rem; }
.info-banner h2 { margin: 0 0 .35rem; font-size: 1.2rem; font-weight: 800; }
.info-banner p { margin: 0; color: var(--muted); font-size: .8rem; }

.quote-form-card { overflow: visible; }
.service-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.service-selector label { cursor: pointer; }
.service-selector input { position: absolute; opacity: 0; pointer-events: none; }
.service-selector span { display: flex; flex-direction: column; min-height: 132px; padding: 1rem; color: #405067; background: var(--soft); border: 2px solid transparent; border-radius: 16px; transition: .2s ease; }
.service-selector i { margin-bottom: auto; color: var(--brand-dark); font-size: 1.35rem; }
.service-selector strong { margin-top: .7rem; font-size: .84rem; }
.service-selector small { color: var(--muted); font-size: .67rem; }
.service-selector input:checked + span { color: var(--navy); background: #fff8e7; border-color: var(--brand); box-shadow: 0 10px 24px rgba(255,173,0,.12); }
.dimension-fields { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: .4rem; }
.dimension-fields input { min-width: 0; padding-left: .65rem; padding-right: .65rem; text-align: center; }
.dimension-fields span { color: #94a0ae; }
.form-info { display: flex; gap: .7rem; padding: .8rem 1rem; color: #53657a; background: #eff5fb; border-radius: 12px; font-size: .75rem; }
.form-info i { color: var(--blue); }
.quote-result-card { position: sticky; top: 108px; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--navy-deep), var(--navy)); border-radius: 24px; box-shadow: var(--shadow-lg); }
.quote-result-top { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.quote-result-top span { font-weight: 800; }
.quote-result-top small { color: rgba(255,255,255,.52); }
.quote-route { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; padding: 1.4rem; }
.quote-route div { display: flex; flex-direction: column; }
.quote-route div:last-child { text-align: right; }
.quote-route small { color: rgba(255,255,255,.5); font-size: .65rem; text-transform: uppercase; }
.quote-route strong { margin-top: .25rem; font-size: .88rem; }
.quote-route > i { color: var(--brand); }
.quote-price { padding: 1.5rem 1.4rem; background: rgba(255,255,255,.06); }
.quote-price small, .quote-price span { display: block; color: rgba(255,255,255,.56); }
.quote-price strong { display: block; margin: .25rem 0; color: var(--brand); font-size: 2.6rem; letter-spacing: -.05em; }
.quote-price span { font-size: .65rem; }
.quote-breakdown { padding: 1rem 1.4rem; margin: 0; }
.quote-breakdown > div { display: flex; justify-content: space-between; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.quote-breakdown dt { color: rgba(255,255,255,.54); font-size: .7rem; font-weight: 600; }
.quote-breakdown dd { margin: 0; text-align: right; font-size: .73rem; font-weight: 800; }
.quote-disclaimer { padding: 0 1.4rem; margin: 0 0 1rem; color: rgba(255,255,255,.5); font-size: .65rem; line-height: 1.6; }
.quote-result-card > .btn { margin: 0 1.4rem 1.4rem; width: calc(100% - 2.8rem) !important; }
.quote-placeholder-card { position: sticky; top: 108px; padding: 2.2rem; background: var(--soft); border: 1px dashed #c8d4e1; border-radius: 24px; }
.quote-placeholder-card > span { display: grid; place-items: center; width: 66px; height: 66px; color: var(--brand-dark); background: #fff; border-radius: 18px; font-size: 1.7rem; box-shadow: var(--shadow-sm); }
.quote-placeholder-card h2 { margin: 1.2rem 0 .6rem; font-size: 1.35rem; font-weight: 800; }
.quote-placeholder-card p { color: var(--muted); font-size: .8rem; line-height: 1.7; }
.quote-placeholder-card ul { display: grid; gap: .7rem; padding: 0; margin: 1.4rem 0 0; list-style: none; color: #47596f; font-size: .75rem; font-weight: 700; }
.quote-placeholder-card li i { margin-right: .5rem; color: var(--success); }

.agency-search-panel { padding: 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.agency-card { display: flex; flex-direction: column; padding: 1.45rem; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 8px 24px rgba(11,35,65,.06); transition: .2s ease; }
.agency-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.agency-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.agency-icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--navy); background: #fff4d8; border-radius: 14px; font-size: 1.15rem; }
.agency-open { color: var(--success); font-size: .64rem; font-weight: 800; }
.agency-open i { margin-right: .35rem; font-size: .42rem; }
.agency-card h3 { margin: .4rem 0 .75rem; font-size: 1.25rem; font-weight: 800; }
.agency-address { display: flex; gap: .5rem; min-height: 44px; color: var(--muted); font-size: .76rem; line-height: 1.55; }
.agency-address i { color: var(--brand-dark); }
.agency-meta { display: grid; gap: .65rem; padding: 1rem 0; margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.agency-meta > div { display: grid; grid-template-columns: 90px 1fr; gap: .7rem; }
.agency-meta dt { color: #718096; font-size: .67rem; font-weight: 600; }
.agency-meta dt i { margin-right: .35rem; color: var(--brand-dark); }
.agency-meta dd { margin: 0; color: #34445a; font-size: .69rem; font-weight: 700; }
.agency-services { display: flex; flex-wrap: wrap; gap: .35rem; margin: 1rem 0; }
.agency-services span { padding: .35rem .55rem; color: #56677c; background: var(--soft); border-radius: 999px; font-size: .58rem; font-weight: 800; }
.agency-actions { display: flex; gap: .5rem; margin-top: auto; }
.agency-actions .btn { flex: 1; padding: .65rem .5rem; font-size: .68rem; }

.optional-label { color: #8793a2; font-size: .62rem; font-weight: 600; }
.success-ticket { display: flex; gap: .8rem; align-items: flex-start; }
.success-ticket > i { margin-top: .15rem; font-size: 1.25rem; }
.success-ticket p { margin: .25rem 0 0; }
.support-hours-card { display: flex; align-items: center; gap: 1rem; padding: 1.2rem; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; }
.support-hours-card > i { color: var(--brand-dark); font-size: 1.4rem; }
.support-hours-card strong { display: block; font-size: .78rem; }
.support-hours-card p { margin: .2rem 0 0; color: var(--muted); font-size: .7rem; }

.help-search { position: relative; max-width: 750px; margin-inline: auto; }
.help-search i { position: absolute; z-index: 2; left: 1rem; top: 50%; color: #8492a3; transform: translateY(-50%); }
.help-search input { padding-left: 2.8rem; border-radius: 16px; box-shadow: var(--shadow-sm); }
.help-sidebar { top: 110px; display: grid; padding: .7rem; background: var(--soft); border-radius: 18px; }
.help-sidebar a { display: flex; justify-content: space-between; gap: .8rem; padding: .8rem .9rem; color: #4c5e73; border-radius: 11px; font-size: .74rem; font-weight: 800; }
.help-sidebar a:hover { color: var(--navy); background: #fff; }
.faq-group { margin-bottom: 3rem; scroll-margin-top: 110px; }
.faq-group > h2 { margin: .4rem 0 1.2rem; font-size: 1.6rem; font-weight: 800; }
.faq-accordion .accordion-item { margin-bottom: .65rem; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
.faq-accordion .accordion-button { padding: 1.05rem 1.15rem; color: var(--navy); background: #fff; box-shadow: none; font-size: .82rem; font-weight: 800; }
.faq-accordion .accordion-button:not(.collapsed) { background: #fff8e7; }
.faq-accordion .accordion-body { color: var(--muted); font-size: .77rem; line-height: 1.75; }
.faq-no-results { padding: 3rem; text-align: center; background: var(--soft); border-radius: 22px; }
.faq-no-results > i { color: var(--brand-dark); font-size: 2rem; }

.page-hero-mini { padding: 3.8rem 0; }
.legal-intro-card { display: flex; gap: 1rem; padding: 1.4rem; background: #fff8e7; border: 1px solid #f3dfaf; border-radius: 18px; }
.legal-intro-card > i { color: var(--brand-dark); font-size: 1.5rem; }
.legal-intro-card h2 { margin: 0 0 .35rem; font-size: 1.05rem; font-weight: 800; }
.legal-intro-card p { margin: 0; color: #665b45; font-size: .76rem; line-height: 1.7; }
.restriction-card { display: flex; gap: 1rem; padding: 1.35rem; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.restriction-card > span { flex: 0 0 auto; display: grid; place-items: center; width: 52px; height: 52px; color: #b63838; background: #fff0f0; border-radius: 14px; font-size: 1.25rem; }
.restriction-card h2 { margin: 0 0 .35rem; font-size: .95rem; font-weight: 800; }
.restriction-card p { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.65; }
.legal-document { max-width: 900px; padding: clamp(1.5rem, 4vw, 3rem); margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); }
.legal-updated { color: #8492a3 !important; font-size: .68rem !important; }
.legal-document h2 { margin: 2rem 0 .65rem; color: var(--navy); font-size: 1.05rem; font-weight: 800; }
.legal-document h2:first-of-type { margin-top: 1rem; }
.legal-document p { color: #56677c; font-size: .78rem; line-height: 1.9; }
.legal-document a { color: var(--blue); text-decoration: underline; }

.claims-form-card fieldset { padding: 0; margin: 0 0 2.4rem; border: 0; }
.claims-form-card legend { display: flex; align-items: center; gap: .7rem; padding-bottom: .8rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line); color: var(--navy); font-size: 1rem; font-weight: 800; }
.claims-form-card legend span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--navy); background: var(--brand); border-radius: 9px; font-size: .72rem; }
.claim-help-card { position: sticky; top: 110px; padding: 1.6rem; color: #fff; background: var(--navy); border-radius: 22px; }
.claim-help-card > i { color: var(--brand); font-size: 1.6rem; }
.claim-help-card h2 { margin: .8rem 0; font-size: 1.25rem; font-weight: 800; }
.claim-help-card p { color: rgba(255,255,255,.66); font-size: .73rem; line-height: 1.65; }
.claim-help-card strong { display: block; margin-bottom: .25rem; color: var(--brand); font-size: .74rem; }
.claim-help-card hr { border-color: rgba(255,255,255,.15); }
.claim-success-card { max-width: 700px; padding: 3rem; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.claim-success-card > span { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 1rem; color: var(--success); background: #e9f8f2; border-radius: 50%; font-size: 2rem; }
.claim-success-card h2 { font-weight: 800; }
.claim-success-card > strong { display: block; margin: .6rem 0 1rem; color: var(--navy); font-size: 1.65rem; letter-spacing: .05em; }
.claim-success-card p { color: var(--muted); }

.floating-actions { position: fixed; z-index: 1000; right: 22px; bottom: 22px; display: grid; gap: .65rem; }
.floating-action { position: static; display: grid; place-items: center; width: 54px; height: 54px; color: #fff; border: 4px solid rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 14px 30px rgba(0,0,0,.2); font-size: 1.35rem; }
.call-action { background: var(--navy); }
.call-action:hover { color: #fff; background: var(--navy-deep); }
.whatsapp-float { position: static; width: 58px; height: 58px; }
.footer-legal-links { display: flex; gap: .55rem; }
.footer-legal-links a:hover { color: #fff; }

@media (max-width: 991.98px) {
    .quick-actions-section { margin-top: 0; padding-top: 1rem; }
    .quote-result-card, .quote-placeholder-card, .claim-help-card { position: static; }
    .feature-check-list { grid-template-columns: 1fr; }
    .info-banner { grid-template-columns: auto 1fr; }
    .info-banner .btn { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
    .shipment-stepper { grid-template-columns: repeat(3, 1fr); gap: 1rem 0; }
    .shipment-stepper::before { display: none; }
    .pickup-alert { grid-template-columns: auto 1fr; }
    .pickup-alert .btn { grid-column: 1 / -1; }
    .service-selector { grid-template-columns: 1fr; }
    .service-selector span { min-height: 92px; }
    .service-detail-card { padding: 1.2rem; }
    .service-detail-visual { min-height: 240px; }
    .agency-actions { flex-direction: column; }
    .info-banner { grid-template-columns: 1fr; text-align: left; }
    .floating-actions { right: 14px; bottom: 14px; }
}

@media print {
    header, footer, .floating-actions, .page-hero, .tracking-actions, .help-card, .btn, .toast-container { display: none !important; }
    body { background: #fff !important; }
    main { padding: 0 !important; }
    .section-space { padding: 0 !important; }
    .container-xl { max-width: none !important; }
    .tracking-summary-card, .content-card, .claim-success-card { box-shadow: none !important; border: 1px solid #ccc !important; }
    .tracking-results-section .col-lg-8, .tracking-results-section .col-lg-4 { width: 100% !important; }
    .tracking-timeline { break-inside: avoid; }
}

/* ========================================================================
   ÃVILA â€” EDITORIAL LOGISTICS THEME
   Custom visual system for the Ãvila logistics portal.
   ======================================================================== */
:root {
    --brand: #ff9d00;
    --brand-dark: #e78400;
    --navy: #3032d9;
    --navy-deep: #171baf;
    --blue: #3032d9;
    --text: #151515;
    --muted: #656565;
    --line: #dcdcd7;
    --soft: #f4f3ed;
    --white: #ffffff;
    --success: #16845d;
    --shadow-sm: 0 8px 22px rgba(22, 22, 22, .07);
    --shadow-lg: 0 18px 45px rgba(22, 22, 22, .13);
    --radius: 6px;
}

html { scroll-padding-top: 96px; }
body {
    font-family: "Poppins", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 15px;
}

::selection { color: #111; background: var(--brand); }

.container-xl { max-width: 1320px; }
.section-space { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-title {
    max-width: 760px;
    margin: .65rem 0 0;
    color: var(--text);
    font-size: clamp(2.25rem, 5vw, 5.25rem);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .98;
}
.section-copy {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}
.eyebrow,
.section-kicker {
    gap: .65rem;
    color: var(--navy);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
}
.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--brand);
}

/* Header and wordmark */
.topbar {
    padding: .58rem 0;
    color: rgba(255,255,255,.78);
    background: #111;
    font-size: .69rem;
}
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--brand); }
.main-navbar {
    min-height: 88px;
    border-bottom: 1px solid rgba(20,20,20,.1);
    box-shadow: none;
    transition: min-height .25s ease, box-shadow .25s ease;
}
.main-navbar.is-scrolled {
    min-height: 72px;
    box-shadow: 0 8px 26px rgba(0,0,0,.08);
}
.brand-mark { gap: .8rem; }
.brand-mark strong {
    color: var(--navy);
    font-size: 1.46rem;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -.07em;
    text-transform: uppercase;
}
.brand-mark small {
    margin-top: .26rem;
    color: #666;
    font-size: .51rem;
    font-weight: 600;
    letter-spacing: .13em;
}
.brand-symbol {
    position: relative;
    display: block;
    width: 48px;
    height: 31px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}
.brand-symbol::before,
.brand-symbol::after,
.brand-symbol-dot {
    content: "";
    position: absolute;
    left: 0;
    border-radius: 0;
    transform: skewX(-24deg);
}
.brand-symbol::before {
    top: 0;
    width: 48px;
    height: 11px;
    background: var(--navy);
}
.brand-symbol::after {
    top: 16px;
    width: 36px;
    height: 8px;
    background: var(--brand);
}
.brand-symbol-dot {
    top: 27px;
    bottom: auto;
    width: 24px;
    height: 4px;
    background: var(--navy);
}
.navbar-nav .nav-link {
    position: relative;
    color: #242424;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .015em;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    right: .9rem;
    bottom: .45rem;
    left: .9rem;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.navbar-nav .dropdown-toggle::after { position: static; width: auto; height: auto; background: transparent; transform: none; }
.dropdown-menu {
    padding: .55rem;
    border: 1px solid #e4e4df !important;
    border-radius: 4px;
    box-shadow: 0 16px 35px rgba(0,0,0,.1) !important;
}
.dropdown-item { border-radius: 2px; font-size: .74rem; }
.dropdown-item:hover { color: var(--navy); background: #f2f1ec; }

/* Buttons and fields: direct, rectangular, tactile */
.btn {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    padding: .78rem 1.25rem;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
    box-shadow: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn i { transition: transform .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:hover i { transform: translateX(4px); }
.btn-brand {
    --bs-btn-color: #121212;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: #121212;
    --bs-btn-hover-bg: #ffb326;
    --bs-btn-hover-border-color: #ffb326;
    --bs-btn-active-color: #121212;
    --bs-btn-active-bg: #e98f00;
    --bs-btn-active-border-color: #e98f00;
    box-shadow: none;
}
.btn-outline-navy {
    color: var(--navy);
    border-color: var(--navy);
    background: transparent;
}
.btn-outline-navy:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.btn-dark-blue { background: var(--navy); border-color: var(--navy); }
.btn-dark-blue:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.form-control,
.form-select,
.input-group-text {
    min-height: 50px;
    border-color: #d7d7d2;
    border-radius: 3px;
    font-size: .79rem;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(48,50,217,.12);
}

/* Remove generic AI/SaaS decoration globally */
.hero-section,
.page-hero {
    background: var(--navy);
}
.hero-section::before,
.page-hero::before,
.hero-grid { display: none; }
.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
    border-bottom: 12px solid var(--brand);
}
.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8vw;
    width: min(44vw, 640px);
    height: 100%;
    background: rgba(255,255,255,.045);
    transform: skewX(-14deg);
    transform-origin: top;
}
.page-hero .container-xl { position: relative; z-index: 1; }
.page-hero h1 {
    max-width: 930px;
    color: #fff;
    font-size: clamp(2.7rem, 6.6vw, 6.2rem);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .94;
}
.page-hero p { max-width: 700px; color: rgba(255,255,255,.76); }

/* Home hero */
.home-hero {
    color: var(--text);
    background: #f2f1eb;
    border-bottom: 0;
}
.home-hero::after { display: none; }
.hero-shell { position: relative; padding-top: clamp(2rem, 5vw, 5rem); padding-bottom: clamp(5.5rem, 8vw, 8.5rem); }
.hero-copy-column { display: flex; align-items: center; background: #f2f1eb; }
.hero-copy { max-width: 850px; padding: clamp(2.5rem, 5vw, 5.7rem) clamp(1.2rem, 5vw, 5.5rem) clamp(3.5rem, 7vw, 7rem) 0; }
.home-hero .eyebrow { margin-bottom: 1.8rem; color: var(--navy); }
.home-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #121212;
    font-size: clamp(3.5rem, 7.9vw, 7.8rem);
    font-weight: 800;
    letter-spacing: -.078em;
    line-height: .88;
}
.home-hero .hero-lead {
    max-width: 700px;
    margin: 2rem 0 0;
    color: #4c4c4c;
    font-size: clamp(.95rem, 1.45vw, 1.15rem);
    line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.3rem; }
.hero-text-link,
.underlined-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 0 .35rem;
    border-bottom: 2px solid var(--navy);
    color: var(--navy);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}
.hero-text-link i,
.underlined-link i { transition: transform .2s ease; }
.hero-text-link:hover i,
.underlined-link:hover i { transform: translate(3px,-3px); }
.hero-photo-column { min-height: 670px; }
.hero-photo { position: relative; width: 100%; height: 100%; min-height: 670px; margin: 0; overflow: hidden; background: #1b1b1b; }
.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65));
    pointer-events: none;
}
.hero-photo img {
    width: 100%;
    height: calc(100% + 42px);
    object-fit: cover;
    transform: translateY(var(--photo-shift, -18px)) scale(1.035);
    transition: transform .1s linear;
}
.hero-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
}
.hero-photo figcaption span { display: block; margin-bottom: .4rem; color: var(--brand); font-size: .63rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-photo figcaption strong { display: block; max-width: 320px; font-size: 1.25rem; line-height: 1.22; }
.tracking-panel {
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 0;
    left: 5%;
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(440px, 1.3fr);
    gap: 2rem;
    align-items: center;
    padding: 1.55rem 1.8rem;
    color: #fff;
    background: var(--navy);
    border-left: 9px solid var(--brand);
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.tracking-panel-heading { display: flex; align-items: center; gap: 1rem; }
.tracking-panel-number { color: rgba(255,255,255,.2); font-size: 2.6rem; font-weight: 800; letter-spacing: -.08em; }
.tracking-panel .tracking-card-label { color: var(--brand); font-size: .6rem; letter-spacing: .14em; }
.tracking-panel h2 { margin: .18rem 0 0; font-size: 1.25rem; font-weight: 800; }
.tracking-panel .input-group { flex-wrap: nowrap; }
.tracking-panel .input-group-text { color: var(--navy); background: #fff; border-color: #fff; }
.tracking-panel .form-control { min-height: 58px; border-color: #fff; border-left: 0; }
.tracking-panel .btn { min-width: 145px; }

/* Route ticker */
.route-marquee { overflow: hidden; color: #111; background: var(--brand); border-bottom: 1px solid rgba(0,0,0,.14); }
.route-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 1.35rem;
    padding: .9rem 0;
    animation: routeTicker 32s linear infinite;
}
.route-marquee span { font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.route-marquee i { width: 21px; height: 2px; background: rgba(0,0,0,.35); transform: rotate(-30deg); }
.route-marquee:hover .route-marquee-track { animation-play-state: paused; }
@keyframes routeTicker { to { transform: translateX(-50%); } }

/* Quick links */
.home-shortcuts { background: #fff; border-bottom: 1px solid var(--line); }
.home-shortcuts .row > div:not(:last-child) { border-right: 1px solid var(--line); }
.home-shortcuts a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.1rem;
    align-items: center;
    min-height: 130px;
    padding: 1.6rem 1.8rem;
    transition: color .22s ease, background .22s ease;
}
.home-shortcuts a:hover { color: #fff; background: var(--navy); }
.home-shortcuts a > span { color: var(--brand-dark); font-size: .65rem; font-weight: 800; }
.home-shortcuts strong { display: block; font-size: .93rem; font-weight: 800; }
.home-shortcuts small { display: block; margin-top: .35rem; color: var(--muted); font-size: .66rem; line-height: 1.45; }
.home-shortcuts a:hover small { color: rgba(255,255,255,.68); }
.home-shortcuts a > i { font-size: 1.15rem; transition: transform .2s ease; }
.home-shortcuts a:hover > i { transform: translateX(5px); }

/* Editorial service grid */
.services-editorial { background: #fff; }
.section-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: end;
    margin-bottom: clamp(2.8rem, 5vw, 5rem);
}
.service-photo-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    grid-template-rows: repeat(2, minmax(330px, 1fr));
    gap: 1px;
    background: #fff;
}
.service-photo-card { position: relative; min-height: 330px; overflow: hidden; background: #111; }
.service-photo-card-tall { grid-row: 1 / 3; min-height: 660px; }
.service-photo-card > a { display: grid; width: 100%; height: 100%; grid-template-columns: 1.1fr .9fr; }
.service-photo-card-tall > a { grid-template-columns: 1fr; grid-template-rows: 1.35fr .65fr; }
.service-photo-media { min-height: 100%; overflow: hidden; background: #d9d8d2; }
.service-photo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.service-photo-card:hover .service-photo-media img { transform: scale(1.055); }
.service-photo-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: clamp(1.5rem, 3vw, 3rem);
    color: #161616;
    background: var(--brand);
}
.service-photo-copy-blue { color: #fff; background: var(--navy); }
.service-photo-copy-dark { color: #fff; background: #151515; }
.service-photo-copy span { font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; opacity: .72; }
.service-photo-copy h3 { max-width: 380px; margin: 2rem 0; font-size: clamp(1.45rem, 2.45vw, 2.7rem); font-weight: 800; letter-spacing: -.05em; line-height: 1.05; }
.service-photo-copy i { align-self: flex-end; font-size: 1.65rem; transition: transform .25s ease; }
.service-photo-card:hover .service-photo-copy i { transform: translate(5px,-5px); }

/* Operation */
.operation-section { background: #f2f1eb; }
.operation-layout { min-height: 720px; background: #fff; }
.operation-image { position: relative; min-height: 640px; overflow: hidden; }
.operation-image > img { width: 100%; height: 100%; object-fit: cover; }
.operation-image-label {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(84%, 430px);
    padding: 1.45rem 1.7rem;
    color: #fff;
    background: #151515;
}
.operation-image-label span { display: block; color: var(--brand); font-size: .6rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.operation-image-label strong { display: block; margin-top: .45rem; font-size: 1rem; line-height: 1.4; }
.operation-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 6vw, 6rem); }
.operation-content .section-title { font-size: clamp(2.3rem, 4.6vw, 4.7rem); }
.operation-steps { margin: 2.4rem 0 2rem; border-top: 1px solid var(--line); }
.operation-steps article { display: grid; grid-template-columns: 55px 1fr; gap: 1.2rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.operation-steps article > span { padding-top: .18rem; color: var(--navy); font-size: .65rem; font-weight: 800; }
.operation-steps h3 { margin: 0 0 .35rem; font-size: .94rem; font-weight: 800; }
.operation-steps p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.65; }

/* Coverage */
.coverage-editorial { color: #fff; background: var(--navy); }
.coverage-editorial .section-title { max-width: 780px; color: #fff; }
.coverage-editorial p { max-width: 620px; margin: 1.6rem 0 2rem; color: rgba(255,255,255,.7); line-height: 1.75; }
.section-kicker-light { color: #fff; }
.coverage-city-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
.coverage-city-list span { display: flex; gap: 1rem; align-items: center; min-height: 76px; border-bottom: 1px solid rgba(255,255,255,.22); font-size: .88rem; font-weight: 700; }
.coverage-city-list span:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.22); }
.coverage-city-list b { color: var(--brand); font-size: .58rem; letter-spacing: .1em; }

/* Business CTA â€” banda integrada, sin caja flotando en un vacÃ­o blanco */
.business-cta {
    position: relative;
    padding: clamp(4.2rem, 6.5vw, 7rem) 0;
    color: #fff;
    background: #151515;
    border-top: 8px solid var(--brand);
}
.business-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(28vw, 420px);
    height: 8px;
    background: var(--navy);
}
.business-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(2.5rem, 7vw, 7rem);
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
}
.business-cta-inner > div { max-width: 860px; }
.business-cta-inner span {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--brand);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.business-cta-inner span::before {
    content: "";
    width: 28px;
    height: 3px;
    background: currentColor;
}
.business-cta-inner h2 {
    max-width: 780px;
    margin: .8rem 0 .8rem;
    font-size: clamp(2.55rem, 4.7vw, 5.1rem);
    font-weight: 800;
    letter-spacing: -.065em;
    line-height: .94;
}
.business-cta-inner p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: clamp(.92rem, 1.2vw, 1.05rem);
    line-height: 1.7;
}
.business-cta-inner .btn {
    flex: 0 0 auto;
    min-height: 56px;
    padding-inline: 1.65rem;
    white-space: nowrap;
}

/* Internal components: less rounded, less floating, more editorial */
.content-card,
.tracking-card,
.tracking-summary-card,
.tracking-timeline-card,
.help-card,
.quote-form-card,
.quote-result-card,
.quote-placeholder-card,
.agency-search-panel,
.agency-card,
.support-hours-card,
.faq-accordion .accordion-item,
.faq-no-results,
.legal-intro-card,
.restriction-card,
.legal-document,
.claim-help-card,
.claim-success-card,
.info-banner,
.pickup-alert,
.status-banner,
.service-detail-card,
.contact-card,
.contact-form-card {
    border-radius: 5px !important;
    box-shadow: none !important;
}
.content-card,
.tracking-summary-card,
.tracking-timeline-card,
.help-card,
.quote-form-card,
.quote-result-card,
.quote-placeholder-card,
.agency-card,
.legal-document,
.claim-success-card { border: 1px solid var(--line); }
.agency-card { border-top: 5px solid var(--navy); transition: transform .2s ease, border-color .2s ease; }
.agency-card:hover { border-top-color: var(--brand); transform: translateY(-3px); }
.agency-icon,
.support-hours-card,
.restriction-card > span,
.claims-form-card legend span,
.quick-action-icon,
.service-icon,
.contact-icon { border-radius: 3px !important; }
.agency-services span,
.badge,
.status-pill { border-radius: 2px !important; }
.service-detail-visual,
.quote-visual,
.tracking-visual { border-radius: 4px !important; background: var(--navy) !important; }
.service-detail-card:nth-child(even) .service-detail-visual { background: #151515 !important; }
.faq-accordion .accordion-button:not(.collapsed) { color: #111; background: #fff2d5; }
.help-sidebar { border-radius: 4px; }
.help-sidebar a { border-radius: 2px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.74); background: #111; border-top: 10px solid var(--brand); }
.site-footer .brand-mark strong { color: #fff; }
.site-footer .brand-mark small { color: rgba(255,255,255,.52); }
.site-footer .brand-symbol::before,
.site-footer .brand-symbol-dot { background: #fff; }
.footer-title { color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-copy,
.footer-links,
.footer-contact { font-size: .7rem; line-height: 1.75; }
.footer-links a,
.footer-contact a { transition: color .2s ease; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--brand); }
.social-button {
    border-radius: 2px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}
.social-button:hover { color: #111; background: var(--brand); border-color: var(--brand); }
.footer-bottom { color: rgba(255,255,255,.5); background: #090909; border-top: 1px solid rgba(255,255,255,.1); }
.floating-action { border-width: 2px; border-radius: 3px; }

/* Motion */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .78s cubic-bezier(.22,.75,.25,1), transform .78s cubic-bezier(.22,.75,.25,1);
    transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1199.98px) {
    .main-navbar .navbar-collapse { margin-top: .8rem; padding: 1rem; border-top: 1px solid var(--line); }
    .navbar-nav .nav-link::after { display: none; }
    .tracking-panel { right: 2%; left: 2%; }
    .hero-photo-column,
    .hero-photo { min-height: 600px; }
}

@media (max-width: 991.98px) {
    .topbar { display: none !important; }
    .main-navbar { min-height: 76px; }
    .home-hero .row { display: flex; flex-direction: column; }
    .hero-copy-column,
    .hero-photo-column { width: 100%; }
    .hero-copy { padding: 4rem 0 3rem; }
    .home-hero h1 { font-size: clamp(3.3rem, 12vw, 6.6rem); }
    .hero-photo-column,
    .hero-photo { min-height: 520px; }
    .hero-shell { padding-bottom: 0; }
    .tracking-panel {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-template-columns: 1fr;
        margin: -1px 0 0;
    }
    .section-heading-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .section-title { font-size: clamp(2.65rem, 9vw, 5rem); }
    .service-photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .service-photo-card,
    .service-photo-card-tall { grid-row: auto; min-height: 520px; }
    .service-photo-card > a,
    .service-photo-card-tall > a { grid-template-columns: 1.05fr .95fr; grid-template-rows: 1fr; }
    .operation-layout { min-height: 0; }
    .operation-image { min-height: 540px; }
    .business-cta-inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    body { font-size: 14px; }
    .section-space { padding: 4.4rem 0; }
    .home-hero h1 { font-size: clamp(3.15rem, 17vw, 5.4rem); line-height: .91; }
    .hero-copy { padding-top: 3rem; }
    .hero-photo-column,
    .hero-photo { min-height: 420px; }
    .hero-photo figcaption { right: 1.2rem; bottom: 1.2rem; left: 1.2rem; }
    .tracking-panel { gap: 1rem; padding: 1.25rem; border-left-width: 6px; }
    .tracking-panel .input-group { display: grid; grid-template-columns: 48px 1fr; }
    .tracking-panel .input-group-text { border-radius: 3px 0 0 3px; }
    .tracking-panel .form-control { border-radius: 0 3px 3px 0 !important; }
    .tracking-panel .btn { grid-column: 1 / -1; width: 100%; margin-top: .7rem !important; border-radius: 3px !important; }
    .home-shortcuts .row > div:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
    .home-shortcuts a { min-height: 105px; padding: 1.25rem .4rem; }
    .service-photo-card,
    .service-photo-card-tall { min-height: 620px; }
    .service-photo-card > a,
    .service-photo-card-tall > a { grid-template-columns: 1fr; grid-template-rows: 1.35fr .65fr; }
    .operation-image { min-height: 430px; }
    .operation-content { padding: 2.2rem 1.25rem; }
    .coverage-city-list { grid-template-columns: 1fr; }
    .coverage-city-list span:nth-child(odd) { border-right: 0; }
    .business-cta {
        padding: 3.8rem 0 4.2rem;
        border-top-width: 6px;
    }
    .business-cta::before { height: 6px; }
    .business-cta-inner { padding: 0; }
    .business-cta-inner h2 {
        max-width: 620px;
        font-size: clamp(2.55rem, 12vw, 4.4rem);
    }
    .business-cta-inner .btn { width: 100%; }
    .brand-mark small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
    .hero-photo img { transform: none !important; }
}

/* ========================================================================
   COTIZADOR POR TIPO DE CAJA
   ======================================================================== */
.quote-builder-page .quote-page-hero { background: var(--navy); }
.quote-page-hero .container-xl { padding-top: 1rem; padding-bottom: 1rem; }
.quote-hero-note {
    padding: 1.2rem 1.4rem;
    color: #111;
    background: var(--brand);
    border-left: 5px solid #111;
}
.quote-hero-note span { display: block; margin-bottom: .35rem; font-size: .58rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.quote-hero-note strong { display: block; font-size: .88rem; line-height: 1.5; }
.quote-workspace { background: #f2f1eb; }
.quote-stepbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1.4rem;
    background: #fff;
    border: 1px solid var(--line);
}
.quote-stepbar > div { display: flex; align-items: center; gap: .75rem; min-height: 62px; padding: 0 1.2rem; color: #8a8a84; border-right: 1px solid var(--line); }
.quote-stepbar > div:last-child { border-right: 0; }
.quote-stepbar span { font-size: .58rem; font-weight: 900; letter-spacing: .08em; }
.quote-stepbar strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.quote-stepbar .is-active { color: #111; background: #fff8e7; }
.quote-stepbar .is-active span { color: var(--navy); }

.quote-builder-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 8px solid var(--brand);
}
.quote-builder-heading { display: flex; justify-content: space-between; gap: 2rem; align-items: flex-start; padding: clamp(1.5rem, 3vw, 2.6rem); border-bottom: 1px solid var(--line); }
.quote-builder-heading h2 { max-width: 680px; margin: .45rem 0 0; font-size: clamp(1.65rem, 3vw, 2.7rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.05; }
.quote-builder-counter { color: var(--navy); font-size: .67rem; font-weight: 900; letter-spacing: .12em; white-space: nowrap; }
.quote-alert { margin: 1.5rem clamp(1.25rem, 3vw, 2.6rem) 0; border-radius: 3px; font-size: .76rem; }
.quote-builder-form { padding: 0 clamp(1.25rem, 3vw, 2.6rem) clamp(1.25rem, 3vw, 2.6rem); }
.quote-fieldset { padding: clamp(1.6rem, 3vw, 2.5rem) 0; margin: 0; border: 0; border-bottom: 1px solid var(--line); }
.quote-fieldset legend { display: flex; align-items: center; gap: .8rem; width: 100%; margin-bottom: 1.25rem; color: #111; font-size: .9rem; font-weight: 800; letter-spacing: -.01em; }
.quote-fieldset legend span { display: grid; place-items: center; width: 31px; height: 31px; color: #fff; background: var(--navy); font-size: .6rem; font-weight: 900; }
.fieldset-copy { margin: -.55rem 0 1.25rem 3.9rem; color: var(--muted); font-size: .7rem; line-height: 1.65; }
.quote-builder-form .form-label { margin-bottom: .45rem; color: #333; font-size: .67rem; letter-spacing: .03em; text-transform: uppercase; }
.quote-builder-form .form-control,
.quote-builder-form .form-select { min-height: 52px; border-color: #cfcfc9; border-radius: 3px; font-size: .79rem; font-weight: 650; box-shadow: none; }
.quote-builder-form .form-control:focus,
.quote-builder-form .form-select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(48,50,217,.10); }

.service-selector-compact { gap: 0; border: 1px solid var(--line); }
.service-selector-compact label { margin: 0; }
.service-selector-compact span { min-height: 72px; justify-content: center; padding: .85rem 1rem; border: 0; border-right: 1px solid var(--line); border-radius: 0; }
.service-selector-compact label:last-child span { border-right: 0; }
.service-selector-compact strong { margin: 0; color: #161616; font-size: .75rem; }
.service-selector-compact small { margin-top: .2rem; font-size: .58rem; }
.service-selector-compact input:checked + span { color: #fff; background: var(--navy); border-color: transparent; box-shadow: none; }
.service-selector-compact input:checked + span strong,
.service-selector-compact input:checked + span small { color: #fff; }

.package-selector { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .7rem; }
.package-option { position: relative; cursor: pointer; }
.package-option input { position: absolute; opacity: 0; pointer-events: none; }
.package-option-body {
    display: flex;
    flex-direction: column;
    min-height: 174px;
    padding: 1.05rem;
    color: #303030;
    background: #f8f8f5;
    border: 1px solid #d7d7d1;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.package-option:hover .package-option-body { transform: translateY(-3px); border-color: #9f9f98; }
.package-option input:focus-visible + .package-option-body { outline: 3px solid rgba(48,50,217,.22); outline-offset: 2px; }
.package-option input:checked + .package-option-body { color: #fff; background: var(--navy); border-color: var(--navy); transform: translateY(-3px); }
.package-option-body strong { display: block; margin-top: auto; font-size: .82rem; font-weight: 800; }
.package-option-body small { display: block; margin-top: .28rem; color: #565650; font-size: .61rem; font-weight: 700; line-height: 1.35; }
.package-option-body em { display: block; margin-top: .33rem; color: #8a8a82; font-size: .54rem; font-style: normal; line-height: 1.35; }
.package-option input:checked + .package-option-body small,
.package-option input:checked + .package-option-body em { color: rgba(255,255,255,.7); }
.package-shape { position: relative; display: block; width: 56px; height: 37px; margin: 5px 0 25px 7px; color: var(--navy); border: 2px solid currentColor; }
.package-shape::before { content: ""; position: absolute; top: -9px; left: 7px; width: calc(100% - 2px); height: 9px; border: 2px solid currentColor; border-bottom: 0; transform: skewX(-48deg); transform-origin: left bottom; }
.package-shape::after { content: ""; position: absolute; top: -5px; right: -9px; width: 9px; height: calc(100% + 1px); border: 2px solid currentColor; border-left: 0; transform: skewY(-42deg); transform-origin: left top; }
.package-shape i { position: absolute; top: 0; left: 50%; height: 100%; border-left: 1px solid currentColor; opacity: .6; }
.package-option input:checked + .package-option-body .package-shape { color: var(--brand); }
.package-option-sobre .package-shape { width: 58px; height: 34px; margin-top: 8px; }
.package-option-sobre .package-shape::before,
.package-option-sobre .package-shape::after { display: none; }
.package-option-sobre .package-shape i { top: 2px; left: 5px; width: 44px; height: 21px; border: 0; border-bottom: 1px solid currentColor; transform: rotate(28deg); }
.package-option-xxs .package-shape { width: 42px; height: 28px; margin-top: 11px; }
.package-option-xs .package-shape { width: 48px; height: 31px; margin-top: 9px; }
.package-option-m .package-shape { width: 61px; height: 42px; margin-top: 1px; }
.package-option-l .package-shape { width: 68px; height: 47px; margin-top: -2px; }
.package-option-personalizado .package-shape { width: 62px; height: 40px; border-style: dashed; }
.package-option-personalizado .package-shape::before,
.package-option-personalizado .package-shape::after { border-style: dashed; }

.input-unit-control { display: flex; align-items: stretch; min-width: 0; border: 1px solid #cfcfc9; background: #fff; }
.input-unit-control:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(48,50,217,.10); }
.input-unit-control .form-control { min-width: 0; border: 0; box-shadow: none !important; }
.input-unit-control > span,
.input-unit-control > b { display: grid; place-items: center; min-width: 49px; padding: 0 .6rem; color: #65655f; background: #efefe9; border-left: 1px solid #d7d7d1; font-size: .61rem; font-weight: 800; }
.package-weight-warning { padding: .8rem 1rem; color: #805000; background: #fff4d6; border-left: 4px solid var(--brand); font-size: .64rem; line-height: 1.55; }
.dimension-grid { display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr; align-items: end; gap: .55rem; }
.dimension-grid > label > span { display: block; margin-bottom: .45rem; color: #333; font-size: .67rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.dimension-sign { padding-bottom: 17px; color: #8a8a84; text-align: center; font-size: 1rem; font-weight: 800; }
.measurement-summary { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 1.25rem; border: 1px solid var(--line); background: #f7f7f3; }
.measurement-summary > div { min-height: 74px; padding: .85rem 1rem; border-right: 1px solid var(--line); }
.measurement-summary > div:last-child { border-right: 0; }
.measurement-summary span { display: block; color: #77776f; font-size: .55rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.measurement-summary strong { display: block; margin-top: .35rem; color: #171717; font-size: .76rem; }
.quote-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.3rem 1.4rem; margin-top: 1.5rem; color: #fff; background: #151515; border-left: 7px solid var(--brand); }
.quote-submit-row small { display: block; color: rgba(255,255,255,.55); font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; }
.quote-submit-row strong { display: block; margin-top: .2rem; color: var(--brand); font-size: 1.4rem; font-weight: 850; letter-spacing: -.04em; }
.quote-submit-row .btn { flex: 0 0 auto; }

.quote-method-card { position: sticky; top: 108px; padding: 2rem; color: #fff; background: #151515; border-top: 8px solid var(--navy); }
.quote-method-index { display: block; margin-bottom: 3.5rem; color: var(--brand); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.quote-method-card .section-kicker { color: var(--brand); }
.quote-method-card h2 { margin: .65rem 0 1.8rem; font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.quote-method-comparison { display: grid; gap: .65rem; }
.quote-method-comparison article { display: grid; grid-template-columns: 35px 1fr; gap: .8rem; align-items: center; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.quote-method-comparison article > span { color: var(--brand); font-size: .62rem; font-weight: 900; }
.quote-method-comparison strong { display: block; font-size: .76rem; }
.quote-method-comparison small { display: block; margin-top: .2rem; color: rgba(255,255,255,.55); font-size: .57rem; line-height: 1.5; }
.quote-method-comparison > i { color: rgba(255,255,255,.35); font-size: .58rem; font-style: normal; font-weight: 800; text-transform: uppercase; }
.quote-method-minimum { padding: 1.1rem; margin-top: 1.4rem; color: #111; background: var(--brand); }
.quote-method-minimum span { display: block; font-size: .53rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.quote-method-minimum strong { display: block; margin-top: .3rem; font-size: .7rem; line-height: 1.5; }
.quote-method-note { margin: 1.35rem 0 0; color: rgba(255,255,255,.5); font-size: .6rem; line-height: 1.7; }

.quote-result-detailed { background: var(--navy); border: 0 !important; border-top: 8px solid var(--brand) !important; border-radius: 0 !important; }
.quote-result-package { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; align-items: center; padding: 1.25rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.package-result-shape { position: relative; width: 54px; height: 36px; color: var(--brand); border: 2px solid currentColor; }
.package-result-shape::before { content: ""; position: absolute; top: -8px; left: 7px; width: calc(100% - 2px); height: 8px; border: 2px solid currentColor; border-bottom: 0; transform: skewX(-48deg); transform-origin: left bottom; }
.package-result-shape::after { content: ""; position: absolute; top: -4px; right: -8px; width: 8px; height: calc(100% + 1px); border: 2px solid currentColor; border-left: 0; transform: skewY(-42deg); transform-origin: left top; }
.quote-result-package small,
.quote-result-package span { display: block; color: rgba(255,255,255,.55); font-size: .57rem; }
.quote-result-package strong { display: block; margin: .18rem 0; font-size: .88rem; }
.quote-route-compact { padding-top: 1rem; padding-bottom: 1rem; }
.quote-price-large { background: #151515; }
.quote-price-large strong { font-size: 3rem; }
.quote-criteria { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.12); }
.quote-criteria article { position: relative; padding: 1rem 1.2rem; border-right: 1px solid rgba(255,255,255,.12); }
.quote-criteria article:last-child { border-right: 0; }
.quote-criteria article.is-winner { background: rgba(255,157,0,.12); }
.quote-criteria article.is-winner::before { content: "APLICADO"; position: absolute; top: .65rem; right: .7rem; color: var(--brand); font-size: .43rem; font-weight: 900; letter-spacing: .08em; }
.quote-criteria span { display: block; color: rgba(255,255,255,.55); font-size: .52rem; text-transform: uppercase; }
.quote-criteria strong { display: block; margin: .35rem 0; color: #fff; font-size: .9rem; }
.quote-criteria small { display: block; color: rgba(255,255,255,.45); font-size: .5rem; line-height: 1.5; }
.quote-breakdown-detailed > div.is-highlighted { background: rgba(255,157,0,.1); margin: 0 -.5rem; padding-right: .5rem; padding-left: .5rem; }
.quote-result-warning { margin: 0 1.4rem 1rem; padding: .85rem 1rem; color: #111; background: #ffd66a; font-size: .58rem; line-height: 1.55; }

@media (max-width: 1199.98px) {
    .quote-method-card,
    .quote-result-card { position: static; }
    .package-selector { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    .package-selector { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .quote-builder-page .quote-page-hero { padding-bottom: 3rem; }
}

@media (max-width: 767.98px) {
    .quote-stepbar > div { min-height: 54px; padding: 0 .75rem; }
    .quote-stepbar strong { font-size: .6rem; }
    .quote-builder-heading { gap: 1rem; }
    .quote-builder-counter { display: none; }
    .service-selector-compact { grid-template-columns: 1fr; }
    .service-selector-compact span { min-height: 62px; border-right: 0; border-bottom: 1px solid var(--line); }
    .service-selector-compact label:last-child span { border-bottom: 0; }
    .package-selector { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dimension-grid { grid-template-columns: 1fr; gap: .8rem; }
    .dimension-sign { display: none; }
    .measurement-summary { grid-template-columns: 1fr; }
    .measurement-summary > div { min-height: 62px; border-right: 0; border-bottom: 1px solid var(--line); }
    .measurement-summary > div:last-child { border-bottom: 0; }
    .quote-submit-row { align-items: stretch; flex-direction: column; }
    .quote-submit-row .btn { width: 100%; }
}

@media (max-width: 479.98px) {
    .quote-stepbar { grid-template-columns: 1fr; }
    .quote-stepbar > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .quote-stepbar > div:last-child { border-bottom: 0; }
    .package-selector { grid-template-columns: 1fr; }
    .package-option-body { min-height: 142px; }
    .quote-criteria { grid-template-columns: 1fr; }
    .quote-criteria article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .quote-criteria article:last-child { border-bottom: 0; }
}

/* Fallback visual para navegadores que no interpretan variables de botones de Bootstrap. */
.btn-brand {
    color: #121212;
    background-color: var(--brand);
    border-color: var(--brand);
}
.btn-brand:hover,
.btn-brand:focus {
    color: #121212;
    background-color: #ffb326;
    border-color: #ffb326;
}

/* ========================================================================
   HOME HERO V2 â€” composiciÃ³n unificada y mÃ¡s natural
   ======================================================================== */
.home-hero-v2 {
    position: relative;
    overflow: hidden;
    background: #f4f2ec;
}
.home-hero-v2::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 19vw;
    height: 8px;
    background: var(--brand);
}
.hero-shell-v2 {
    position: relative;
    z-index: 1;
    padding-top: clamp(2.75rem, 5vw, 5.5rem);
    padding-bottom: clamp(2.4rem, 4vw, 4rem);
}
.hero-main-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .78fr);
    gap: clamp(2.4rem, 6vw, 6.5rem);
    align-items: center;
}
.hero-copy-v2 {
    padding: clamp(2rem, 4vw, 4.5rem) 0;
}
.home-hero-v2 .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.55rem;
    color: var(--navy);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.home-hero-v2 .eyebrow::before {
    content: "";
    width: 30px;
    height: 3px;
    background: var(--brand);
}
.home-hero-v2 h1 {
    max-width: 870px;
    margin: 0;
    color: #111;
    font-size: clamp(3.55rem, 6.35vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -.073em;
    line-height: .91;
}
.home-hero-v2 h1 span {
    display: block;
    color: var(--navy);
}
.home-hero-v2 .hero-lead {
    max-width: 680px;
    margin: 1.9rem 0 0;
    color: #505050;
    font-size: clamp(.98rem, 1.35vw, 1.13rem);
    line-height: 1.75;
}
.home-hero-v2 .hero-actions {
    margin-top: 2.15rem;
}
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.65rem;
    margin-top: 2rem;
    color: #4e4e4e;
    font-size: .74rem;
    font-weight: 600;
}
.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.hero-trust-row i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: #111;
    background: var(--brand);
    border-radius: 50%;
    font-size: .72rem;
}
.hero-media-v2 {
    position: relative;
    min-height: clamp(500px, 55vw, 690px);
    margin: 0;
    overflow: hidden;
    background: #222;
}
.hero-media-v2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.03) 40%, rgba(0,0,0,.72) 100%);
    pointer-events: none;
}
.hero-media-v2 img {
    position: absolute;
    top: -28px;
    right: 0;
    bottom: -28px;
    left: 0;
    width: 100%;
    height: calc(100% + 56px);
    object-fit: cover;
    object-position: center center;
    transform: translateY(var(--photo-shift, 0px)) scale(1.025);
    transition: transform .1s linear;
}
.hero-media-v2 figcaption {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
}
.hero-media-v2 figcaption span {
    display: block;
    margin-bottom: .45rem;
    color: var(--brand);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero-media-v2 figcaption strong {
    display: block;
    max-width: 310px;
    font-size: 1.26rem;
    line-height: 1.25;
}
.hero-media-accent {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    width: 82px;
    height: 82px;
    border-top: 9px solid var(--brand);
    border-right: 9px solid var(--brand);
}
.hero-command-v2 {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(220px, .62fr) minmax(220px, .62fr);
    margin-top: clamp(2rem, 4vw, 3.25rem);
    overflow: hidden;
    border: 1px solid rgba(17,17,17,.12);
    background: #fff;
    box-shadow: 0 18px 48px rgba(18,18,18,.08);
}
.hero-command-track {
    display: grid;
    grid-template-columns: minmax(220px, .72fr) minmax(340px, 1.28fr);
    gap: 1.4rem;
    align-items: center;
    padding: 1.65rem 1.75rem;
    color: #fff;
    background: var(--navy);
}
.hero-command-heading {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}
.hero-command-number {
    flex: 0 0 auto;
    padding-top: .1rem;
    color: var(--brand-dark);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
}
.hero-command-track .hero-command-number {
    color: var(--brand);
}
.hero-command-track .tracking-card-label {
    display: block;
    color: var(--brand);
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero-command-track h2 {
    margin: .25rem 0 0;
    font-size: 1.16rem;
    font-weight: 800;
}
.hero-command-track p {
    margin: .38rem 0 0;
    color: rgba(255,255,255,.62);
    font-size: .67rem;
    line-height: 1.45;
}
.tracking-form-v2 {
    min-width: 0;
}
.tracking-field-v2 {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-width: 0;
    background: #fff;
}
.tracking-field-v2 > i {
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 1.05rem;
}
.tracking-field-v2 input {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: .8rem .75rem;
    color: #151515;
    background: #fff;
    border: 0;
    outline: 0;
    font-size: .82rem;
    font-weight: 600;
}
.tracking-field-v2 input::placeholder {
    color: #747474;
    opacity: 1;
}
.tracking-field-v2 .btn {
    min-width: 136px;
    border-radius: 0;
}
.hero-command-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .9rem;
    align-items: center;
    min-height: 132px;
    padding: 1.55rem 1.35rem;
    color: #111;
    background: #fff;
    border-left: 1px solid rgba(17,17,17,.12);
    transition: color .22s ease, background .22s ease;
}
.hero-command-link small {
    display: block;
    margin-bottom: .42rem;
    color: #777;
    font-size: .62rem;
    font-weight: 600;
    line-height: 1.3;
}
.hero-command-link strong {
    display: block;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.42;
}
.hero-command-link > i {
    font-size: 1.05rem;
    transition: transform .22s ease;
}
.hero-command-link:hover {
    color: #fff;
    background: #111;
}
.hero-command-link:hover small {
    color: rgba(255,255,255,.58);
}
.hero-command-link:hover > i {
    transform: translate(3px,-3px);
}
.hero-coverage-v2 {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.1rem 0 0;
    color: #5c5c5c;
    border-top: 1px solid rgba(17,17,17,.1);
    margin-top: 1.2rem;
}
.hero-coverage-v2 > span {
    flex: 0 0 auto;
    color: #111;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.hero-coverage-v2 > div {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .8rem;
    align-items: center;
}
.hero-coverage-v2 b {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .03em;
}
.hero-coverage-v2 i {
    width: 14px;
    height: 1px;
    background: rgba(17,17,17,.28);
    transform: rotate(-28deg);
}

@media (max-width: 1199.98px) {
    .hero-main-v2 {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
        gap: 3rem;
    }
    .hero-command-v2 {
        grid-template-columns: 1fr 1fr;
    }
    .hero-command-track {
        grid-column: 1 / -1;
    }
    .hero-command-link:nth-of-type(2) {
        border-left: 0;
    }
}

@media (max-width: 991.98px) {
    .hero-main-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-copy-v2 {
        padding: 2.5rem 0 1.25rem;
    }
    .home-hero-v2 h1 {
        max-width: 760px;
        font-size: clamp(3.55rem, 11vw, 6.4rem);
    }
    .hero-media-v2 {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
    .hero-command-track {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-shell-v2 {
        padding-top: 1.3rem;
        padding-bottom: 2.5rem;
    }
    .home-hero-v2 h1 {
        font-size: clamp(3.15rem, 16vw, 5.25rem);
        line-height: .92;
    }
    .home-hero-v2 .hero-lead {
        margin-top: 1.35rem;
    }
    .hero-trust-row {
        flex-direction: column;
        gap: .7rem;
    }
    .hero-media-v2 {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
    .hero-media-v2 img {
        top: -18px;
        bottom: -18px;
        height: calc(100% + 36px);
        object-position: 52% center;
    }
    .hero-media-v2 figcaption {
        right: 1.25rem;
        bottom: 1.25rem;
        left: 1.25rem;
    }
    .hero-command-v2 {
        grid-template-columns: 1fr;
        margin-top: 1.25rem;
    }
    .hero-command-track {
        padding: 1.35rem;
    }
    .tracking-field-v2 {
        grid-template-columns: 44px minmax(0,1fr);
    }
    .tracking-field-v2 .btn {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 52px;
    }
    .hero-command-link,
    .hero-command-link:nth-of-type(2) {
        min-height: 112px;
        border-top: 1px solid rgba(17,17,17,.12);
        border-left: 0;
    }
    .hero-coverage-v2 {
        align-items: flex-start;
        flex-direction: column;
        gap: .8rem;
    }
}

/* Ajustes de identidad y contenido para Ãvila */
.site-logo-link { display: inline-flex; align-items: center; }
.site-logo { display: block; width: 210px; height: auto; }
.footer-logo-link { padding: .55rem .75rem; margin-bottom: 1rem; border-radius: 10px; }
.footer-company-data { color: rgba(255,255,255,.62); font-size: .68rem; line-height: 1.7; }
.footer-company-data strong { color: #fff; }
.footer-contact small { color: rgba(255,255,255,.5); }
.agency-reference { display: flex; gap: .5rem; margin: -.15rem 0 .75rem; color: #56677c; font-size: .69rem; line-height: 1.55; }
.agency-reference i { flex: 0 0 auto; margin-top: .12rem; color: var(--brand-dark); }
.agency-phone-block dd { display: flex; flex-wrap: wrap; gap: .28rem .65rem; }
.agency-phone-block a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(11,35,65,.2); text-underline-offset: 2px; }
.help-entry-card > i { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 1.2rem; color: var(--navy); background: #fff2d5; border-radius: 14px; font-size: 1.35rem; }
.help-entry-card h2 { margin: .45rem 0 .7rem; color: var(--navy); font-size: 1.15rem; font-weight: 800; }
.help-entry-card p { color: var(--muted); font-size: .75rem; line-height: 1.7; }
.legal-document.mw-100 { max-width: 100% !important; }

@media (max-width: 1199.98px) {
    .navbar-collapse { padding: 1rem 0 1.4rem; }
    .navbar-nav .dropdown-menu { margin-top: .35rem; }
}

@media (max-width: 575.98px) {
    .site-logo { width: 178px; }
    .agency-actions { flex-direction: column; }
}

/* ========================================================================== 
   Identidad Ãvila 2026 â€” aplicada desde los esquemas entregados por el cliente
   ========================================================================== */
:root {
    --brand: #ff8c00;
    --brand-dark: #e87500;
    --navy: #d62828;
    --navy-deep: #b71c1c;
    --blue: #d62828;
    --text: #111111;
    --muted: #626262;
    --line: #ececec;
    --soft: #f7f7f7;
    --white: #ffffff;
    --shadow-sm: 0 14px 38px rgba(70, 15, 15, 0.08);
    --shadow-lg: 0 28px 80px rgba(87, 13, 13, 0.16);
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--text);
}

h1, h2, h3, h4, h5, h6,
.navbar-nav .nav-link,
.btn,
.footer-title,
.section-title {
    font-family: "Montserrat", Arial, sans-serif;
}

.brand-header .topbar {
    background: #ffffff;
    color: #666666;
    border-bottom: 1px solid #ececec;
}

.brand-header .topbar a { color: inherit; }
.brand-header .topbar a:hover { color: #b71c1c; }
.brand-header .main-navbar {
    min-height: 84px;
    background: #ffffff;
    border-bottom: 1px solid #efefef;
    box-shadow: 0 10px 28px rgba(25, 25, 25, .06);
}

.brand-header .main-navbar.is-scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
}

.brand-header .navbar-nav .nav-link {
    position: relative;
    color: #1f1f1f;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: -.015em;
    padding: .9rem .62rem !important;
}

.brand-header .navbar-nav .nav-link::after {
    border-top-color: currentColor;
}

.brand-header .navbar-nav .nav-link:hover,
.brand-header .navbar-nav .nav-link.active {
    color: #b71c1c;
}

.brand-header .navbar-nav .nav-link.active::before {
    content: "";
    position: absolute;
    left: .62rem;
    right: .62rem;
    bottom: .5rem;
    height: 3px;
    border-radius: 999px;
    background: #ffb000;
}

.brand-header .dropdown-menu {
    border: 1px solid #ececec;
    border-radius: 15px;
    padding: .65rem;
    margin-top: .7rem;
    background: #ffffff;
}

.brand-header .dropdown-item {
    border-radius: 10px;
    padding: .68rem .8rem;
    font-size: .84rem;
    color: #333333;
}

.brand-header .dropdown-item:hover,
.brand-header .dropdown-item:focus {
    color: #b71c1c;
    background: #fff4ec;
}

.site-logo-light { width: 230px; }

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: #d62828;
    --bs-btn-border-color: #d62828;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b71c1c;
    --bs-btn-hover-border-color: #b71c1c;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #9e1616;
    --bs-btn-active-border-color: #9e1616;
    box-shadow: 0 12px 28px rgba(214,40,40,.18);
}

.btn-dark-blue {
    background: #b71c1c;
    border-color: #b71c1c;
}

.page-hero,
.hero-section {
    background: radial-gradient(circle at 86% 15%, rgba(255,174,0,.22), transparent 28%), linear-gradient(118deg, #8f1010 0%, #b71c1c 52%, #d62828 100%);
}

/* Home */
.avila-home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.8rem, 8vw, 8rem) 0 clamp(3.4rem, 6vw, 6rem);
    background:
        radial-gradient(circle at 78% 35%, rgba(255,140,0,.12), transparent 27%),
        linear-gradient(180deg, #fff 0%, #fff 72%, #fff9f5 100%);
}

.avila-home-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -130px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    border: 1px solid rgba(214,40,40,.08);
    box-shadow: inset 0 0 0 80px rgba(214,40,40,.018), inset 0 0 0 160px rgba(255,140,0,.018);
}

.avila-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5.5rem);
}

.avila-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.35rem;
    color: #b71c1c;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.avila-eyebrow i { color: #ff8c00; font-size: 1rem; }

.avila-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #111;
    font-size: clamp(3rem, 5.4vw, 5.4rem);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .98;
}

.avila-hero-copy h1 span { color: #d62828; }

.avila-hero-copy > p {
    max-width: 660px;
    margin: 1.7rem 0 0;
    color: #555;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.78;
}

.avila-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.btn-avila-red,
.btn-avila-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 54px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .015em;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn-avila-red { background: linear-gradient(135deg, #b71c1c, #df0d0d); box-shadow: 0 16px 32px rgba(183,28,28,.20); }
.btn-avila-orange { background: linear-gradient(135deg, #ff7800, #ff9c00); box-shadow: 0 16px 32px rgba(255,140,0,.22); }
.btn-avila-red:hover, .btn-avila-orange:hover { color: #fff; transform: translateY(-2px); }
.btn-avila-red:hover { background: #a91414; }
.btn-avila-orange:hover { background: #eb7900; }

.avila-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    margin-top: 1.65rem;
    color: #5e5e5e;
    font-size: .82rem;
    font-weight: 600;
}

.avila-hero-trust span { display: inline-flex; align-items: center; gap: .38rem; }
.avila-hero-trust i { color: #d62828; }

.avila-hero-visual {
    position: relative;
    min-height: 510px;
    display: grid;
    place-items: center;
}

.avila-map-pattern {
    position: absolute;
    inset: 6% 2% 9% 5%;
    border-radius: 50% 42% 48% 40%;
    background:
        radial-gradient(circle, rgba(214,40,40,.20) 1.5px, transparent 1.8px) 0 0 / 15px 15px,
        linear-gradient(140deg, rgba(255,140,0,.10), rgba(214,40,40,.025));
    mask-image: radial-gradient(ellipse at center, #000 32%, transparent 72%);
    transform: rotate(-4deg);
}

.avila-truck {
    position: relative;
    z-index: 2;
    width: min(100%, 780px);
    filter: drop-shadow(0 24px 32px rgba(70,20,20,.10));
}

.avila-route-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .62rem .82rem;
    color: #b71c1c;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(214,40,40,.13);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(63,14,14,.10);
    font-size: .75rem;
    font-weight: 800;
}

.avila-route-chip i { color: #ff8c00; }
.avila-route-chip-one { top: 16%; left: 4%; }
.avila-route-chip-two { top: 8%; right: 7%; }
.avila-route-chip-three { bottom: 14%; right: 2%; }

.avila-quick-panel {
    position: relative;
    z-index: 4;
    margin-top: -1.8rem;
}

.avila-quick-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    background: #fff;
    border: 1px solid #ece3df;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(81,20,20,.12);
    overflow: hidden;
}

.avila-track-box,
.avila-rate-box {
    min-height: 175px;
    padding: 2rem;
}

.avila-track-box {
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr);
    align-items: center;
    gap: 2rem;
}

.avila-quick-heading,
.avila-rate-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avila-icon-circle {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    color: #fff;
    background: #d62828;
    border-radius: 16px;
    font-size: 1.45rem;
}

.avila-quick-heading small,
.avila-rate-box small {
    display: block;
    margin-bottom: .2rem;
    color: #8b8b8b;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.avila-quick-heading h2,
.avila-rate-box h2 {
    margin: 0;
    color: #111;
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -.035em;
}

.avila-inline-form {
    position: relative;
    display: flex;
    min-height: 56px;
    border: 1px solid #dedede;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.avila-inline-form input {
    min-width: 0;
    flex: 1;
    padding: 0 1rem;
    border: 0;
    outline: 0;
    font-weight: 700;
}

.avila-inline-form button {
    flex: 0 0 auto;
    padding: 0 1.25rem;
    color: #fff;
    background: #d62828;
    border: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 800;
}

.avila-rate-box {
    position: relative;
    color: #fff;
    background: linear-gradient(135deg, #f47600, #ff9800);
    transition: transform .25s ease, filter .25s ease;
}

.avila-rate-box:hover { color: #fff; filter: saturate(1.08); }
.avila-rate-box .avila-icon-circle-light { color: #ff8700; background: #fff; }
.avila-rate-box small { color: rgba(255,255,255,.76); }
.avila-rate-box h2 { color: #fff; }
.avila-rate-box > .bi-arrow-up-right { margin-left: auto; font-size: 1.5rem; }

.avila-services { background: #fff; }
.avila-section-heading { max-width: 780px; margin: 0 auto 3rem; }
.avila-section-heading > span,
.avila-section-kicker-light {
    display: inline-block;
    margin-bottom: .65rem;
    color: #d62828;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.avila-section-heading h2 {
    margin: 0;
    font-size: clamp(2.05rem, 4vw, 3.65rem);
    font-weight: 900;
    letter-spacing: -.055em;
}
.avila-section-heading p { margin: 1rem auto 0; color: #666; line-height: 1.75; }

.avila-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.avila-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 1.6rem;
    background: #fff;
    border: 1px solid #e7e2df;
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(52,15,15,.045);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.avila-service-card:hover { color: inherit; transform: translateY(-7px); border-color: rgba(214,40,40,.35); box-shadow: 0 22px 48px rgba(86,18,18,.10); }
.avila-service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: auto;
    color: #fff;
    background: linear-gradient(135deg, #b71c1c, #df1515);
    border-radius: 50%;
    font-size: 1.45rem;
}
.avila-service-icon-orange { background: linear-gradient(135deg, #f17600, #ff9c00); }
.avila-service-card h3 { margin: 1.7rem 0 .65rem; font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; }
.avila-service-card p { margin: 0; color: #686868; font-size: .9rem; line-height: 1.65; }
.avila-card-arrow { position: absolute; top: 1.7rem; right: 1.7rem; color: #bbb; }

.avila-coverage {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    color: #fff;
    background: linear-gradient(120deg, #a71111 0%, #cf0d0d 58%, #e61b11 100%);
}
.avila-coverage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 25%, rgba(255,176,0,.20), transparent 30%), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
}
.avila-coverage-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.avila-section-kicker-light { color: #ffd582; }
.avila-coverage-copy h2 { max-width: 620px; margin: 0; font-size: clamp(2.4rem, 4.5vw, 4.5rem); font-weight: 900; letter-spacing: -.06em; line-height: 1.02; }
.avila-coverage-copy p { max-width: 600px; margin: 1.4rem 0 2rem; color: rgba(255,255,255,.78); line-height: 1.75; }
.avila-outline-button { border-width: 2px; font-size: .78rem; text-transform: uppercase; }
.avila-coverage-map { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 2rem; }
.avila-peru-shape { display: grid; place-items: center; min-height: 320px; color: rgba(255,255,255,.96); font-size: clamp(9rem, 17vw, 15rem); filter: drop-shadow(0 20px 20px rgba(70,0,0,.16)); }
.avila-city-list { display: grid; gap: .65rem; }
.avila-city-list a { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: .8rem; padding: .8rem 1rem; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 12px; transition: background .2s ease, transform .2s ease; }
.avila-city-list a:hover { color: #fff; background: rgba(255,255,255,.16); transform: translateX(4px); }
.avila-city-list b { color: #ffc65c; font-size: .7rem; letter-spacing: .07em; }
.avila-city-list span { font-family: "Montserrat", Arial, sans-serif; font-weight: 700; }
.avila-city-list i { color: #ffb000; }

.avila-support { background: #fff; }
.avila-support-shell { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 2.5rem; padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid #eaded9; border-radius: 22px; box-shadow: 0 20px 55px rgba(70,15,15,.07); }
.avila-support-intro { display: flex; align-items: center; gap: 1.2rem; }
.avila-support-icon { display: grid; place-items: center; flex: 0 0 auto; width: 72px; height: 72px; color: #d62828; border: 2px solid #ff8c00; border-radius: 50%; font-size: 2rem; }
.avila-support-intro > div > span { color: #d62828; font-family: "Montserrat", Arial, sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.avila-support-intro h2 { margin: .35rem 0 0; font-size: clamp(1.6rem, 2.8vw, 2.65rem); font-weight: 900; letter-spacing: -.045em; }
.avila-support-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.avila-support-links a { display: flex; align-items: center; gap: .7rem; padding: .9rem 1rem; color: #333; background: #faf8f7; border-radius: 11px; font-weight: 700; transition: background .2s ease, color .2s ease; }
.avila-support-links a:hover { color: #b71c1c; background: #fff1e8; }
.avila-support-links i { color: #d62828; font-size: 1.1rem; }

.avila-experience { padding: 0 0 clamp(4.5rem, 7vw, 7rem); background: #fff; }
.avila-experience-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(2rem, 4vw, 4rem); padding: clamp(2.2rem, 4vw, 3.6rem); color: #fff; background: #111; border-radius: 22px; }
.avila-experience-number { display: flex; align-items: center; gap: 1rem; }
.avila-experience-number strong { color: #ff9a00; font-family: "Montserrat", Arial, sans-serif; font-size: clamp(4rem, 7vw, 7rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.avila-experience-number span { max-width: 110px; font-family: "Montserrat", Arial, sans-serif; font-size: .8rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.avila-experience-copy h2 { margin: 0; font-size: clamp(1.45rem, 2.5vw, 2.4rem); font-weight: 800; letter-spacing: -.04em; }
.avila-experience-copy p { margin: .7rem 0 0; color: rgba(255,255,255,.65); line-height: 1.7; }

.site-footer { border-top: 6px solid #d62828; }
.footer-bottom { background: #981616; }
.footer-logo-link .site-logo { width: 220px; }

@media (max-width: 1199.98px) {
    .brand-header .navbar-collapse { margin: .9rem -12px -12px; padding: .8rem 12px 1.2rem; background: #ffffff; border-top: 1px solid #ececec; box-shadow: 0 12px 26px rgba(22, 22, 22, .06); }
    .brand-header .navbar-nav { align-items: stretch !important; }
    .brand-header .navbar-nav .nav-link { padding: .72rem .85rem !important; }
    .brand-header .navbar-nav .nav-link.active::before { left: .85rem; right: auto; width: 28px; bottom: .36rem; }
    .avila-hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .avila-hero-copy h1 { font-size: clamp(2.8rem, 5vw, 4.3rem); }
    .avila-hero-visual { min-height: 430px; }
    .avila-quick-grid { grid-template-columns: 1fr; }
    .avila-track-box { grid-template-columns: .8fr 1.2fr; }
    .avila-rate-box { min-height: 130px; }
    .avila-service-grid { grid-template-columns: repeat(2, 1fr); }
    .avila-support-shell { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
    .avila-home-hero { padding-top: 4rem; }
    .avila-hero-grid { grid-template-columns: 1fr; }
    .avila-hero-copy { text-align: center; }
    .avila-hero-copy > p { margin-inline: auto; }
    .avila-hero-actions, .avila-hero-trust { justify-content: center; }
    .avila-hero-visual { min-height: 390px; }
    .avila-track-box { grid-template-columns: 1fr; gap: 1.2rem; }
    .avila-coverage-grid { grid-template-columns: 1fr; }
    .avila-coverage-map { max-width: 760px; }
    .avila-experience-grid { grid-template-columns: 1fr; text-align: center; }
    .avila-experience-number { justify-content: center; }
    .avila-experience-copy { max-width: 720px; margin: 0 auto; }
    .avila-experience-grid .btn { justify-self: center; }
}

@media (max-width: 767.98px) {
    .site-logo-light { width: 190px; }
    .avila-home-hero { padding: 3.4rem 0 3rem; }
    .avila-hero-copy h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
    .avila-hero-copy > p { font-size: .96rem; }
    .avila-hero-actions { flex-direction: column; }
    .avila-hero-actions .btn { width: 100%; }
    .avila-hero-visual { min-height: 300px; }
    .avila-route-chip { display: none; }
    .avila-quick-panel { margin-top: -1rem; }
    .avila-track-box, .avila-rate-box { padding: 1.4rem; }
    .avila-inline-form { flex-direction: column; overflow: visible; border: 0; gap: .6rem; background: transparent; }
    .avila-inline-form input { min-height: 52px; border: 1px solid #ddd; border-radius: 10px; }
    .avila-inline-form button { min-height: 50px; border-radius: 10px; }
    .avila-service-grid { grid-template-columns: 1fr; }
    .avila-service-card { min-height: 235px; }
    .avila-coverage-map { grid-template-columns: 1fr; }
    .avila-peru-shape { min-height: 190px; font-size: 9rem; }
    .avila-support-intro { align-items: flex-start; }
    .avila-support-links { grid-template-columns: 1fr; }
    .avila-experience-number { flex-direction: column; }
    .avila-experience-number span { max-width: none; }
}

[data-agency-card][id] { scroll-margin-top: 118px; }


/* RevisiÃ³n tÃ©cnica V3 */
.header-logo-panel { display:inline-flex; align-items:center; padding:.2rem .55rem; background:#ffffff; border-radius:10px; box-shadow:0 5px 16px rgba(20,20,20,.08); }
.brand-header .navbar-toggler { border-color: #dadada; }
.brand-header .navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(214, 40, 40, .15); }
.brand-header .navbar-toggler-icon { filter: invert(0.18); }
.site-logo-client { width: 182px; height:auto; object-fit:contain; }
.footer-logo-link { overflow:hidden; }
.footer-logo-link .site-logo-client { width: 192px; }
.floating-action { border-radius:50%; }
.claims-page .claims-main-row { margin-left:0; margin-right:0; }
.claims-page .claims-main-row > [class*="col-"] { padding-left:0; padding-right:0; }
@media (min-width: 992px) { .claims-page .claims-main-row { margin-left:calc(-.5 * var(--bs-gutter-x)); margin-right:calc(-.5 * var(--bs-gutter-x)); } .claims-page .claims-main-row > [class*="col-"] { padding-left:calc(var(--bs-gutter-x) * .5); padding-right:calc(var(--bs-gutter-x) * .5); } }
@media (max-width: 575.98px) { .header-logo-panel { padding:.15rem .42rem; } .site-logo-client { width:145px; } }
