:root {
    --color-primary: #f44336;
    --color-primary-dark: #d7372c;
    --color-navy: #101624;
    --color-navy-soft: #1C2434;
    --color-surface: #0B0F1A;
    --color-gray-bg: #F3F4F6;
    --color-gray-text: #6B7280;
    --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.14);
    --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.22);
    --nav-height: 94px;
    --topbar-height: 40px;
}

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

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-navy);
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

main {
    padding-top: calc(var(--nav-height) + var(--topbar-height));
}

/* NAVBAR */
.topbar {
    background: #2b2f33;
    font-size: 0.9rem;
    z-index: 1031;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.nav-below {
    top: var(--topbar-height);
}

.bg-navy {
    background: var(--color-primary);
}

.navbar {
    min-height: var(--nav-height);
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(4px);
}

.navbar .container {
    width: 100%;
    max-width: 1600px;
    padding-left: 52px;
    padding-right: 52px;
    margin: 0 auto;
}

.navbar-brand {
    letter-spacing: 0.28em;
    font-weight: 800;
    font-size: 1.12rem;
    color: #fff !important;
}

.nav-link {
    font-weight: 700;
    font-size: 0.98rem;
    color: #e5e7eb !important;
    padding: 10px 12px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
}

.nav-link.active,
.nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 2px;
    height: 4px;
    background: transparent;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    background: var(--color-primary);
}

.btn {
    border-radius: 999px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline-light:hover {
    color: var(--color-navy);
}

.text-primary-brand {
    color: var(--color-primary);
}

/* HERO */
.hero {
    min-height: calc(100vh - var(--nav-height) - var(--topbar-height));
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item {
    min-height: calc(100vh - var(--nav-height) - var(--topbar-height));
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item .container,
.hero-slider .carousel-item .container-fluid,
.hero-slider .carousel-item .hero-container {
    min-height: calc(100vh - var(--nav-height) - var(--topbar-height));
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1600px;
    padding-left: 52px;
    padding-right: 52px;
    margin: 0 auto;
}

.page-hero {
    position: relative;
    padding: 120px 0 90px;
    margin-top: calc(var(--topbar-height) + var(--nav-height));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(16, 22, 36, 0.72), rgba(16, 22, 36, 0.55));
}

.page-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
}

.page-hero__eyebrow {
    display: inline-block;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e5e7eb;
}

.page-hero__title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    margin: 10px 0 6px;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(16, 22, 36, 0.42) 20%, rgba(16, 22, 36, 0.28) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-copy {
    background: rgba(16, 22, 36, 0.62);
    padding: 26px 24px;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(4px);
    max-width: 560px;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
}

.hero-slider .carousel-indicators.custom-indicators {
    bottom: 30px;
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    margin: 0 6px;
}

.hero-slider .carousel-indicators .active {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* HERO HIGHLIGHTS */
.hero-highlights {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

.highlight-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 190px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-strong);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.highlight-card .overlay {
    position: absolute;
    inset: 0;
    opacity: 0.92;
}

.overlay-primary {
    background: linear-gradient(160deg, rgba(225, 37, 42, 0.85), rgba(176, 27, 33, 0.9));
}

.overlay-dark {
    background: linear-gradient(160deg, rgba(16, 22, 36, 0.86), rgba(16, 22, 36, 0.92));
}

.highlight-body {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 24px 22px;
}

.highlight-body h5 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.highlight-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.26);
}

.hero-heading {
    font-size: clamp(2.8rem, 4.6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.eyebrow {
    display: inline-block;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #cbd5e1;
}

.hero-pills .pill {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
}

.hero .lead {
    color: #ffffff;
    max-width: 1200px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-grid {
    row-gap: 28px;
}

.hero-copy {
    max-width: 1080px;
}

.hero-side-card {
    max-width: 560px;
    margin-left: auto;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--color-navy);
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.pill-strong {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.pill.dark {
    background: #121a2c;
    color: #e5e7eb;
    border-color: #1f2937;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(8px);
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.mini-badge.accent {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.check-line {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.check-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px rgba(225, 37, 42, 0.35);
}

/* GENERAL SECTIONS */
.section {
    padding: 90px 0;
}

.section-heading {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--color-navy);
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--color-navy);
}

.bg-gray {
    background: var(--color-gray-bg);
}

.bg-slate {
    background: linear-gradient(160deg, #0f172a, #111827 50%, #0b1224);
}

.bg-light {
    background-color: var(--color-gray-bg) !important;
}

/* STATS */
.stats-band {
    background: linear-gradient(90deg, #0f172a, #161f32);
    padding: 24px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px;
    color: #e5e7eb;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* ABOUT */
.about-block p.lead {
    font-weight: 500;
}

.about-media img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(16, 22, 36, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
}

/* FEATURES */
.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 22px;
    min-height: 260px;
    color: #fff;
    box-shadow: var(--shadow-soft);
    background-size: cover;
    background-position: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card h3 {
    margin: 10px 0 8px;
    font-weight: 700;
}

.feature-card p {
    color: #d1d5db;
    margin-bottom: 16px;
}

.tag {
    display: inline-flex;
    padding: 6px 12px;
    background: rgba(225, 37, 42, 0.18);
    border: 1px solid rgba(225, 37, 42, 0.5);
    border-radius: 999px;
    font-size: 0.8rem;
    color: #fca5a5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 68px rgba(0, 0, 0, 0.32);
    border-color: rgba(225, 37, 42, 0.45);
}

/* FEATURE SPLIT */
.feature-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.feature-split__media {
    background-size: cover;
    background-position: center;
    min-height: 280px;
}

.feature-split__panel {
    padding: 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-split__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    margin: 4px 0;
    color: var(--color-navy);
}

.feature-split__text {
    margin: 0;
    color: var(--color-gray-text);
    font-size: 1rem;
}

.feature-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.feature-thumbs .thumb {
    height: 120px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

.about-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.about-card ul {
    padding-left: 18px;
}

.about-spotlight__image {
    width: 100%;
    height: 340px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

.about-mini.stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.icon-list i {
    color: var(--color-primary);
}

.about-stats-band {
    position: relative;
    background: url('../assets/img/nosotros.png') center/cover no-repeat fixed;
    padding: 60px 0;
    overflow: hidden;
    isolation: isolate;
    background-color: #111;
}


.about-cta {
    padding-top: 0;
}

.about-cta__media {
    height: 260px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

.about-cta__panel {
    background: linear-gradient(120deg, #e1252a, #b01b21);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.about-gallery {
    display: grid;
    gap: 12px;
}

.about-gallery__main {
    height: 260px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

.about-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.about-gallery__thumbs .thumb {
    height: 110px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
}

.about-feature-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.icon-circle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.icon-circle.primary { background: var(--color-primary); }
.icon-circle.green { background: #16a34a; }
.icon-circle.accent { background: #f97316; }
.icon-circle.gray { background: #1f2937; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.testimonial-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.avatar-sm {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.progress-list .progress {
    height: 8px;
    background: #e5e7eb;
}

.progress-list .progress-bar {
    background: var(--color-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.team-card {
    position: relative;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 22, 36, 0.1), rgba(16, 22, 36, 0.7));
}

.team-body {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: #fff;
    z-index: 2;
}

.team-card h5 {
    margin: 0 0 4px;
    font-weight: 700;
}

.team-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

/* SERVICIOS DESTACADOS */
.service-card {
    border: none;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.service-image {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(16, 22, 36, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-body {
    padding: 18px;
}

/* COURSES */
.course-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card img {
    height: 210px;
    width: 100%;
    object-fit: cover;
}

.course-thumb {
    height: 210px;
    background-size: cover;
    background-position: center;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.course-placeholder {
    background: linear-gradient(120deg, #f9fafb, #f3f4f6);
    color: var(--color-gray-text);
    height: 210px;
    display: grid;
    place-items: center;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* EVENTS */
.events-block {
    background: #fff;
}

.timeline {
    position: relative;
    padding-left: 24px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
    opacity: 0.35;
}

.timeline-item {
    position: relative;
    padding: 12px 0 12px 14px;
}

.timeline-dot {
    position: absolute;
    left: -2px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--color-primary);
}

.timeline-content {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* CTA */
.cta-band {
    background: linear-gradient(120deg, var(--color-primary), #b01b21);
    padding: 48px 0;
    border-radius: 18px 18px 0 0;
    margin-top: -8px;
}

.cta-band .btn {
    border-width: 2px;
    font-weight: 700;
}

/* FOOTER */
footer {
    background: var(--color-navy-soft);
    color: #e5e7eb;
}

footer p {
    margin: 0;
    letter-spacing: 0.12em;
    font-weight: 700;
}

footer small {
    color: #cbd5e1;
}

.footer-autocare {
    background: #15181c;
    color: #fff;
    margin-top: 60px;
}

.footer-autocare__top {
    padding: 48px 0 32px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.footer-underline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 14px;
}

.footer-underline__red {
    width: 36px;
    height: 5px;
    background: var(--color-primary);
}

.footer-underline__dark {
    width: 12px;
    height: 5px;
    background: #0f1114;
}

.footer-text {
    color: #b0b3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b0b3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a i {
    color: var(--color-primary);
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b0b3b8;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--color-primary);
    margin-top: 2px;
}

.footer-autocare__bottom {
    background: #0f1114;
    padding: 10px 0 14px;
    text-align: center;
    position: relative;
}

.footer-dotted {
    height: 5px;
    width: 100%;
    background-image: linear-gradient(to right, var(--color-primary) 50%, transparent 50%);
    background-size: 12px 5px;
    margin-bottom: 10px;
}

.footer-autocare__bottom p {
    color: #e5e7eb;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0;
    font-size: 0.95rem;
}

.footer-autocare a {
    color: #b0b3b8;
}

.footer-autocare a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-autocare__top {
        padding: 38px 0 26px;
    }
}
/* ABOUT (enhanced) */
.about-spotlight {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: clamp(18px, 4vw, 56px);
    padding-right: clamp(18px, 4vw, 56px);
}

.about-spotlight::before,
.about-spotlight::after {
    content: none;
}

.about-spotlight__container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.about-spotlight__title {
    font-size: clamp(2.3rem, 4.4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.15;
}

.about-spotlight .section-heading,
.section--light .section-heading,
.section.bg-light .section-heading {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    line-height: 1.2;
}

.about-spotlight p,
.section--light p,
.section.bg-light p,
.about-cta__panel p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: #0f172a;
    font-weight: 600;
}

.about-spotlight__lead {
    font-size: 1.18rem;
    color: #0b1224;
    font-weight: 700;
}

.about-spotlight__copy {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 12px 6px;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.about-spotlight__copy::after {
    content: none;
}

.about-spotlight .eyebrow,
.section--light .eyebrow {
    letter-spacing: 0.2em;
}

.about-spotlight__row {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
}

.about-spotlight__media {
    display: flex;
    justify-content: flex-start;
}

.about-spotlight__row > [class*="col-"] {
    padding-left: clamp(12px, 3vw, 28px);
    padding-right: clamp(12px, 3vw, 28px);
}

.decor-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.decor-line__red {
    display: inline-block;
    width: 48px;
    height: 6px;
    background: var(--color-primary);
}

.decor-line__dark {
    display: inline-block;
    width: 14px;
    height: 6px;
    background: #111827;
}

.about-spotlight__title {
    text-transform: uppercase;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.about-spotlight__lead {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.about-highlight {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 12px 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    align-items: center;
    animation: soft-breathe 8s ease-in-out infinite;
}

.about-highlight__icon {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    background: #25292f;
    color: var(--color-primary);
    font-size: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.about-highlight__title {
    text-transform: uppercase;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.about-highlight__text {
    margin: 0;
    color: #555;
    font-size: 0.96rem;
    line-height: 1.6;
}

.section-kicker .eyebrow {
    color: var(--color-primary);
}

.section-kicker .decor-line {
    margin-top: 6px;
}

@keyframes soft-breathe {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.01); }
}

.breath,
.hover-card,
.feature-card,
.service-card,
.course-card,
.team-card,
.stat-card,
.stat-card-alt,
.stat,
.about-gallery__thumbs .thumb,
.timeline-item,
.about-gallery__main,
.about-cta__media,
.about-cta__panel,
.testimonial-card {
    animation: soft-breathe 10s ease-in-out infinite;
}

.breath-fast {
    animation: soft-breathe 8s ease-in-out infinite;
}
.about-spotlight__image {
    position: relative;
    width: 100%;
    height: 640px;
    border-radius: 16px;
    overflow: visible;
    box-shadow: var(--shadow-strong);
    background: linear-gradient(140deg, #0f172a, #111827);
}

.about-spotlight__image::before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -26px;
    width: 22px;
    height: 86%;
    background: var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(225, 37, 42, 0.35);
    z-index: 1;
}

.about-spotlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.about-spotlight__halo {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(225, 37, 42, 0.16), transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08), transparent 50%);
    mix-blend-mode: screen;
    opacity: 0.8;
    z-index: 2;
}

.about-spotlight__badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: linear-gradient(120deg, #0b1224, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    z-index: 3;
}

.floating-badge {
    animation: floaty 6s ease-in-out infinite;
}

.glow {
    box-shadow: 0 14px 36px rgba(225, 37, 42, 0.4);
}

.glow-soft {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.about-mini-stats .stat {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    min-width: 160px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-mini-stats .stat-value {
    color: var(--color-navy);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.1;
    color: #b01b21;
}

.about-mini-stats .stat-label {
    color: #4b5563;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.about-meta__item {
    border-color: #f3f4f6;
    background: linear-gradient(120deg, #fff, #f9fafb);
    font-weight: 700;
    color: #111827;
}

.about-meta__icon {
    background: rgba(225, 37, 42, 0.15);
    color: #b01b21;
}

.pill.glow,
.pill.glow-soft {
    font-weight: 800;
    letter-spacing: 0.01em;
}

.about-pill-group .pill {
    border-color: transparent;
}

.about-meta {
    display: grid;
    gap: 10px;
}

.about-meta__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: var(--color-navy);
}

.about-meta__icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(225, 37, 42, 0.12);
    color: var(--color-primary);
}

.about-stats-band {
    position: relative;
    background: url('../assets/img/nosotros.png') center/cover no-repeat fixed;
    padding: 60px 0;
    overflow: hidden;
    isolation: isolate;
    background-color: #111;
}

.about-stats-band .container-fluid {
    position: relative;
    z-index: 2;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.32));
    z-index: 1;
}

.stat-card-alt {
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 26px 20px;
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 200px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.stat-card-alt::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(225, 37, 42, 0.18), transparent 55%);
    pointer-events: none;
}

.stat-card-alt .stat-value {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-card-alt .stat-label {
    color: #e5e7eb;
    font-weight: 700;
}

.stats-card__icon {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 12px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-card-alt:hover {
    border-color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.stats-box {
    display: grid;
    place-items: center;
    gap: 6px;
}

.stats-box__icon {
    font-size: 2.6rem;
    color: #fff;
    line-height: 1;
}

.stats-box__icon .fa-solid {
    font-weight: 900;
}

.stats-card {
    background: rgba(0, 0, 0, 0.28);
    border: 2px solid #fff;
    border-radius: 14px;
    padding: 22px 18px;
}

.section--light {
    background: linear-gradient(180deg, #ffffff, #f9fafb);
}

.about-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 6px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    position: relative;
    overflow: hidden;
    animation: soft-breathe 10s ease-in-out infinite;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(225, 37, 42, 0.12), transparent 65%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card .card-body {
    position: relative;
    z-index: 2;
}

/* Mision / Vision / Valores (bloques completos) */
.mv-block {
    border-radius: 18px;
    padding: 32px 30px;
    margin-bottom: 22px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #ffffff;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mv-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(225, 37, 42, 0.25);
}

.mv-block--mission {
    background: linear-gradient(135deg, rgba(225, 37, 42, 0.06), #ffffff);
}

.mv-block--vision {
    background: linear-gradient(135deg, #ffffff, rgba(11, 18, 36, 0.04));
}

.mv-block--values {
    background: linear-gradient(135deg, rgba(11, 18, 36, 0.05), #f8fafc);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(225, 37, 42, 0.12);
    color: #b01b21;
    font-size: 1.5rem;
}

.mv-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b1224;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mv-subtitle {
    margin: 0;
    color: #b01b21;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.mv-text {
    margin: 0;
    color: #4b5563;
    font-size: 1.04rem;
    line-height: 1.9;
}

.mv-values {
    display: grid;
    gap: 10px;
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.7;
    padding-left: 0;
}

.mv-values i {
    color: #b01b21;
    margin-right: 8px;
}

.icon-list.soft i {
    color: #10b981;
}

.icon-list.soft li {
    color: var(--color-gray-text);
    font-size: 1.02rem;
    line-height: 1.7;
}

.about-gallery {
    display: grid;
    gap: 14px;
}

.about-gallery__main {
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    animation: soft-breathe 9s ease-in-out infinite;
}

.about-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.about-gallery__main:hover img {
    transform: scale(1.03);
}

.about-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.about-gallery__thumbs .thumb {
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.about-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-gallery__thumbs .thumb:hover img {
    transform: scale(1.05);
}

.interactive-panel::after {
    content: "";
    position: absolute;
    inset: -60%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 60%);
    transform: rotate(12deg);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}

.interactive-panel:hover::after {
    transform: translateX(20%);
    opacity: 1;
}

.about-cta {
    padding-top: 0;
}

.about-cta__media {
    position: relative;
    height: 320px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    animation: soft-breathe 10s ease-in-out infinite;
}

.about-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.about-cta__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(225, 37, 42, 0.18), transparent 38%);
    pointer-events: none;
}

.about-cta__panel {
    background: linear-gradient(120deg, #e1252a, #b01b21);
    border-radius: 16px;
    padding: 26px;
    color: #fff;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
    animation: soft-breathe 10s ease-in-out infinite;
}

.about-cta__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.12), transparent 50%);
    pointer-events: none;
}

.about-cta__panel h4 {
    font-size: clamp(1.8rem, 3.2vw, 2.3rem);
    line-height: 1.25;
}

.about-cta__play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    display: grid;
    place-items: center;
    background: linear-gradient(120deg, #ffffff, #f1f5f9);
    color: var(--color-primary);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    cursor: pointer;
}

.about-cta__play::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    animation: pulse-ring 2.2s infinite;
}

.testimonial-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    background: #fff;
    position: relative;
    animation: soft-breathe 11s ease-in-out infinite;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), #f97316);
}

.testimonial-card p {
    font-size: 0.98rem;
    line-height: 1.8;
}

.avatar-rounded {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.progress-list {
    display: grid;
    gap: 14px;
}

.progress-item {
    padding: 12px 0;
}

.progress-list .progress {
    height: 8px;
    background: #e5e7eb;
    overflow: hidden;
    border-radius: 999px;
}

.progress-list .progress-bar {
    width: var(--progress-target, 0);
    background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark));
    transition: width 0.9s ease, background-position 0.9s ease;
    box-shadow: 0 10px 22px rgba(225, 37, 42, 0.25);
}

.js-enabled .progress-list .progress-bar {
    width: 0;
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-on-scroll.delay-1 { transition-delay: 0.08s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.16s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.24s; }

.hover-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    border-color: rgba(225, 37, 42, 0.35);
}

.tilt-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

@keyframes floaty {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.75; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* UTILITIES */
.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

@media (max-width: 991px) {
    .hero {
        min-height: 80vh;
    }

    .hero-heading {
        letter-spacing: 0.02em;
    }

    .timeline {
        padding-left: 20px;
    }

    .hero-highlights {
        margin-top: -30px;
    }

    .hero-side-card {
        margin-left: 0;
        max-width: none;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-spotlight {
        border-radius: 12px;
    }

    .about-spotlight__image {
        height: 460px;
    }

    .about-spotlight__media {
        justify-content: center;
    }

    .about-spotlight .section-heading,
    .section--light .section-heading,
    .section.bg-light .section-heading {
        font-size: clamp(2rem, 4.6vw, 2.7rem);
    }

    .about-spotlight p,
    .section--light p,
    .section.bg-light p,
    .about-cta__panel p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .about-cta__media {
        height: 240px;
    }

    .about-mini-stats .stat {
        min-width: 140px;
    }

    .about-stats-band {
        padding: 28px 0;
    }
}

@media (min-width: 992px) {
    .w-lg-75 {
        width: 75% !important;
    }
}

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

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    .tilt-card,
    .hover-card,
    .breath,
    .breath-fast,
    .feature-card,
    .service-card,
    .course-card,
    .team-card,
    .stat-card,
    .stat-card-alt,
    .stat,
    .about-gallery__thumbs .thumb,
    .timeline-item,
    .about-gallery__main,
    .about-cta__media,
    .about-cta__panel,
    .testimonial-card {
        transform: none !important;
    }
}
.autocare-topbar__inner {
    height: 100%;
}

.autocare-topbar__social .social-icon {
    border-color: rgba(255, 255, 255, 0.35);
}

.autocare-topbar__social .social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.autocare-nav {
    background: var(--color-primary);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.autocare-nav__inner {
    max-width: 100%;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
}

.autocare-logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-right: auto;
}

.autocare-logo-shape {
    background: #1f2327;
    padding: 12px 22px;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.autocare-logo-sub {
    color: #f8fafc;
    font-size: 0.82rem;
    line-height: 1.1;
}

.autocare-menu .nav-link {
    font-weight: 800;
    letter-spacing: 0.05em;
}

.autocare-menu {
    margin-left: auto;
}

.autocare-menu .nav-link.active {
    background: #fff;
    color: #111827 !important;
}

.autocare-menu .nav-link:hover {
    text-decoration: underline;
}

.autocare-search-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.autocare-search-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.autocare-toggler {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.autocare-toggler .navbar-toggler-icon {
    filter: invert(1);
}

/* HOME - SERVICIOS PREMIUM Y BANDA METRICA */
.services-premium .section-heading {
    color: #0b1224;
}

.services-premium .text-muted {
    font-size: 1.02rem;
}

.service-premium-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.service-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.14);
}

.service-premium__media {
    position: relative;
    height: 230px;
    background-size: cover;
    background-position: center;
}

.service-premium__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 36, 0) 20%, rgba(11, 18, 36, 0.72) 90%);
}

.service-premium__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(225, 37, 42, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    z-index: 2;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.service-premium__body {
    padding: 20px 18px;
    display: grid;
    gap: 10px;
}

.service-premium__body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0b1224;
    margin: 0;
}

.service-premium__body p {
    margin: 0;
    color: #4b5563;
}

.service-premium__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
}

.service-premium__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #0b1224;
}

.btn-glass {
    padding: 10px 16px;
    background: rgba(225, 37, 42, 0.1);
    border: 1px solid rgba(225, 37, 42, 0.35);
    color: #b01b21;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(225, 37, 42, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-glass:hover {
    background: rgba(225, 37, 42, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(225, 37, 42, 0.22);
}

.client-strip {
    background: linear-gradient(120deg, #0b1224, #10192c);
    color: #fff;
    padding: 50px 0;
    overflow: hidden;
}

.client-strip__title {
    margin: 6px 0 0;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.client-strip__cta .pill {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.client-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.client-track {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
    animation: marquee 24s linear infinite;
    min-width: 100%;
}

.client-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.client-logo:hover {
    background: rgba(225, 37, 42, 0.14);
    border-color: rgba(225, 37, 42, 0.4);
}

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

.mini-service-grid .mini-service-card {
    position: relative;
    border-radius: 16px;
    height: 210px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.mini-service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(11, 18, 36, 0.85), rgba(225, 37, 42, 0.55));
}

.mini-service-card__body {
    position: absolute;
    inset: 0;
    padding: 20px 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    z-index: 2;
}

.mini-service-card__icon {
    font-size: 1.7rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mini-service-card h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.mini-service-card p {
    margin: 0;
    color: #e5e7eb;
}

.metrics-elite {
    position: relative;
    padding: 80px 0;
    background: url('../assets/img/operations.png') center/cover fixed;
    overflow: hidden;
    isolation: isolate;
}

.metrics-elite__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 18, 36, 0.75), rgba(11, 18, 36, 0.55));
    z-index: 1;
}

.metrics-elite .container {
    position: relative;
    z-index: 2;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 24px 20px;
    color: #fff;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
}

.metric-card__icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.metric-card__value {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
}

.metric-card__label {
    color: #e5e7eb;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@media (max-width: 991px) {
    .service-premium__media { height: 200px; }
    .metrics-elite { padding: 60px 0; background-attachment: scroll; }
    .mini-service-card { height: 190px; }
}
