@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Ultralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('/static/assets/fonts/sf-pro-display/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beausite Classic';
    src: url('/static/assets/fonts/beausite-classic-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beausite Classic';
    src: url('/static/assets/fonts/beausite-classic-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beausite Classic';
    src: url('/static/assets/fonts/beausite-classic-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beausite Classic';
    src: url('/static/assets/fonts/beausite-classic-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Beausite Classic';
    src: url('/static/assets/fonts/beausite-classic-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ====================
   VARIABLES & GLOBALS
   ==================== */
:root {
    --bg-main: #f4f5f7;
    --text-main: #222222;
    --text-muted: #888888;
    --abozor-blue: #075BA6;
    --abozor-blue-rgb: 7, 91, 166;
    --abozor-blue-dark: #043B78;
    --abozor-blue-mid: #0768BA;
    --abozor-blue-bright: #0A7BD7;
    --abozor-blue-gradient: linear-gradient(135deg, #043B78 0%, #075BA6 58%, #0874C8 100%);
    --abozor-blue-surface: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12), transparent 34%), linear-gradient(135deg, #043B78 0%, #075BA6 58%, #0874C8 100%);
    --abozor-blue-surface-hover: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 34%), linear-gradient(135deg, #04366E 0%, #065799 54%, #087FD6 100%);
    --abozor-blue-pattern-image: url('/static/assets/abozor_blue_pattern_2027_selected.png');
    --abozor-blue-pattern-surface: var(--abozor-blue-pattern-image);
    --btn-border: #cccccc;
    --green-accent: #8dc63f;
    --section-gap: 64px;
    --section-gap-top: 8px;
    --page-section-y: clamp(38px, 3.2vw, 52px);
    --page-section-y-mobile: 32px;

    --font-stack: 'SF Pro Display', 'Montserrat', sans-serif;
    --uz-font-stack: 'Beausite Classic', 'SF Pro Display', sans-serif;
    --border-radius: 24px;
    --content-shell-max: 1360px;
}

html:lang(uz) {
    --font-stack: var(--uz-font-stack);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-stack);
    background-color: var(--bg-main);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

main {
    animation: pageEnter 0.48s cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-origin: 50% 0;
}

body.page-leaving main {
    pointer-events: none;
    animation: pageLeave 0.22s cubic-bezier(0.7, 0, 0.84, 0) both;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(16px) scale(0.992);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes pageLeave {
    from {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        filter: blur(7px);
        transform: translateY(-10px) scale(0.996);
    }
}

@media (prefers-reduced-motion: reduce) {
    main,
    body.page-leaving main {
        animation: none;
        filter: none;
        transform: none;
    }
}

h1, h2, h3, h4, h5, h6,
strong,
b {
    font-weight: 600;
}

.footer :is(.nps-text, .nps-cta, .footer-brand-name span, .footer-phone, .footer-title),
.carwash-main-cta,
.action-label {
    font-weight: 600 !important;
}

/* ====================
   CUSTOM SCROLLBAR
   ==================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* ====================
   TOP BAR
   ==================== */
.top-bar {
    background-color: #ffffff;
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}
.top-icon:hover {
    color: var(--abozor-blue);
}
.location-link {
    display: flex;
    align-items: center;
    gap: 4px;
}
.location-link:hover {
    color: var(--abozor-blue);
}
.phone-link {
    color: var(--text-main);
    font-weight: 600;
}
.phone-link:hover {
    color: var(--abozor-blue);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.lang-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}
.lang-btn:hover {
    color: var(--text-main);
}
.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    margin-top: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.05);
}
.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.lang-switcher:hover .lang-btn {
    color: var(--text-main);
}
.lang-dropdown a {
    display: block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    transition: color 0.15s;
}
.lang-dropdown a:hover {
    color: var(--abozor-blue);
}

/* ====================
   HEADER
   ==================== */
.header {
    background-color: #ffffff;
    padding: 24px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* Minimum safety gap */
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.main-nav {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px; /* Space between last link and the login button */
    flex-wrap: nowrap;
}
.main-nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: color 0.3s;
}
.main-nav a:hover {
    color: var(--abozor-blue);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    background-color: #ffffff;
    min-width: 220px;
    width: max-content;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Invisible bridge to keep hover state active */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Prevent right-side dropdown menus from overflowing the browser window */
.main-nav > *:nth-last-child(-n+3) .dropdown-menu {
    left: auto;
    right: 0;
}

.nav-dropdown:hover > a {
    color: var(--abozor-blue);
}

.main-nav .nav-dropdown .dropdown-menu a {
    display: block;
    padding: 14px 24px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-main);
    text-transform: none;
    letter-spacing: normal;
    white-space: normal;
    line-height: 1.4;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 8px;
}

.main-nav .nav-dropdown .dropdown-menu a:hover {
    background-color: #f4f5f7;
    color: var(--abozor-blue);
    transform: translateX(4px);
}

.btn {
    cursor: pointer;
    font-family: var(--font-stack);
    border: none;
    transition: all 0.2s ease;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--btn-border);
    border-radius: 40px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
}
.btn-outline:hover {
    border-color: var(--abozor-blue);
}

/* ====================
   HERO SECTION
   ==================== */
.hero-section {
    padding-top: 28px;
    padding-bottom: 12px;
}

.hero-top-title {
    margin: 0 0 24px;
    color: var(--abozor-blue);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin: 0 0 24px;
    line-height: 1.1;
}

.hero-carousel {
    background-color: var(--abozor-blue);
    border-radius: var(--border-radius);
    min-height: 440px;
    position: relative;
    overflow: hidden;
    display: flex;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    text-decoration: none;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: min(560px, calc(100% - 140px));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

.hero-slide-title {
    margin: 0;
    color: #ffffff;
    max-width: 520px;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.04;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Премиальный зеленый градиент */
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    box-shadow: 0 14px 28px rgba(16, 185, 129, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.hero-slide-cta:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 18px 34px rgba(5, 150, 105, 0.4);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.15); /* Еле заметный фон */
    color: rgba(255,255,255,0.5); /* Полупрозрачная иконка */
    border: 1px solid rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}
.carousel-control:hover {
    background: rgba(0,0,0,0.4);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}
.carousel-control.prev { left: 40px; }
.carousel-control.next { right: 40px; }

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

.btn-green {
    background-color: var(--green-accent);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
}
.btn-green:hover {
    background-color: #7ab32f;
}

@media (max-width: 900px) {
    .hero-slide-overlay {
        left: 28px;
        right: 28px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        gap: 16px;
    }

    .hero-slide-title {
        max-width: 360px;
        font-size: 24px;
    }

    .hero-slide-cta {
        min-height: 44px;
        padding: 0 22px;
        font-size: 15px;
    }
}

.hero-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 44px;
    align-items: start;
    min-height: 590px;
    padding: 70px 72px;
    border-radius: 24px;
    background-color: var(--abozor-blue);
    background-image: var(--abozor-blue-pattern-surface);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 28px 70px rgba(var(--abozor-blue-rgb), 0.2);
    overflow: visible;
}

.hero-copy {
    position: relative;
    z-index: 3;
    color: #ffffff;
    transform: translateX(-18px);
}

.hero-showcase .hero-page-title {
    margin: 0;
    max-width: 560px;
    color: #ffffff;
    font-size: clamp(32px, 3.1vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    text-transform: none;
    text-wrap: balance;
}

.hero-bullets {
    display: grid;
    gap: 16px;
    margin-top: 34px;
    max-width: 640px;
}

.hero-bullet {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: rgba(226, 232, 240, 0.94);
    font-size: clamp(17px, 1.12vw, 19px);
    font-weight: 400;
    line-height: 1.38;
}

.hero-bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-bullet-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

.hero-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 222px;
    min-height: 58px;
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hero-action:hover {
    transform: none;
}

.hero-action-primary {
    background: #ffffff;
    color: var(--abozor-blue-dark);
    box-shadow: none;
}

.hero-action-primary:hover {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(22, 163, 74, 0.24);
}

.hero-action-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.hero-action-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.hero-visual {
    min-width: 0;
}

.hero-showcase .hero-carousel {
    min-height: 0;
    height: clamp(360px, 32vw, 520px);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
}

.hero-showcase .hero-slide::before,
.hero-showcase .hero-slide-overlay {
    display: none;
}

.hero-showcase .hero-slide-media {
    border-radius: 10px;
}

.hero-showcase .carousel-control {
    display: none;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(var(--abozor-blue-rgb), 0.38);
    backdrop-filter: blur(8px);
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.hero-dot.active {
    width: 24px;
    border-radius: 999px;
    background: #ffffff;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1100px) {
    .hero-showcase {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 48px;
    }

    .hero-showcase .hero-carousel {
        height: 420px;
    }

    .hero-copy {
        transform: none;
    }
}

@media (max-width: 700px) {
    .hero-showcase {
        min-height: 0;
        padding: 28px 22px;
        gap: 26px;
    }

    .hero-showcase .hero-page-title {
        font-size: 30px;
    }

    .hero-actions {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .hero-action {
        width: 100%;
    }

    .hero-showcase .hero-carousel {
        height: 280px;
    }
}

/* ====================
   QUICK LINKS BAR
   ==================== */
.quick-links-bar {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    padding: 0 12px;
    margin: -40px 40px 0;
    height: 80px;
    position: relative;
    z-index: 10;
}

.quick-link {
    display: flex;
    flex: 1;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    border-right: 1px solid #e0e0e0;
    padding: 0 8px;
    white-space: nowrap;
}
.quick-link:last-child {
    border-right: none;
}
.quick-link:hover {
    color: var(--text-main);
}
.quick-link .icon {
    opacity: 0.6;
}
.quick-link-custom-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

/* ====================
   SERVICES SECTION
   ==================== */
.services-section {
    padding: 32px 0 48px;
    background-color: var(--bg-main);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    text-decoration: none;
    min-height: 160px;
    display: flex;
    perspective: none;
    border-radius: 20px;
}

.service-card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 28px;
    transform-style: flat;
    transition: none;
}

.service-card-base {
    position: absolute;
    inset: 0;
    background: #dfeaf3;
    border-radius: 20px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 12px rgba(var(--abozor-blue-rgb), 0.04);
}

.service-card.has-image .service-card-base {
    background: #cbd9e6;
}

.service-card:hover .service-card-base {
    transform: none;
    box-shadow: 0 12px 24px rgba(var(--abozor-blue-rgb), 0.1);
    background: #d6e4ee;
}

.service-card.has-image:hover .service-card-base {
    background: #c3d2e0;
}

.service-card-copy {
    position: relative;
    z-index: 3;
    transition: none;
    transform: none;
}

.service-card-title {
    display: block;
    max-width: 240px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--abozor-blue);
    text-wrap: balance;
}

.service-card-title-img {
    display: block;
    max-width: 180px;
    max-height: 80px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

.service-card:hover .service-card-copy {
    transform: none;
}

@media (max-width: 768px) {
    .service-card {
        min-height: 140px;
    }
    .service-card-wrapper {
        padding: 20px 22px;
    }
    .service-card:hover .service-card-base {
        transform: none;
        box-shadow: 0 12px 24px rgba(var(--abozor-blue-rgb), 0.1);
    }
    .service-card:hover .service-card-copy {
        transform: none;
    }
}

.span-4 {
    grid-column: span 4;
    min-height: 154px;
}

.span-3 {
    grid-column: span 3;
    min-height: 146px;
}

.span-5 {
    grid-column: span 5;
}

.span-6 {
    grid-column: span 6;
    min-height: 154px;
}

.span-7 {
    grid-column: span 7;
}

/* Grid Spans */

/* Responsive adjustments */
@media (max-width: 1024px) {
    .span-3, .span-4, .span-5, .span-6, .span-7 {
        grid-column: span 6;
    }
}
@media (max-width: 768px) {
    .span-3, .span-4, .span-5, .span-6, .span-7 {
        grid-column: span 12;
    }

    .service-card {
        min-height: 136px;
        padding: 18px 16px;
    }

    .service-card-title {
        font-size: 16px;
        max-width: 180px;
    }

    .service-card.has-image::after {
        background: linear-gradient(180deg, rgba(12, 20, 33, 0.14) 0%, rgba(12, 20, 33, 0.5) 100%);
    }
}

/* Photo service cards */
.services-section {
    padding: 54px 0 64px;
}

.services-section-head {
    margin-bottom: 26px;
    text-align: center;
}

.services-section-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(32px, 3.45vw, 50px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.services-section-head p {
    margin: 8px 0 0;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.45;
}

.services-photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-photo-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(var(--abozor-blue-rgb), 0.08);
    perspective: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-photo-card:hover {
    transform: translateY(-4px);
    border-color: #c8d5e5;
    box-shadow: 0 18px 34px rgba(var(--abozor-blue-rgb), 0.12);
}

.service-photo-card .service-photo {
    height: 150px;
    background: linear-gradient(135deg, #e7eef6 0%, #f8fafc 100%);
    overflow: hidden;
}

.service-photo-card .service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.service-photo-card:hover .service-photo img {
    transform: scale(1.04);
}

.service-photo-body {
    padding: 14px 14px 16px;
}

.service-photo-body h3 {
    margin: 0;
    min-height: 26px;
    color: #182235;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.service-photo-body span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    color: #3b4758;
    font-size: 13px;
    font-weight: 600;
}

.service-photo-body b {
    color: var(--abozor-blue);
    font-size: 15px;
    line-height: 1;
}

@media (max-width: 1100px) {
    .services-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .services-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .service-photo-card .service-photo {
        height: 132px;
    }
}

@media (max-width: 520px) {
    .services-photo-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================
   CARWASH LANDING
   ==================== */
.carwash-section {
    background: var(--bg-main);
}

.carwash-section .container {
    max-width: 1440px;
}

.carwash-hero,
.carwash-formats,
.carwash-map-card,
.carwash-app-cta {
    max-width: var(--content-shell-max);
    margin-inline: auto;
}

.carwash-hero {
    --carwash-visual-gap: clamp(18px, 1.4vw, 22px);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: var(--carwash-visual-gap);
    color: #ffffff;
}

.carwash-hero-copy {
    --carwash-copy-width: 100%;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 0 0 clamp(6px, 1vw, 12px);
    border: 0;
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    background: none;
    box-shadow: none;
    text-align: left;
    overflow: visible;
    isolation: auto;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.carwash-hero-text {
    display: grid;
    gap: 18px;
    align-content: center;
    justify-items: center;
    max-width: 100%;
    text-align: center;
}

.carwash-hero h2,
.carwash-section-head h2,
.carwash-app-cta h2 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.carwash-hero h2 {
    width: var(--carwash-copy-width);
    max-width: 100%;
    color: var(--abozor-blue);
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 600;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.carwash-hero h2 span {
    display: inline;
}

.carwash-hero h2 span + span::before {
    content: " ";
}

.carwash-hero p {
    margin: 0;
    width: var(--carwash-copy-width);
    max-width: 100%;
    color: #344255;
    font-size: clamp(15px, 1.08vw, 17px);
    line-height: 1.65;
    white-space: nowrap;
}

.carwash-hero-controls {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    display: grid;
}

.carwash-stats {
    width: var(--carwash-copy-width);
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    gap: 10px;
}

.carwash-stats span {
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid #d7e1ec;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.84);
    color: var(--abozor-blue);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.18;
    text-align: center;
    box-shadow: 0 14px 26px rgba(var(--abozor-blue-rgb), 0.07);
    backdrop-filter: blur(12px);
}

.carwash-stats span:last-child {
    grid-column: 1 / -1;
}

.carwash-hero-actions {
    width: var(--carwash-copy-width);
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr;
}

.carwash-cashback {
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.98), rgba(21, 128, 61, 0.98));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 18px 34px rgba(21, 154, 91, 0.28);
}

.carwash-main-cta {
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--abozor-blue-gradient);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(var(--abozor-blue-rgb), 0.16);
    transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.carwash-main-cta:hover {
    transform: none;
    background: var(--abozor-blue-gradient);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(var(--abozor-blue-rgb), 0.16);
}

.carwash-hero-gallery {
    --puzzle-gap: var(--carwash-visual-gap);
    --puzzle-left-w: 59%;
    --puzzle-right-w: calc(41% - var(--puzzle-gap));
    position: relative;
    min-height: clamp(430px, 39vw, 570px);
    padding: 0;
}

.no-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef3f8 0%, #dfe8f1 100%);
    color: #6b7788;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: lowercase;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.no-photo-placeholder span {
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.no-photo-placeholder[hidden],
.location-details-image img[hidden] {
    display: none !important;
}

.carwash-hero-gallery img,
.carwash-hero-gallery > .no-photo-placeholder {
    position: absolute;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 26px;
    background: #e9eef5;
    box-shadow:
        0 24px 46px rgba(var(--abozor-blue-rgb), 0.14),
        0 1px 0 rgba(255, 255, 255, 0.82) inset;
    object-position: center;
    animation-name: carwashGalleryLift;
    animation-duration: 12s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: both;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform, box-shadow;
}

.carwash-hero-gallery > .no-photo-placeholder {
    display: flex;
    animation: none;
    transition: none;
    will-change: auto;
}

.carwash-hero-gallery img:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 56px rgba(var(--abozor-blue-rgb), 0.18),
        0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.carwash-hero-gallery > :first-child {
    top: 0;
    left: 0;
    width: var(--puzzle-left-w);
    height: 100%;
    animation-delay: 0s;
}

.carwash-hero-gallery > :nth-child(2) {
    top: 0;
    left: calc(var(--puzzle-left-w) + var(--puzzle-gap));
    width: var(--puzzle-right-w);
    height: calc((100% - var(--puzzle-gap)) / 2);
    animation-delay: 4s;
}

.carwash-hero-gallery > :nth-child(3) {
    top: calc((100% + var(--puzzle-gap)) / 2);
    left: calc(var(--puzzle-left-w) + var(--puzzle-gap));
    width: var(--puzzle-right-w);
    height: calc((100% - var(--puzzle-gap)) / 2);
    animation-delay: 8s;
}

@keyframes carwashGalleryLift {
    0%,
    66%,
    100% {
        transform: translate3d(0, 0, 0);
        border-color: rgba(255, 255, 255, 0.72);
        box-shadow:
            0 24px 46px rgba(var(--abozor-blue-rgb), 0.14),
            0 1px 0 rgba(255, 255, 255, 0.82) inset;
    }

    12%,
    28% {
        transform: translate3d(0, -8px, 0);
        border-color: rgba(255, 255, 255, 0.94);
        box-shadow:
            0 34px 64px rgba(var(--abozor-blue-rgb), 0.22),
            0 1px 0 rgba(255, 255, 255, 0.9) inset;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carwash-hero-gallery img,
    .carwash-hero-gallery > .no-photo-placeholder {
        animation: none;
    }

    .carwash-hero-gallery > :first-child {
        left: 0;
        top: 0;
        width: var(--puzzle-left-w);
        height: 100%;
    }

    .carwash-hero-gallery > :nth-child(2) {
        left: calc(var(--puzzle-left-w) + var(--puzzle-gap));
        top: 0;
        width: var(--puzzle-right-w);
        height: calc((100% - var(--puzzle-gap)) / 2);
    }

    .carwash-hero-gallery > :nth-child(3) {
        left: calc(var(--puzzle-left-w) + var(--puzzle-gap));
        top: calc((100% + var(--puzzle-gap)) / 2);
        width: var(--puzzle-right-w);
        height: calc((100% - var(--puzzle-gap)) / 2);
    }
}

.carwash-formats {
    margin-top: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.carwash-map-card {
    margin-top: 36px;
    padding: clamp(28px, 3vw, 42px);
    border: 1px solid #dce5f1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(var(--abozor-blue-rgb), 0.08);
}

.carwash-map-card,
.carwash-map-card * {
    box-sizing: border-box;
}

.carwash-section-head {
    text-align: center;
}

.carwash-section-head h2 {
    color: var(--abozor-blue);
    font-size: clamp(28px, 3vw, 44px);
}

.carwash-section-head p {
    margin: 10px auto 0;
    max-width: 720px;
    color: #536173;
    font-size: 16px;
    line-height: 1.45;
}

.carwash-section-head .carwash-format-subtitle {
    display: block;
    margin: 10px auto 0;
    max-width: 720px;
    color: #2f3f56;
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
}

.carwash-format-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.carwash-format-card {
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, 0.72);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(var(--abozor-blue-rgb), 0.07);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.carwash-format-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--abozor-blue-rgb), 0.18);
    box-shadow: 0 26px 54px rgba(var(--abozor-blue-rgb), 0.11);
}

.carwash-format-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #eef2f7;
}

.carwash-format-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    height: 36%;
    background: linear-gradient(180deg, rgba(var(--abozor-blue-rgb), 0) 0%, rgba(var(--abozor-blue-rgb), 0.52) 100%);
    pointer-events: none;
}

.carwash-format-image.is-no-photo::after,
.carwash-format-image:has(.carwash-format-no-photo)::after {
    display: none;
}

.carwash-format-carousel {
    position: absolute;
    inset: 0;
}

.carwash-format-carousel img,
.carwash-format-carousel > .no-photo-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: carwashFormatCarousel 12s ease-in-out infinite;
    transition: transform 0.35s ease;
}

.carwash-format-carousel > .no-photo-placeholder {
    display: flex;
    opacity: 1;
    animation: none;
}

.carwash-format-carousel img:nth-child(1) {
    animation-delay: 0s;
}

.carwash-format-carousel img:nth-child(2) {
    animation-delay: 4s;
}

.carwash-format-carousel img:nth-child(3) {
    animation-delay: 8s;
}

.carwash-format-card:hover .carwash-format-image img {
    transform: scale(1.04);
}

@keyframes carwashFormatCarousel {
    0%,
    30% {
        opacity: 1;
    }

    36%,
    94% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .carwash-format-carousel img {
        animation: none;
        opacity: 0;
    }

    .carwash-format-carousel img:first-child {
        opacity: 1;
    }
}

.carwash-format-image > span {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.62);
    color: var(--abozor-blue);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(var(--abozor-blue-rgb), 0.16);
    backdrop-filter: blur(12px);
}

.carwash-format-carousel > .no-photo-placeholder {
    background: linear-gradient(180deg, #f4f8fc 0%, #f4f8fc 72%, rgba(var(--abozor-blue-rgb), 0.18) 88%, rgba(var(--abozor-blue-rgb), 0.5) 100%);
    color: #1f2937;
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
}

.carwash-format-body {
    padding: 22px 22px 24px;
}

.carwash-format-body h3 {
    margin: 0;
    color: var(--abozor-blue);
    font-size: 22px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.carwash-format-body strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin-top: 12px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--abozor-blue);
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
}

.carwash-format-body strong.carwash-format-icon-pill {
    width: 44px;
    padding: 0;
}

.carwash-format-icon-pill svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carwash-format-body p {
    margin: 14px 0 0;
    color: #344255;
    font-size: 15px;
    line-height: 1.5;
}

.carwash-format-nowrap {
    white-space: nowrap;
}

.carwash-format-body small {
    display: block;
    margin-top: 12px;
    color: var(--abozor-blue);
    font-size: 15px;
    font-weight: 600;
}

.carwash-format-body a {
    width: 100%;
    margin-top: 18px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid #d7e1ec;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--abozor-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carwash-format-link-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.carwash-format-body a:hover {
    border-color: var(--abozor-blue);
    background: var(--abozor-blue);
    color: #ffffff;
}

.carwash-format-body a:hover .carwash-format-link-icon {
    transform: translateX(3px);
}


.carwash-map-head {
    margin-bottom: 24px;
}

.carwash-tabs {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.carwash-tabs button {
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid #d8e1ec;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #2f3b4d;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.carwash-tabs button:hover {
    transform: translateY(-1px);
    border-color: var(--abozor-blue);
}

.carwash-tabs .active {
    border-color: var(--abozor-blue);
    background: var(--abozor-blue);
    color: #ffffff;
}

.carwash-map-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: stretch;
    height: 520px;
    min-height: 0;
}

.carwash-branches {
    min-height: 0;
    max-height: none;
    padding-right: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    grid-auto-rows: max-content;
    gap: 16px;
}

.carwash-branch-group {
    padding: 16px;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #f8fafc;
}

.carwash-branches.is-filtered {
    overflow-y: auto;
}

.carwash-branches.is-filtered .carwash-branch-group:not([hidden]) {
    display: flex;
    flex-direction: column;
}

.carwash-branch-group[hidden],
.carwash-map-visual > i[hidden] {
    display: none;
}

.carwash-branch-group h3 {
    margin: 0 0 10px;
    color: var(--abozor-blue);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.carwash-branch-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.carwash-branches.is-filtered .carwash-branch-list {
    flex: 0 0 auto;
}

.carwash-branch-list > a,
.carwash-branch-list > .carwash-branch-item {
    min-height: 132px;
    padding: 0;
    border: 1px solid #dbe4ef;
    border-radius: 12px;
    background: #ffffff;
    color: var(--abozor-blue);
    text-decoration: none;
    display: grid;
    grid-template-rows: 72px 1fr;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.carwash-branches.is-filtered .carwash-branch-list > a,
.carwash-branches.is-filtered .carwash-branch-list > .carwash-branch-item {
    min-height: 132px;
}

.carwash-branch-list > a:hover,
.carwash-branch-list > .carwash-branch-item:hover {
    transform: translateY(-2px);
    border-color: var(--abozor-blue);
}

.carwash-branch-list > a.is-active,
.carwash-branch-list > .carwash-branch-item.is-active {
    border-color: var(--abozor-blue);
    box-shadow: 0 0 0 2px rgba(var(--abozor-blue-rgb), 0.12);
}

.carwash-branch-list img,
.carwash-branch-list .carwash-branch-no-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.carwash-branch-list .carwash-branch-no-photo {
    display: flex;
    min-height: 74px;
}

.carwash-branch-copy {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--abozor-blue);
}

.carwash-branch-list strong {
    font-size: 14px;
    font-weight: 600;
}

.carwash-branch-copy > span {
    color: #5b6677;
    font-size: 12px;
    line-height: 1.3;
}

.carwash-map-visual {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid #d5dfeb;
    border-radius: 20px;
    background: #eef3f8;
}

.carwash-clean-map {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.24)),
        radial-gradient(circle at 22% 20%, rgba(37, 99, 235, 0.12), transparent 28%),
        radial-gradient(circle at 76% 70%, rgba(21, 154, 91, 0.12), transparent 28%),
        #eef3f8;
}

.carwash-clean-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.18) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: 0.32;
}

.carwash-clean-pin-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.carwash-clean-pin {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid #ffffff;
    border-radius: 50% 50% 50% 5px;
    background: #2563eb;
    box-shadow: 0 14px 24px rgba(var(--abozor-blue-rgb), 0.24);
    color: #0f172a;
    cursor: pointer;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.carwash-clean-pin::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #ffffff;
}

.carwash-clean-pin span {
    position: absolute;
    left: 24px;
    top: 50%;
    min-width: max-content;
    max-width: 180px;
    padding: 5px 8px;
    border: 1px solid #dce5ef;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(var(--abozor-blue-rgb), 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) rotate(-45deg) translateX(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.carwash-clean-pin:hover,
.carwash-clean-pin.is-active {
    z-index: 4;
    filter: saturate(1.08);
    transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
    box-shadow: 0 18px 30px rgba(var(--abozor-blue-rgb), 0.32);
}

.carwash-clean-pin:hover span,
.carwash-clean-pin.is-active span {
    opacity: 1;
    transform: translateY(-50%) rotate(-45deg) translateX(0);
}

.carwash-clean-pin.pin-tunnel {
    background: #2563eb;
}

.carwash-clean-pin.pin-portal {
    background: #159a5b;
}

.carwash-clean-pin.pin-self {
    background: #dc2626;
}

.carwash-clean-pin[hidden] {
    display: none;
}

.yandex-map {
    width: 100%;
    height: 100%;
    min-height: inherit;
    background: #eef3f8;
}

.carwash-map-visual .yandex-map {
    position: absolute;
    inset: 0;
    z-index: 4;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.25s ease;
}

.locations-map .yandex-map {
    position: absolute;
    inset: 0;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.carwash-map-visual.is-yandex-ready .yandex-map,
.locations-map.is-yandex-ready .yandex-map {
    opacity: 1;
    pointer-events: auto;
}

.carwash-map-visual.is-yandex-error .yandex-map {
    opacity: 0;
    pointer-events: none;
}

.carwash-map-visual.is-yandex-ready > .carwash-map-road,
.carwash-map-visual.is-yandex-ready > i,
.carwash-map-visual.is-yandex-ready > b,
.carwash-map-visual.is-yandex-ready > .carwash-map-legend {
    display: none;
}

.carwash-map-visual > .carwash-map-road,
.carwash-map-visual > i,
.carwash-map-visual > b,
.carwash-map-visual > .carwash-map-legend {
    display: none !important;
}

.yandex-map-fallback {
    position: absolute;
    inset: 20px;
    z-index: 3;
    border: 1px dashed #c8d3e1;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.88);
    color: var(--abozor-blue);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    pointer-events: none;
}

.carwash-map-visual.is-yandex-error .yandex-map-fallback,
.locations-map.is-yandex-error .yandex-map-fallback {
    opacity: 1;
}

.carwash-map-visual.is-yandex-error > .carwash-map-road,
.carwash-map-visual.is-yandex-error > i,
.carwash-map-visual.is-yandex-error > b {
    opacity: 0.08;
}

.carwash-map-visual.is-yandex-ready .yandex-map-fallback,
.locations-map.is-yandex-ready .yandex-map-fallback {
    display: none;
}

.yandex-balloon {
    min-width: 190px;
    color: var(--abozor-blue);
    font-family: var(--font-stack);
}

.yandex-balloon p {
    margin: 0 0 8px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.35;
}

.yandex-balloon a {
    color: var(--abozor-blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.abozor-map-balloon {
    position: absolute;
    width: 286px;
    max-width: calc(100vw - 32px);
    border: 1px solid rgba(203, 213, 225, 0.82);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 24px 58px rgba(var(--abozor-blue-rgb), 0.2),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    color: var(--abozor-blue);
    font-family: var(--font-stack);
    transform-origin: center bottom;
    animation: mapBalloonIn 0.18s ease-out;
}

.abozor-map-balloon__content {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
}

.abozor-map-balloon__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 50%;
    background: rgba(248, 250, 252, 0.92);
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.abozor-map-balloon__close:hover {
    background: var(--abozor-blue);
    color: #ffffff;
    transform: rotate(90deg);
}

.abozor-map-balloon__close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.abozor-map-card {
    --balloon-accent: var(--abozor-blue);
    display: grid;
    gap: 8px;
    padding: 18px 18px 16px;
}

.abozor-map-card--portal {
    --balloon-accent: #159a5b;
}

.abozor-map-card--tunnel {
    --balloon-accent: #2563eb;
}

.abozor-map-card--self {
    --balloon-accent: #dc2626;
}

.abozor-map-card--service {
    --balloon-accent: #2563eb;
}

.abozor-map-card h3 {
    margin: 0;
    padding-right: 44px;
    color: var(--abozor-blue);
    font-size: 20px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.abozor-map-card p {
    margin: 0;
    color: #5b6677;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.abozor-map-card a {
    min-height: 40px;
    margin-top: 4px;
    border-radius: 12px;
    background: var(--balloon-accent);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 26px color-mix(in srgb, var(--balloon-accent) 24%, transparent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abozor-map-card a:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px color-mix(in srgb, var(--balloon-accent) 30%, transparent);
}

@keyframes mapBalloonIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 520px) {
    .abozor-map-balloon {
        width: 270px;
    }

    .abozor-map-card {
        padding: 16px;
        gap: 7px;
    }

    .abozor-map-card h3 {
        font-size: 18px;
    }
}

.carwash-map-road {
    position: absolute;
    border-radius: 999px;
    background: rgba(218, 168, 92, 0.36);
    pointer-events: none;
}

.carwash-map-road.road-a {
    left: -8%;
    top: 44%;
    width: 116%;
    height: 18px;
    transform: rotate(-16deg);
}

.carwash-map-road.road-b {
    left: 18%;
    top: -12%;
    width: 16px;
    height: 124%;
    transform: rotate(24deg);
}

.carwash-map-road.road-c {
    right: 8%;
    top: -8%;
    width: 14px;
    height: 118%;
    transform: rotate(-28deg);
}

.carwash-map-visual > i {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 3px solid #ffffff;
    border-radius: 50% 50% 50% 4px;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 10px 18px rgba(var(--abozor-blue-rgb), 0.22);
}

.carwash-map-visual > i::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.pin-tunnel {
    background: #2563eb;
}

.pin-portal {
    background: #159a5b;
}

.pin-self {
    background: #dc2626;
}

.carwash-map-visual b {
    position: absolute;
    left: 50%;
    top: 52%;
    z-index: 1;
    color: rgba(var(--abozor-blue-rgb), 0.72);
    font-size: 22px;
    font-weight: 600;
    transform: translate(-50%, -50%);
}

.carwash-map-legend {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    padding: 10px 12px;
    border: 1px solid #dce5ef;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 12px 26px rgba(var(--abozor-blue-rgb), 0.12);
}

.carwash-map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--abozor-blue);
    font-size: 12px;
    font-weight: 600;
}

.carwash-map-legend i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.carwash-video-showcase {
    max-width: var(--content-shell-max);
    margin: 36px auto 0;
}

.carwash-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
}

.carwash-video-card {
    position: relative;
    min-height: 0;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 24px;
    display: block;
    background: var(--abozor-blue);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(var(--abozor-blue-rgb), 0.12);
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.carwash-video-card::after {
    content: "";
    position: absolute;
    inset: 62% 0 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(var(--abozor-blue-rgb), 0) 0%,
        rgba(var(--abozor-blue-rgb), 0.58) 52%,
        rgba(var(--abozor-blue-rgb), 0.9) 100%
    );
}

.carwash-video-card:hover {
    transform: translateY(-4px);
    border-color: #b8c5d6;
    box-shadow: 0 24px 50px rgba(var(--abozor-blue-rgb), 0.17);
}

.carwash-video-card img,
.carwash-video-card .carwash-video-no-photo,
.carwash-video-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.carwash-video-card .carwash-video-no-photo {
    display: flex;
}

.carwash-video-poster {
    z-index: 0;
}

.carwash-video-preview {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background: var(--abozor-blue);
    transition: opacity 0.28s ease, transform 0.35s ease;
}

.carwash-video-card.is-preview-active .carwash-video-preview {
    opacity: 1;
}

.carwash-video-card--video-only .carwash-video-preview {
    opacity: 1;
}

.carwash-video-card.is-preview-active .carwash-video-poster {
    opacity: 0;
}

.carwash-video-card:hover img,
.carwash-video-card:hover .carwash-video-no-photo,
.carwash-video-card:hover .carwash-video-preview {
    transform: scale(1.04);
}

.carwash-video-card[aria-disabled="true"] {
    cursor: default;
}

.carwash-video-card[aria-disabled="true"] .carwash-video-play {
    display: none;
}

.carwash-video-play {
    position: absolute;
    left: 50%;
    top: 44%;
    z-index: 2;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--abozor-blue-rgb), 0.46);
    color: #ffffff;
    transform: translate(-50%, -50%);
    box-shadow: 0 14px 30px rgba(var(--abozor-blue-rgb), 0.18);
    backdrop-filter: blur(8px);
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.carwash-video-play:hover,
.carwash-video-play:focus-visible {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(var(--abozor-blue-rgb), 0.58);
    transform: translate(-50%, -50%) scale(1.04);
}

.carwash-video-play svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.carwash-video-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    gap: 5px;
}

.carwash-video-caption strong {
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.08;
    font-weight: 600 !important;
    letter-spacing: 0;
}

.carwash-video-caption small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 600 !important;
}

.carwash-video-embed {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.carwash-video-embed.is-instagram {
    background: #ffffff;
    color: var(--abozor-blue);
}

.carwash-video-embed iframe,
.carwash-video-embed video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.carwash-video-embed video {
    object-fit: cover;
    background: #000000;
}

.carwash-video-embed .instagram-media {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: #ffffff !important;
}

.carwash-video-loading,
.carwash-video-fallback {
    position: absolute;
    inset: 24px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--abozor-blue);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.carwash-video-embed:not(.is-loading) .carwash-video-loading {
    display: none;
}

.carwash-video-card.is-playing::after,
.carwash-video-card.is-playing .carwash-video-play,
.carwash-video-card.is-playing .carwash-video-caption {
    opacity: 0;
    pointer-events: none;
}

.carwash-app-cta {
    --carwash-cashback-bg: url("assets/carwash_cashback_pattern.png");
    margin-top: 36px;
    padding: 42px 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(215, 25, 32, 0.02), rgba(169, 13, 18, 0.1)),
        var(--carwash-cashback-bg) center / cover no-repeat,
        #D71920;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 24px 54px rgba(215, 25, 32, 0.22);
    user-select: none;
    -webkit-user-select: none;
}

.carwash-app-cta h2 {
    max-width: 980px;
    margin-inline: auto;
    color: #ffffff;
    font-size: clamp(28px, 2.55vw, 40px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.carwash-app-cta-title-line {
    display: block;
    white-space: nowrap;
}

.carwash-app-cta-percent {
    color: #ffd43b;
}

.carwash-app-cta p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    font-weight: 600;
}

.carwash-store-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.carwash-store-button {
    min-height: 58px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 12px;
    background: rgba(151, 12, 18, 0.92);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 16px 28px rgba(93, 4, 9, 0.24);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.carwash-store-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(122, 8, 14, 0.96);
}

.carwash-store-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    flex: 0 0 auto;
}

@media (max-width: 1120px) {
    .carwash-hero {
        grid-template-columns: 1fr;
    }

    .carwash-hero-copy {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .carwash-hero-controls {
        justify-self: start;
        width: 100%;
        max-width: 640px;
    }

    .carwash-hero-gallery {
        min-height: 520px;
    }

    .carwash-format-grid,
    .carwash-map-layout {
        grid-template-columns: 1fr;
    }

    .carwash-map-layout {
        height: auto;
    }

    .carwash-branches {
        max-height: 420px;
    }

    .carwash-map-visual {
        height: auto;
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .carwash-hero {
        gap: 14px;
    }

    .carwash-hero-copy {
        --carwash-copy-width: 100%;
        min-height: auto;
        padding: 0;
    }

    .carwash-hero h2 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .carwash-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 24px;
    }

    .carwash-stats span {
        min-height: 46px;
    }

    .carwash-hero-actions {
        align-items: stretch;
        width: 100%;
    }

    .carwash-cashback,
    .carwash-main-cta {
        width: 100%;
    }

    .carwash-hero-gallery {
        --puzzle-gap: 10px;
        --puzzle-left-w: 100%;
        --puzzle-right-w: 100%;
        min-height: 590px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .carwash-hero-gallery img,
    .carwash-hero-gallery > .no-photo-placeholder {
        position: relative;
        inset: auto !important;
        width: 100% !important;
        border-radius: 16px;
        animation: none !important;
    }

    .carwash-hero-gallery > :first-child {
        height: 280px !important;
    }

    .carwash-hero-gallery > :nth-child(2),
    .carwash-hero-gallery > :nth-child(3) {
        height: 145px !important;
    }

    .carwash-map-card {
        padding: 20px;
        border-radius: 18px;
    }

    .carwash-video-grid {
        grid-template-columns: repeat(3, minmax(210px, 1fr));
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .carwash-video-card {
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .carwash-format-image {
        height: 180px;
    }

    .carwash-branch-list {
        grid-template-columns: 1fr;
    }

    .carwash-map-legend {
        left: 14px;
        right: 14px;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 16px;
    }

    .carwash-app-cta {
        padding: 32px 18px;
        border-radius: 18px;
    }

    .carwash-store-button {
        width: 100%;
        justify-content: center;
    }
}

/* ====================
   CARWASH DETAIL PAGE
   ==================== */
.carwash-detail-section {
    background: var(--bg-main);
}

.carwash-detail-section .container {
    max-width: 1440px;
}

.carwash-detail-hero,
.carwash-detail-info-grid,
.carwash-detail-branches,
.carwash-detail-process,
.carwash-detail-banner,
.carwash-detail-app {
    max-width: var(--content-shell-max);
    margin-inline: auto;
}

.carwash-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(24px, 3vw, 42px);
    align-items: stretch;
}

.carwash-detail-copy {
    min-height: clamp(500px, 39vw, 610px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.carwash-detail-back {
    width: fit-content;
    color: var(--abozor-blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.carwash-detail-back:hover {
    color: var(--abozor-blue-surface-hover);
}

.carwash-detail-kicker {
    margin: 0;
    color: var(--abozor-blue);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

.carwash-detail-copy h1 {
    max-width: 820px;
    margin: 0;
    color: var(--abozor-blue);
    font-size: clamp(42px, 4.4vw, 66px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: 0;
}

.carwash-detail-lead,
.carwash-detail-explain p,
.carwash-detail-process-copy p,
.carwash-detail-app p {
    margin: 0;
    color: #263445;
    font-size: 17px;
    line-height: 1.62;
}

.carwash-detail-lead {
    max-width: 640px;
}

.carwash-detail-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
}

.carwash-detail-stats span {
    min-height: 84px;
    padding: 14px 16px;
    border: 1px solid #dbe6f2;
    border-radius: 18px;
    background: #ffffff;
    color: #526173;
    font-size: 14px;
    line-height: 1.35;
    box-shadow: 0 18px 42px rgba(var(--abozor-blue-rgb), 0.08);
}

.carwash-detail-stats strong {
    display: block;
    margin-bottom: 3px;
    color: var(--abozor-blue);
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
}

.carwash-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.carwash-detail-primary,
.carwash-detail-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.carwash-detail-primary {
    background: var(--abozor-blue);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(var(--abozor-blue-rgb), 0.16);
}

.carwash-detail-secondary {
    border: 1px solid #d4e0ee;
    background: #ffffff;
    color: var(--abozor-blue);
}

.carwash-detail-primary:hover {
    background: var(--abozor-blue);
    box-shadow: 0 12px 24px rgba(var(--abozor-blue-rgb), 0.16);
}

.carwash-detail-secondary:hover {
    background: #eef6ff;
}

.carwash-detail-media,
.carwash-detail-process-media {
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 18px;
    background: #e8eef5;
    box-shadow: none;
}

.carwash-detail-media {
    display: flex;
    min-height: clamp(500px, 39vw, 610px);
}

.carwash-detail-media img,
.carwash-detail-process-media img,
.carwash-detail-media .no-photo-placeholder,
.carwash-detail-process-media .no-photo-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.carwash-detail-media img,
.carwash-detail-media .no-photo-placeholder {
    flex: 1 1 auto;
    min-height: inherit;
}

.carwash-detail-media .no-photo-placeholder,
.carwash-detail-process-media .no-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8eef5;
    color: #6b7788;
    font-size: 18px;
    font-weight: 600;
}

.carwash-detail-info-grid {
    position: relative;
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.86fr);
    gap: clamp(30px, 4vw, 58px);
    align-items: center;
    overflow: hidden;
    padding: clamp(30px, 3.4vw, 44px) clamp(34px, 4vw, 56px);
    border: 1px solid #d8e5f2;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(var(--abozor-blue-rgb), 0.06);
}

.carwash-detail-info-grid::before {
    content: "";
    position: absolute;
    inset: 28px auto 28px 0;
    display: block;
    width: 5px;
    border-radius: 0 999px 999px 0;
    background: var(--abozor-blue);
}

.carwash-detail-explain,
.carwash-detail-benefits,
.carwash-detail-process,
.carwash-detail-app {
    border: 1px solid #dce5f1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(var(--abozor-blue-rgb), 0.05);
}

.carwash-detail-explain,
.carwash-detail-benefits {
    position: relative;
    z-index: 1;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.carwash-detail-explain h2,
.carwash-detail-benefits h3,
.carwash-detail-section-head h3,
.carwash-detail-process-copy h3,
.carwash-detail-app h3 {
    margin: 0;
    color: var(--abozor-blue);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.carwash-detail-explain h2 {
    max-width: 620px;
    margin-bottom: 16px;
    color: #0f172a;
    font-size: clamp(30px, 2.35vw, 38px);
    line-height: 1.1;
}

.carwash-detail-benefits h3 {
    color: #0f172a;
    max-width: 520px;
}

.carwash-detail-benefits h3,
.carwash-detail-section-head h3,
.carwash-detail-process-copy h3,
.carwash-detail-app h3 {
    font-size: clamp(23px, 1.95vw, 30px);
}

.carwash-detail-benefits ul {
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 0;
    list-style: none;
}

.carwash-detail-benefits li {
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 9px 0 9px 34px;
    border-top: 1px solid #e7edf5;
    color: #142033;
    font-size: 15.5px;
    line-height: 1.35;
}

.carwash-detail-benefits li:first-child {
    border-top: 0;
}

.carwash-detail-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(16, 163, 94, 0.12);
    color: #0a8f55;
    font-size: 12px;
    font-weight: 700;
    transform: translateY(-50%);
}

.carwash-detail-branches {
    margin-top: 36px;
    padding: clamp(24px, 2.8vw, 40px);
}

.carwash-detail-section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.carwash-detail-branch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 20px;
    align-items: stretch;
}

.carwash-detail-branch-grid {
    display: grid;
    gap: 14px;
}

.carwash-detail-branch-card {
    min-height: 122px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border: 1px solid #dce5f1;
    border-radius: 18px;
    background: #f8fbff;
}

.carwash-detail-branch-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--abozor-blue);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.carwash-detail-branch-card h4 {
    margin: 0;
    color: #0f172a;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
}

.carwash-detail-branch-card p {
    margin: 8px 0 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.45;
}

.carwash-detail-branch-card small {
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
}

.carwash-detail-branch-map {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(var(--abozor-blue-rgb), 0.08), rgba(var(--abozor-blue-rgb), 0.2)),
        #eef5fb;
}

.carwash-detail-branch-map::before,
.carwash-detail-branch-map::after {
    content: "";
    position: absolute;
    inset: 22%;
    border: 12px solid rgba(var(--abozor-blue-rgb), 0.12);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-18deg);
}

.carwash-detail-branch-map::after {
    inset: 42% 12% 18% 28%;
    border-width: 9px;
    transform: rotate(24deg);
}

.carwash-detail-branch-map span {
    position: absolute;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--abozor-blue);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(var(--abozor-blue-rgb), 0.14);
}

.carwash-detail-branch-map span::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 7px;
    border-radius: 50%;
    background: #D71920;
}

.carwash-detail-branch-map span:nth-child(1) {
    left: 12%;
    top: 20%;
}

.carwash-detail-branch-map span:nth-child(2) {
    right: 11%;
    top: 44%;
}

.carwash-detail-branch-map span:nth-child(3) {
    left: 22%;
    bottom: 16%;
}

.carwash-detail-process {
    margin-top: 36px;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
    gap: clamp(34px, 4vw, 58px);
    align-items: stretch;
    padding: clamp(30px, 3.2vw, 44px) clamp(34px, 4vw, 56px);
}

.carwash-detail-process.is-text-only {
    grid-template-columns: 1fr;
}

.carwash-detail-process-copy {
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.carwash-detail-process-copy h3 {
    max-width: 720px;
    color: #0f172a;
    text-wrap: balance;
}

.carwash-detail-process-copy p {
    max-width: 760px;
}

.carwash-detail-steps {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid #e5edf6;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.carwash-detail-steps span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
}

.carwash-detail-steps b {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--abozor-blue);
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.carwash-detail-process-gallery {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.carwash-detail-process-shot {
    min-width: 0;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    border: 1px solid #dce5f1;
    border-radius: 14px;
    background: #e8eef5;
}

.carwash-detail-process-shot img,
.carwash-detail-process-shot .no-photo-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.carwash-detail-process-shot .no-photo-placeholder {
    display: flex;
    min-height: 0;
    background: #e8eef5;
    color: #6b7788;
    font-size: 15px;
    font-weight: 600;
}

.carwash-detail-banner {
    position: relative;
    margin-top: 36px;
    min-height: 500px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(360px, 0.76fr) minmax(420px, 1.24fr);
    gap: clamp(22px, 3vw, 42px);
    align-items: stretch;
    padding: clamp(38px, 4.2vw, 64px);
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(5, 24, 44, 0.98) 0%, rgba(6, 31, 56, 0.94) 45%, rgba(7, 39, 70, 0.88) 100%),
        #082744;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(var(--abozor-blue-rgb), 0.14);
}

.carwash-detail-banner:not(.has-image) {
    min-height: 420px;
    grid-template-columns: 1fr;
}

.carwash-detail-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.09), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 46%);
    pointer-events: none;
}

.carwash-detail-banner-copy,
.carwash-detail-banner-media {
    position: relative;
    z-index: 1;
}

.carwash-detail-banner-copy {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carwash-detail-banner:not(.has-image) .carwash-detail-banner-copy {
    max-width: 900px;
}

.carwash-detail-banner h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 3.15vw, 52px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0;
}

.carwash-detail-banner p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.5;
}

.carwash-detail-banner ul {
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.carwash-detail-banner li {
    position: relative;
    padding-left: 24px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.38;
    font-weight: 600;
}

.carwash-detail-banner li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #7dd3a7;
    font-weight: 700;
}

.carwash-detail-banner-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.carwash-detail-banner-actions a {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}

.carwash-detail-banner-actions a:first-child {
    background: #D71920;
    border: 1px solid #D71920;
}

.carwash-detail-banner-actions a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.06);
}

.carwash-detail-banner-media {
    min-height: 100%;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.carwash-detail-banner-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.carwash-detail-process-media {
    min-height: 340px;
    border-radius: 16px;
}

.carwash-detail-app {
    --carwash-cashback-bg: url("assets/carwash_cashback_pattern.png");
    margin-top: 36px;
    padding: clamp(28px, 3vw, 42px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        linear-gradient(90deg, rgba(var(--abozor-blue-rgb), 0.92), rgba(var(--abozor-blue-rgb), 0.76)),
        var(--carwash-cashback-bg) center / cover no-repeat,
        var(--abozor-blue);
    color: #ffffff;
}

.carwash-detail-app .carwash-detail-kicker,
.carwash-detail-app h3,
.carwash-detail-app p {
    color: #ffffff;
}

.carwash-detail-app p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
}

.carwash-detail-app .carwash-store-row {
    margin: 0;
    flex: 0 0 auto;
}

@media (max-width: 1100px) {
    .carwash-detail-hero,
    .carwash-detail-info-grid,
    .carwash-detail-branch-layout,
    .carwash-detail-process,
    .carwash-detail-banner,
    .carwash-detail-app {
        grid-template-columns: 1fr;
    }

    .carwash-detail-copy,
    .carwash-detail-media {
        min-height: auto;
    }

    .carwash-detail-media {
        aspect-ratio: 16 / 10;
    }

    .carwash-detail-branch-map,
    .carwash-detail-process-media,
    .carwash-detail-banner-media {
        min-height: 310px;
    }

    .carwash-detail-app {
        display: grid;
        justify-items: start;
    }

    .carwash-detail-info-grid {
        gap: 30px;
    }

    .carwash-detail-info-grid::before {
        display: none;
    }
}

@media (max-width: 700px) {
    .carwash-detail-copy h1 {
        font-size: 36px;
        line-height: 1.05;
    }

    .carwash-detail-stats {
        grid-template-columns: 1fr;
    }

    .carwash-detail-actions,
    .carwash-detail-primary,
    .carwash-detail-secondary,
    .carwash-detail-app .carwash-store-row {
        width: 100%;
    }

    .carwash-detail-primary,
    .carwash-detail-secondary {
        padding-inline: 16px;
        text-align: center;
    }

    .carwash-detail-media,
    .carwash-detail-explain,
    .carwash-detail-benefits,
    .carwash-detail-info-grid,
    .carwash-detail-branches,
    .carwash-detail-process,
    .carwash-detail-banner,
    .carwash-detail-app {
        border-radius: 18px;
    }

    .carwash-detail-info-grid {
        padding: 24px 20px;
    }

    .carwash-detail-process {
        padding: 24px 20px;
    }

    .carwash-detail-banner {
        padding: 28px 20px;
    }

    .carwash-detail-banner-actions,
    .carwash-detail-banner-actions a {
        width: 100%;
    }

    .carwash-detail-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .carwash-detail-process-gallery {
        grid-template-columns: 1fr;
    }

    .carwash-detail-branch-card {
        grid-template-columns: 1fr;
    }
}

.carwash-detail-section .carwash-detail-hero {
    padding: clamp(24px, 3vw, 42px);
    grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
    align-items: center;
    gap: clamp(30px, 4vw, 56px);
    border: 1px solid #dce5f1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(var(--abozor-blue-rgb), 0.08);
}

.carwash-detail-section .carwash-detail-copy {
    min-height: auto;
    max-width: 620px;
    gap: 20px;
    padding-block: 10px;
}

.carwash-detail-section .carwash-detail-copy h1 {
    max-width: 620px;
    color: #0f172a;
    font-size: clamp(32px, 2.75vw, 44px);
    line-height: 1.12;
    font-weight: 700;
}

.carwash-detail-section .carwash-detail-copy h1 span {
    display: block;
    text-wrap: balance;
}

.carwash-detail-section .carwash-detail-copy h1 span + span {
    margin-top: 6px;
    font-size: 0.9em;
    font-weight: 650;
}

.carwash-detail-section .carwash-detail-lead {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.7;
}

.carwash-detail-section .carwash-detail-actions {
    margin-top: 8px;
}

.carwash-detail-section .carwash-detail-media {
    min-height: 360px;
    border-radius: 16px;
    box-shadow: none;
}

.carwash-detail-section .carwash-detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.carwash-detail-section .carwash-detail-stats span {
    width: auto;
    min-height: 0;
    padding: 9px 14px;
    border-radius: 999px;
    box-shadow: none;
    color: #1f2937;
    font-size: 14px;
}

.carwash-detail-section .carwash-detail-stats strong {
    display: inline;
    margin: 0 4px 0 0;
    font-size: inherit;
    line-height: inherit;
}

.carwash-detail-map-card {
    margin-top: 36px;
    padding-top: clamp(18px, 2vw, 26px);
}

.carwash-detail-map-card .carwash-map-head {
    align-items: end;
}

.carwash-detail-map-card .carwash-map-layout {
    height: 520px;
    align-items: stretch;
}

.carwash-detail-map-card .carwash-detail-branches-list {
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
}

.carwash-detail-map-card .carwash-detail-branches-list h3 {
    margin: 0;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.carwash-detail-map-card .carwash-branch-list {
    height: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 12px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.carwash-detail-map-card--many .carwash-map-layout {
    height: 680px;
}

.carwash-detail-map-card--many .carwash-branch-list {
    grid-template-rows: none;
    align-content: start;
    gap: 10px;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
}

.carwash-detail-map-card .carwash-branch-list > a,
.carwash-detail-map-card .carwash-branch-list > .carwash-branch-item {
    min-height: 0;
    height: 100%;
    grid-template-columns: minmax(190px, 38%) 1fr;
    grid-template-rows: 1fr;
    border: 1px solid #e1e9f3;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    overflow: hidden;
}

.carwash-detail-map-card--many .carwash-branch-list > a,
.carwash-detail-map-card--many .carwash-branch-list > .carwash-branch-item {
    min-height: 144px;
    height: auto;
    grid-template-columns: minmax(132px, 30%) minmax(0, 1fr);
    background: #ffffff;
}

.carwash-detail-map-card .carwash-branch-list > * + * {
    border-top: 0;
}

.carwash-detail-map-card .carwash-branch-list img,
.carwash-detail-map-card .carwash-branch-list .carwash-branch-no-photo {
    border-radius: 14px;
    overflow: hidden;
}

.carwash-detail-map-card .carwash-branches.is-filtered .carwash-branch-list > a,
.carwash-detail-map-card .carwash-branches.is-filtered .carwash-branch-list > .carwash-branch-item {
    min-height: 0;
}

.carwash-detail-map-card .carwash-branch-copy {
    justify-content: center;
    gap: 6px;
    padding-block: 16px;
}

.carwash-detail-map-card--many .carwash-branch-copy {
    min-width: 0;
    padding: 14px 12px;
    justify-content: center;
}

.carwash-detail-map-card--many .carwash-branch-list strong,
.carwash-detail-map-card--many .carwash-branch-copy > span,
.carwash-detail-map-card--many .carwash-branch-copy small {
    overflow-wrap: anywhere;
}

.carwash-detail-map-card--many .carwash-branch-list strong {
    font-size: 15px;
    line-height: 1.2;
}

.carwash-detail-map-card--many .carwash-branch-copy > span {
    font-size: 13px;
}

.carwash-detail-map-card .carwash-branch-copy small {
    color: #0f172a;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.carwash-branch-actions {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.carwash-detail-map-card .carwash-branch-actions {
    flex-wrap: nowrap;
    gap: 6px;
}

.carwash-detail-map-card--many .carwash-branch-actions {
    flex-wrap: wrap;
    margin-top: 8px;
    gap: 7px;
}

.carwash-branch-status {
    width: fit-content;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

.carwash-detail-map-card .carwash-branch-status {
    flex: 0 0 auto;
    padding-inline: 8px;
    font-size: 11px;
    white-space: nowrap;
}

.carwash-detail-map-card--many .carwash-branch-status {
    flex: 0 1 auto;
    max-width: 100%;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
}

.carwash-branch-status.is-open {
    background: rgba(16, 163, 94, 0.12);
    color: #087443;
}

.carwash-branch-status.is-closed {
    background: rgba(148, 163, 184, 0.16);
    color: #64748b;
}

.carwash-route-link {
    width: fit-content;
    min-height: 32px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4e0ee;
    border-radius: 999px;
    background: #ffffff;
    color: var(--abozor-blue);
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
}

.carwash-detail-map-card .carwash-route-link {
    flex: 0 0 auto;
    min-height: 28px;
    padding-inline: 10px;
    font-size: 12px;
    white-space: nowrap;
}

.carwash-detail-map-card--many .carwash-route-link {
    flex: 0 1 auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
}

.carwash-route-link:hover {
    border-color: var(--abozor-blue);
    background: #eef6ff;
}

.carwash-detail-app.carwash-app-cta {
    display: block;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(215, 25, 32, 0.02), rgba(169, 13, 18, 0.1)),
        var(--carwash-cashback-bg) center / cover no-repeat,
        #D71920;
}

.carwash-detail-app.carwash-app-cta h3 {
    max-width: 940px;
    margin: 6px auto 0;
    color: #ffffff;
    font-size: clamp(28px, 2.55vw, 40px);
    font-weight: 600;
    line-height: 1.12;
}

.carwash-detail-app.carwash-app-cta p {
    margin-inline: auto;
}

.carwash-detail-app.carwash-app-cta .carwash-store-row {
    margin-top: 22px;
    justify-content: center;
}

@media (max-width: 760px) {
    .carwash-detail-section .carwash-detail-hero {
        padding: 20px;
        border-radius: 18px;
    }

    .carwash-detail-section .carwash-detail-media {
        min-height: 260px;
    }

    .carwash-detail-map-card .carwash-branch-list > a,
    .carwash-detail-map-card .carwash-branch-list > .carwash-branch-item {
        grid-template-columns: minmax(145px, 38%) 1fr;
    }

    .carwash-detail-map-card .carwash-map-layout {
        height: auto;
    }

    .carwash-detail-map-card--many .carwash-branch-list {
        height: auto;
        overflow: visible;
        padding-right: 0;
    }

    .carwash-detail-map-card--many .carwash-branch-list > a,
    .carwash-detail-map-card--many .carwash-branch-list > .carwash-branch-item {
        min-height: 136px;
        grid-template-columns: minmax(112px, 32%) minmax(0, 1fr);
    }

    .carwash-detail-map-card--many .carwash-branch-copy {
        padding: 12px 10px;
    }

    .carwash-detail-map-card .carwash-detail-branches-list {
        height: auto;
    }
}

/* ====================
   BRANDS SECTION
   ==================== */
.brands-section {
    padding: 48px 0 var(--section-gap);
    background-color: var(--bg-main);
}

.brands-panel {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px 32px 28px;
    box-shadow: 0 18px 40px rgba(var(--abozor-blue-rgb), 0.06);
}

.brands-copy-outer {
    margin-bottom: 18px;
}

.brands-copy-outer {
    margin-bottom: 32px;
}

.brands-copy h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.brands-inner-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--abozor-blue);
    margin: 0 0 16px;
    line-height: 1.4;
}

.brands-inner-desc {
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    max-width: 850px;
}

.brands-grid-wrap {
    margin-top: 28px;
    padding-top: 4px;
    max-height: 280px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.brands-grid-wrap.expanded {
    max-height: 1200px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 20px 14px;
}

.brand-card {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 8px;
    border-radius: 24px;
    background: transparent;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.brand-logo {
    width: 100%;
    max-width: 140px;
    height: 56px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.brand-name {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand-logo-placeholder {
    width: 50px;
    height: 50px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #9ca3af;
}

.brands-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px auto 0;
    min-width: 150px;
    width: fit-content;
    padding: 12px 32px;
    border-radius: 999px;
    border: 1px solid #9ca3af;
    background: #ffffff;
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.brands-toggle:hover {
    border-color: #6b7280;
    background: #f9fafb;
    color: var(--abozor-blue-dark);
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .brands-panel {
        padding: 24px 20px 24px;
        border-radius: 24px;
    }

    .brands-copy-outer {
        margin-bottom: 14px;
    }

    .brands-copy h3 {
        font-size: 22px;
    }

    .brands-copy p {
        font-size: 16px;
    }

    .brands-grid-wrap {
        padding-top: 4px;
        max-height: 300px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-card {
        min-height: 88px;
    }

    .brand-mark {
        font-size: 12px;
        padding: 9px 10px;
    }
}

.brands-section {
    padding: 42px 0 34px;
    background: var(--bg-main);
}

.brands-section > .container > .brands-copy-outer,
.brands-section > .container > .brands-panel {
    display: none;
}

.brands-heading {
    width: 100%;
    max-width: var(--content-shell-max);
    margin: 0 auto 44px;
    text-align: center;
}

.brands-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(32px, 3.45vw, 50px);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.brands-heading h2 span {
    display: block;
    white-space: nowrap;
}

.brands-heading h2 .brands-heading-count {
    position: relative;
    display: inline-block;
    margin-left: 0.08em;
    min-width: 5.7em;
    overflow: visible;
    color: #16a34a;
    white-space: nowrap;
    vertical-align: baseline;
    text-align: left;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.brands-heading h2 .brands-heading-count::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.82em;
    margin-left: 0.07em;
    border-radius: 999px;
    background: #16a34a;
    transform: translateY(0.09em);
    animation: brandsCursorBlink 0.75s steps(1, end) infinite;
}

@keyframes brandsCursorBlink {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands-heading h2 .brands-heading-count {
        min-width: auto;
    }

    .brands-heading h2 .brands-heading-count::after {
        display: none;
    }
}

.brands-heading p {
    margin: 14px auto 0;
    max-width: 820px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.45;
}

.brands-showcase {
    width: 100%;
    max-width: var(--content-shell-max);
    margin: 0 auto;
}

.brand-group-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.brand-group-label span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: #ffffff;
}

.brand-group-label-official {
    color: #ffffff;
    background: #14956a;
}

.brand-group-label-official span {
    color: #14956a;
}

.brand-group-label-multi {
    margin-top: 28px;
    color: #ffffff;
    background: #9ca3af;
}

.brand-group-label-multi span {
    color: #6b7280;
}

.official-brand-grid,
.multi-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.official-brand-card,
.multi-brand-card {
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.official-brand-card {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 3px solid #14956a;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(20, 149, 106, 0.08);
}

.official-brand-card:hover,
.multi-brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(var(--abozor-blue-rgb), 0.12);
}

.brand-logo-box {
    flex: 1;
    min-height: 84px;
    padding: 18px 16px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-box img,
.multi-brand-card img {
    width: 100%;
    max-width: 124px;
    max-height: 54px;
    object-fit: contain;
    display: block;
}

.brand-wordmark,
.multi-brand-card span {
    color: #142033;
    font-size: 20px;
    line-height: 1.05;
    font-weight: 600;
    text-align: center;
}

.official-brand-badge {
    min-height: 38px;
    padding: 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14956a;
    color: #ffffff;
    font-size: clamp(11px, 0.95vw, 13px);
    font-weight: 600;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
}

.multi-brand-grid {
    gap: 14px;
}

.multi-brand-card {
    min-height: 104px;
    padding: 18px;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(var(--abozor-blue-rgb), 0.05);
}

.brands-note {
    margin: 22px auto 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
}

.brands-cta {
    width: fit-content;
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--abozor-blue);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
}

.brands-cta:hover {
    color: var(--abozor-blue-dark);
}

.brands-page-section {
    padding: 44px 0 80px;
    background: var(--bg-main);
}

.brands-page-head,
.brands-page-showcase {
    width: 100%;
    max-width: var(--content-shell-max);
    margin-inline: auto;
}

.brands-page-head {
    margin-bottom: 32px;
}

.brands-back-link {
    width: fit-content;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    color: var(--abozor-blue);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
}

.brands-back-link:hover {
    color: var(--abozor-blue-dark);
}

.brands-page-head h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(34px, 3.6vw, 54px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.brands-page-head p {
    margin: 14px 0 0;
    max-width: 880px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.5;
}

.brands-view-toggle {
    flex: 0 0 auto;
    padding: 4px;
    border: 1px solid #d5e1ee;
    border-radius: 999px;
    display: inline-flex;
    gap: 4px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(var(--abozor-blue-rgb), 0.05);
}

.brands-view-toggle button {
    min-height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #475569;
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.brands-view-toggle button.active {
    background: var(--abozor-blue);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(var(--abozor-blue-rgb), 0.18);
}

.brands-page-tools {
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brands-search-wrap {
    position: relative;
    width: 100%;
}

.brands-search-input {
    width: 100%;
    min-height: 46px;
    padding: 0 44px 0 16px;
    border: 1px solid #d5e1ee;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.2;
    outline: none;
    box-shadow: 0 10px 24px rgba(var(--abozor-blue-rgb), 0.05);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.brands-search-input:focus {
    border-color: rgba(var(--abozor-blue-rgb), 0.52);
    box-shadow: 0 0 0 4px rgba(var(--abozor-blue-rgb), 0.1);
}

.brands-search-clear {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf3f9;
    color: #475569;
    font-family: inherit;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.brands-search-clear:hover {
    background: #dfeaf5;
    color: #0f172a;
}

.brands-search-clear[hidden],
.brands-page-card[hidden],
.brands-page-empty[hidden],
.brands-pagination[hidden] {
    display: none !important;
}

.brands-page-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
    overflow: hidden;
    transition: height 0.26s ease, opacity 0.18s ease, transform 0.18s ease;
    will-change: height, opacity, transform;
}

.brands-page-grid.is-page-leaving {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.brands-page-grid.is-page-entering {
    opacity: 1;
    transform: translateY(0);
}

.brands-page-card {
    min-height: 128px;
    background: #ffffff;
    border-color: #dbe5f0;
    box-shadow: 0 10px 24px rgba(var(--abozor-blue-rgb), 0.05);
}

.brands-page-grid.is-page-entering .brands-page-card:not([hidden]) {
    animation: brandPageCardIn 0.26s ease both;
}

.brands-page-card:hover {
    border-color: rgba(var(--abozor-blue-rgb), 0.18);
}

.brands-page-card-status {
    width: fit-content;
    max-width: 100%;
    padding: 6px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    background: #9ca3af;
}

.brands-page-card-official .brands-page-card-status {
    background: #14956a;
}

.brands-page-grid.is-list {
    grid-template-columns: 1fr;
    gap: 10px;
}

.brands-page-grid.is-list .brands-page-card {
    min-height: 72px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
    gap: 18px;
    border-radius: 14px;
}

.brands-page-grid.is-list .brand-logo,
.brands-page-grid.is-list .brand-logo-placeholder {
    justify-self: center;
}

.brands-page-grid.is-list .brand-name {
    color: #0f172a;
    font-size: 16px;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
}

.brands-page-grid.is-list .brands-page-card-status {
    justify-self: end;
    white-space: nowrap;
}

.brands-page-empty {
    margin: 18px 0 0;
    padding: 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    background: #ffffff;
    color: #64748b;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
}

.brands-pagination {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.brands-pagination button,
.brands-pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d5e1ee;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #475569;
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.brands-pagination button {
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.brands-pagination button:hover {
    border-color: rgba(var(--abozor-blue-rgb), 0.38);
    color: var(--abozor-blue);
}

.brands-pagination button.active {
    border-color: var(--abozor-blue);
    background: var(--abozor-blue);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(var(--abozor-blue-rgb), 0.18);
}

.brands-pagination button:disabled {
    opacity: 0.45;
    cursor: default;
}

@keyframes brandPageCardIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brands-page-grid,
    .brands-page-grid.is-page-entering .brands-page-card:not([hidden]) {
        animation: none;
        transition: none;
    }
}

@media (max-width: 1100px) {
    .official-brand-grid,
    .multi-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .brands-section {
        padding: 34px 0 30px;
    }

    .official-brand-grid,
    .multi-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-group-label {
        align-items: flex-start;
        border-radius: 18px;
        line-height: 1.25;
    }

    .brands-heading h2 span {
        white-space: normal;
    }

    .brands-page-section {
        padding: 34px 0 56px;
    }

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

    .brands-view-toggle {
        width: 100%;
    }

    .brands-view-toggle button {
        flex: 1;
    }

    .brands-page-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .brands-search-wrap {
        width: 100%;
    }

    .brands-page-grid.is-list .brands-page-card {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }

    .brands-page-grid.is-list .brands-page-card-status {
        grid-column: 2;
        justify-self: start;
    }
}

/* ====================
   BENEFITS SECTION
   ==================== */
.benefits-section {
    padding: 38px 0 92px;
    background: var(--bg-main);
}

.benefits-head,
.locations-head {
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    margin: 0 auto 34px;
    max-width: var(--content-shell-max);
    text-align: center;
}

.benefits-head h2,
.locations-head h2 {
    margin: 0;
    color: var(--abozor-blue);
    font-size: clamp(32px, 3.45vw, 50px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.benefits-head p,
.locations-head p {
    margin: 12px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.5;
}

.benefits-stats {
    position: relative;
    isolation: isolate;
    overflow: visible;
    width: 100%;
    max-width: var(--content-shell-max);
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    display: grid;
    gap: 14px;
    background: none;
    box-shadow: none;
}

.benefits-stats::before {
    display: none;
}

.benefits-stat-row {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.benefits-stat-row + .benefits-stat-row {
    padding-top: 0;
    border-top: 0;
}

.benefits-stat-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    min-width: 0;
    min-height: 0;
    padding: 20px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    color: var(--abozor-blue);
    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease;
}

.benefits-stat-card::before {
    display: none;
}

.benefits-stat-card::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -35% -55%;
    pointer-events: none;
    background:
        linear-gradient(
            105deg,
            transparent 0%,
            transparent 34%,
            rgba(var(--abozor-blue-rgb), 0.05) 43%,
            rgba(var(--abozor-blue-rgb), 0.2) 50%,
            rgba(var(--abozor-blue-rgb), 0.08) 58%,
            transparent 68%,
            transparent 100%
        );
    opacity: 0;
    transform: translateX(-70%) skewX(-10deg);
    animation: benefitLiquidSweep 18s ease-in-out infinite;
    animation-delay: calc(var(--stat-index, 0) * 0.85s);
}

.benefits-stat-card > * {
    position: relative;
    z-index: 1;
}

.benefits-stat-card:hover {
    color: #ffffff;
    background: var(--abozor-blue);
    box-shadow: 0 14px 32px rgba(var(--abozor-blue-rgb), 0.18);
}

.benefits-stat-card:hover .benefit-stat-number,
.benefits-stat-card:hover .benefit-stat-kicker,
.benefits-stat-card:hover h3,
.benefits-stat-card:hover p {
    color: #ffffff;
}

.benefits-metric-card {
    min-height: 0;
}

.benefits-info-card {
    min-height: 0;
    padding-right: 20px;
}

.benefit-stat-head {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.benefit-stat-content {
    width: 100%;
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 10px;
    padding-top: 0;
    border-top: 0;
}

.benefit-stat-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    margin-bottom: 0;
    border: 1px solid #dbe6f2;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f8fc;
    color: var(--abozor-blue);
    box-shadow: none;
}

.benefit-stat-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-stat-number {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 1em;
    color: var(--abozor-blue);
    font-family: var(--font-stack);
    font-size: 42px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    transform-origin: center;
    will-change: transform, filter;
}

.benefit-stat-number.is-rolling {
    animation: benefitNumberRoll 0.72s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.benefits-info-card .benefit-stat-number {
    position: static;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    order: initial;
}

.benefits-metric-card .benefit-stat-number {
    font-size: 42px;
    font-weight: 700;
}

.benefit-stat-kicker {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

.benefit-stat-note {
    min-height: 14px;
    text-transform: uppercase;
}

.benefit-stat-note.is-empty {
    visibility: hidden;
}

.benefit-stat-kicker.is-empty {
    visibility: hidden;
}

.benefits-stat-card h3 {
    margin: 0;
    color: #020617;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: 0;
}

.benefits-info-card h3 {
    min-height: 0;
}

.benefits-metric-card h3 {
    min-height: 0;
    font-size: 15px;
    line-height: 1.22;
}

.benefits-stat-card p {
    margin: 0;
    color: #1f334c;
    font-size: 13px;
    line-height: 1.38;
    font-weight: 400;
}

.benefits-stat-card p span {
    display: block;
}

.benefits-info-card p {
    color: #1f334c;
    font-size: 13px;
    font-weight: 400;
    order: initial;
}

.benefits-stat-card {
    height: 100%;
    min-height: 0;
    padding: 20px;
    border: 0;
    border-radius: 10px;
    background: #075BA6;
    box-shadow: none;
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    color: #ffffff;
    perspective: none;
}

.benefits-stat-card::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -35% -55%;
    pointer-events: none;
    background:
        linear-gradient(
            105deg,
            transparent 0%,
            transparent 34%,
            rgba(255, 255, 255, 0.025) 43%,
            rgba(255, 255, 255, 0.085) 50%,
            rgba(255, 255, 255, 0.035) 58%,
            transparent 68%,
            transparent 100%
        );
    opacity: 0;
    transform: translateX(-70%) skewX(-10deg);
    animation: benefitLiquidSweep 18s ease-in-out infinite;
    animation-delay: calc(var(--stat-index, 0) * 0.85s);
}

.benefits-stat-card > * {
    position: relative;
    z-index: 1;
}

.benefits-stat-card:hover {
    background: #064F91;
    box-shadow: 0 14px 32px rgba(var(--abozor-blue-rgb), 0.14);
    color: #ffffff;
}

.benefits-info-card {
    justify-content: flex-start;
}

.benefits-metric-card {
    justify-content: flex-start;
}

.benefits-stat-card .benefit-stat-number,
.benefits-stat-card .benefit-stat-kicker,
.benefits-stat-card h3,
.benefits-stat-card p,
.benefits-stat-card:hover .benefit-stat-number,
.benefits-stat-card:hover .benefit-stat-kicker,
.benefits-stat-card:hover h3,
.benefits-stat-card:hover p {
    color: #f8fbff;
}

.benefits-stat-card:focus-visible {
    outline: 2px solid rgba(var(--abozor-blue-rgb), 0.45);
    outline-offset: 4px;
}

@keyframes benefitNumberRoll {
    0%,
    100% {
        filter: blur(0);
        transform: rotateX(0deg) translateY(0);
    }

    48% {
        filter: blur(0.7px);
        transform: rotateX(18deg) translateY(-2px);
    }
}

@keyframes benefitLiquidSweep {
    0%,
    18%,
    100% {
        opacity: 0;
        transform: translateX(-72%) skewX(-10deg);
    }

    28% {
        opacity: 0.32;
    }

    48% {
        opacity: 0.28;
        transform: translateX(72%) skewX(-10deg);
    }

    58% {
        opacity: 0;
        transform: translateX(86%) skewX(-10deg);
    }
}

.installment-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--content-shell-max);
    margin: 22px auto 0;
    padding: 30px 34px;
    border: 1px solid rgba(var(--abozor-blue-rgb), 0.34);
    border-radius: 22px;
    background: linear-gradient(135deg, #003f7d 0%, #075ba6 54%, #0874c8 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: none;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 1.05s ease,
        background 1.15s ease,
        box-shadow 1.05s ease,
        color 1.05s ease;
}

.installment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 1.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.installment-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    transition: color 1.05s ease;
}

.installment-card p {
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.45;
    transition: color 1.05s ease;
}

.installment-card:hover,
.installment-card:focus-visible {
    transform: translateY(-3px);
    border-color: #c4b5fd;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 52%, #7c3aed 100%);
    box-shadow: 0 16px 34px rgba(91, 33, 182, 0.22);
    color: #ffffff;
    outline: none;
}

.installment-card:hover::after,
.installment-card:focus-visible::after {
    transform: translateX(120%);
}

.installment-card:hover h3,
.installment-card:hover p,
.installment-card:focus-visible h3,
.installment-card:focus-visible p {
    color: #ffffff;
}

.uzum-badge {
    flex: 0 0 auto;
    width: 230px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    transition:
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 1.1s ease,
        filter 1.1s ease;
}

.uzum-badge svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 10px 22px rgba(91, 33, 182, 0.12));
}

.uzum-badge img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(91, 33, 182, 0.12));
}

.installment-card:hover .uzum-badge,
.installment-card:focus-visible .uzum-badge {
    transform: translateX(4px) scale(1.02);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
}

@media (max-width: 1320px) {
    .benefits-stats {
        padding: 0;
    }

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

    .benefits-info-card,
    .benefits-metric-card {
        min-height: 0;
        padding: 18px;
    }

    .benefit-stat-number,
    .benefits-info-card .benefit-stat-number,
    .benefits-metric-card .benefit-stat-number {
        font-size: 40px;
    }

    .benefits-stat-card h3 {
        font-size: 15px;
    }

    .benefits-stat-card p,
    .benefits-info-card p {
        font-size: 12.5px;
    }
}

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

    .benefits-stat-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .benefits-section {
        padding: 34px 0 64px;
    }

    .benefits-stats {
        gap: 14px;
        padding: 0;
    }

    .benefits-stat-row {
        grid-template-columns: 1fr;
    }

    .benefits-stat-card {
        min-height: auto;
        padding: 18px;
    }

    .benefits-info-card {
        padding-right: 18px;
    }

    .benefit-stat-number,
    .benefits-info-card .benefit-stat-number,
    .benefits-metric-card .benefit-stat-number {
        font-size: 40px;
    }

    .benefits-stat-card p {
        max-width: none;
    }

    .installment-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ====================
   LOCATIONS SECTION
   ==================== */
.locations-section {
    --locations-accent: #003f7d;
    --locations-accent-rgb: 0, 63, 125;
    padding: 28px 0 42px;
    background: var(--bg-main);
    font-family: var(--font-stack);
}

.locations-section .container {
    max-width: 1440px;
    padding: 0 40px;
}

.locations-layout {
    width: 100%;
    max-width: var(--content-shell-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: flex-start;
    overflow: visible;
}

.locations-filter {
    position: static;
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(360px, 1.35fr) auto;
    align-items: center;
    gap: 12px;
    height: auto;
    align-self: stretch;
    padding: 14px;
    border: 1px solid #d4dee8;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
}

.locations-tabs {
    position: relative;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border: 1px solid #d4dee8;
    border-radius: 10px;
    display: flex;
    background: #ffffff;
    box-shadow: none;
    overflow: hidden;
}

.locations-tabs::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    border-radius: 9px;
    background: linear-gradient(135deg, #003766 0%, var(--locations-accent) 100%);
    box-shadow: 0 8px 18px rgba(var(--locations-accent-rgb), 0.16);
    transform: translateX(0);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.locations-tabs.is-map-active::before {
    transform: translateX(100%);
}

.locations-tab {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #1f2937;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    transition: color 0.18s ease, transform 0.18s ease;
}

.locations-tab svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 15px;
}

.locations-tab.active {
    color: #ffffff;
    box-shadow: none;
}

.locations-tab:not(.active):hover {
    color: #0f172a;
    transform: translateY(-1px);
}

.locations-tabs,
.locations-brand-filter,
.locations-reset {
    align-self: end;
}

.locations-select {
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 0 12px;
    border: 1px solid #d4dee8;
    border-radius: 10px;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: none;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

.locations-brand-filter {
    position: relative;
    min-width: 0;
}

.locations-brand-select {
    appearance: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.locations-select:hover {
    border-color: rgba(30, 41, 59, 0.34);
    background: #ffffff;
}

.locations-brand-filter.open .locations-select {
    border-color: rgba(var(--abozor-blue-rgb), 0.82);
    box-shadow: 0 0 0 3px rgba(var(--abozor-blue-rgb), 0.08);
}

.locations-brand-trigger {
    position: relative;
    z-index: 2;
    padding-right: 38px;
    text-align: left;
}

.locations-brand-trigger .locations-brand-value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.locations-select svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.18s ease;
}

.locations-select-arrow {
    position: absolute;
    top: 50%;
    right: 13px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.locations-brand-filter.open .locations-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.locations-brand-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid #d4dee8;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(var(--abozor-blue-rgb), 0.14);
    overflow: hidden;
}

.locations-brand-menu[hidden] {
    display: none;
}

.locations-brand-menu button {
    width: 100%;
    min-height: 36px;
    padding: 0 11px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #1f2937;
    font: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.locations-brand-menu button:hover,
.locations-brand-menu button.active {
    background: #f1f5f9;
    color: #0f172a;
}

.locations-brand-menu button.active {
    box-shadow: inset 3px 0 0 var(--locations-accent);
}

.locations-service-search {
    display: grid;
    min-width: 0;
    align-self: end;
}

.locations-service-search label {
    color: #0f172a;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
}

.locations-search-shell {
    position: relative;
    min-width: 0;
    height: 48px;
}

.locations-search-shell svg {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #64748b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateY(-50%);
    pointer-events: none;
}

.locations-service-search-input {
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 0 14px 0 40px;
    border: 1px solid #d4dee8;
    border-radius: 10px;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.locations-service-search-input:focus {
    border-color: rgba(var(--locations-accent-rgb), 0.36);
    box-shadow: 0 0 0 3px rgba(var(--locations-accent-rgb), 0.08);
}

.locations-service-search-input::placeholder {
    color: #64748b;
    font-weight: 400;
    opacity: 1;
}

.locations-service-list {
    padding: 14px 10px 12px;
    border: 1px solid #d4dee8;
    border-radius: 10px;
    background: #ffffff;
    display: grid;
    align-content: start;
    gap: 2px;
}

.locations-service-list h3 {
    margin: 0 2px 6px;
    color: #0f172a;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.locations-service-list h3 svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 14px;
}

.locations-service-list a {
    color: #1f2937;
    min-height: 21px;
    padding: 2px 3px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.12;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: normal;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.locations-service-list a:hover {
    background: #eef2f7;
    color: #0f172a;
}

.locations-reset {
    width: 100%;
    height: 48px;
    min-height: 48px;
    margin-top: 0;
    align-self: end;
    padding: 0 14px;
    border: 1px solid #d4dee8;
    border-radius: 10px;
    background: #ffffff;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    color: #0f172a;
    cursor: pointer;
    box-shadow: none;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.locations-reset:hover {
    border-color: rgba(var(--locations-accent-rgb), 0.28);
    background: #eef2f7;
    color: #0f172a;
}

.locations-reset svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 14px;
}

.locations-view-stage {
    position: relative;
    min-width: 0;
    transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.locations-view-stage.is-switching {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.locations-view-stage.is-switching > .locations-grid,
.locations-view-stage.is-switching > .locations-map {
    width: 100%;
}

.location-view-layer {
    position: absolute;
    inset: 0 auto auto 0;
}

.location-view-enter,
.location-view-exit {
    will-change: opacity, transform, filter;
    transition:
        opacity 0.32s ease,
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.32s ease;
}

.location-view-enter {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
    filter: blur(3px);
    pointer-events: none;
}

.location-view-enter.is-ready {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.location-view-exit {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: none;
}

.location-view-exit.is-ready {
    opacity: 0;
    transform: translateY(-14px) scale(0.99);
    filter: blur(2px);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: flex-start;
    align-self: flex-start;
    min-width: 0;
}

.locations-grid[hidden] {
    display: none;
}

.locations-column {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.locations-empty {
    grid-column: 1 / -1;
    min-height: 190px;
    padding: 28px;
    border: 1px solid #d4dee8;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.locations-empty[hidden] {
    display: none;
}

.locations-empty h3 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
}

.locations-empty p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}

.locations-empty-suggestions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.locations-empty-suggestions button {
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(15, 23, 42, 0.22);
    border-radius: 999px;
    background: #f8fbff;
    color: #0f172a;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.locations-empty-suggestions button:hover {
    border-color: rgba(var(--abozor-blue-rgb), 0.52);
    background: #eef5ff;
    transform: translateY(-1px);
}

.locations-column[hidden],
.location-card[hidden] {
    display: none;
}

.locations-map {
    position: relative;
    min-height: 580px;
    border: 1px solid #d4dee8;
    border-radius: 14px;
    background: #eef3f8;
    overflow: hidden;
}

.locations-map[hidden] {
    display: none;
}

.locations-map iframe {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border: 0;
    display: none;
}

.locations-map .yandex-map {
    min-height: 580px;
}

@media (prefers-reduced-motion: reduce) {
    .locations-view-stage,
    .location-view-enter,
    .location-view-exit {
        transition: none;
    }
}

.location-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(245px, 40%) minmax(0, 1fr);
    gap: 13px;
    height: 196px;
    padding: 9px;
    border: 1px solid #d4dee8;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: none;
    overflow: hidden;
    min-width: 0;
    transform: translateY(0);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.location-card.featured {
    height: 196px;
    border: 1px solid #d4dee8;
    box-shadow: none;
    padding: 9px;
}

.location-card:hover,
.location-card.featured:hover {
    transform: translateY(-3px);
    border-color: #9db4cf;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.location-card.is-brand-target {
    border-color: rgba(var(--locations-accent-rgb), 0.34);
    box-shadow: 0 16px 34px rgba(var(--locations-accent-rgb), 0.14);
}

.location-ribbon {
    position: absolute;
    top: -12px;
    right: 18px;
    z-index: 2;
    min-height: 20px;
    padding: 4px 12px 2px;
    border-radius: 999px;
    background: var(--locations-accent);
    color: #ffffff;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0;
    box-shadow: none;
}

.location-photo {
    position: relative;
    width: 100%;
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 9px;
    background: #e5edf5;
    border: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    font: inherit;
    text-align: inherit;
}

.location-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 46%, rgba(15, 23, 42, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

.location-photo::after {
    content: "Подробнее";
    position: absolute;
    left: 12px;
    bottom: 11px;
    z-index: 2;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: none;
}

.location-photo:hover::before,
.location-photo:focus-visible::before,
.location-photo:hover::after,
.location-photo:focus-visible::after {
    opacity: 1;
}

.location-photo:hover::after,
.location-photo:focus-visible::after {
    transform: translateY(0);
}

.location-photo:focus-visible {
    outline: 2px solid var(--abozor-blue);
    outline-offset: 2px;
}

.location-photo img,
.location-photo .location-no-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.34s ease;
}

.location-photo .location-no-photo {
    display: flex;
}

.location-photo:hover img,
.location-photo:focus-visible img {
    transform: scale(1.035);
}

.location-info {
    min-width: 0;
    height: 100%;
    padding: 2px 2px 1px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.location-info h3 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.location-info p {
    margin: 0;
    color: #1f2937;
    font-size: 12.5px;
    line-height: 1.22;
    font-weight: 600;
    max-width: 100%;
}

.location-address {
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.location-brands {
    margin: 5px 0 4px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    min-height: 28px;
    max-height: 30px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.location-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.location-brand-logo {
    width: 52px;
    height: 28px;
    min-width: 0;
}

.location-brand-logo-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.location-brand-logo-svg text {
    fill: var(--abozor-blue);
    font-family: var(--font-stack);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0;
}

.location-brand-service {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 18px;
    color: #1f2937;
    font-size: 9.8px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.location-brand-service span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background:
        linear-gradient(#ffffff, #ffffff) center / 4px 6px no-repeat,
        #69778c;
    flex: 0 0 12px;
}

.location-brand-logo img {
    display: block;
    max-width: 52px;
    max-height: 26px;
    object-fit: contain;
}

.location-services {
    color: #1f2937 !important;
    font-weight: 600 !important;
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.22;
}

.location-services + .location-services {
    margin-top: 0;
}

.location-meta {
    color: #1f2937 !important;
    margin-top: 2px !important;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 600 !important;
    white-space: normal;
    overflow: visible;
    max-width: 100%;
}

.location-hours-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-status {
    flex: 0 0 auto;
    min-height: 22px;
    padding: 0 9px;
    border: 1px solid #c8edd7;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1fbf5;
    color: #14723b;
    font-size: 11px;
    line-height: 1;
    font-weight: 650;
    letter-spacing: 0;
}

.location-status.is-open {
    border-color: #b7e4c7;
    background: #f1fbf5;
    color: #14723b;
}

.location-status.is-closed {
    border-color: #f3c0c0;
    background: #fff5f5;
    color: #a83a3a;
}

.location-status[hidden] {
    display: none;
}

.location-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 5px;
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
}

.location-actions a {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(var(--locations-accent-rgb), 0.38);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--locations-accent);
    font-size: 12.5px;
    line-height: 1;
    white-space: nowrap;
    font-weight: 600;
    text-decoration: none;
}

.location-actions .location-call-link {
    flex: 1 1 0;
    min-width: 0;
}

.location-actions a:last-child {
    flex: 1.45 1 0;
}

.location-actions a:hover {
    background: #eef2f7;
    border-color: rgba(var(--locations-accent-rgb), 0.52);
}

.location-call-link[aria-expanded="true"] {
    background: var(--locations-accent);
    color: #ffffff;
    padding-inline: 8px;
}

.location-call-info {
    display: none;
}

.location-call-info[hidden] {
    display: none;
}

.location-details-open {
    overflow: hidden;
}

.location-details-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    padding: 24px;
    display: grid;
    place-items: center;
    font-family: var(--font-stack);
}

.location-details-modal[hidden] {
    display: none;
}

.location-details-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(6px);
}

.location-details-panel {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 48px);
    padding: 16px;
    border: 1px solid #dbe4ef;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 28px 72px rgba(2, 8, 23, 0.28);
    display: grid;
    grid-template-columns: minmax(230px, 0.84fr) minmax(0, 1fr);
    gap: 18px;
    overflow: auto;
    animation: locationDetailsIn 0.24s ease both;
}

.location-details-image {
    width: 100%;
    min-height: 250px;
    border-radius: 14px;
    overflow: hidden;
    background: #e5edf5;
}

.location-details-image img,
.location-details-image .location-details-no-photo {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block;
}

.location-details-image .location-details-no-photo {
    display: flex;
}

.location-details-body {
    min-width: 0;
    display: grid;
    gap: 10px;
    align-content: start;
}

.location-details-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1px solid #d8e1ec;
    border-radius: 10px;
    background: #ffffff;
    color: #0f172a;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.location-details-title {
    margin: 0;
    padding-right: 34px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 700;
}

.location-details-address {
    margin: 0;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.location-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}

.location-details-brands {
    color: #475569;
    font-size: 13px;
    line-height: 1.35;
}

.location-details-services-title {
    margin: 4px 0 0;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.location-details-services {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.location-details-services li {
    padding: 9px 10px;
    border-radius: 10px;
    background: #f3f7fb;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
}

.location-details-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.location-details-actions a {
    min-height: 40px;
    border: 1px solid rgba(15, 23, 42, 0.24);
    border-radius: 10px;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}

.location-details-actions a:hover {
    background: #eef5ff;
}

@keyframes locationDetailsIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 720px) {
    .location-details-panel {
        grid-template-columns: 1fr;
    }

    .location-details-image,
    .location-details-image img {
        min-height: 210px;
    }
}

@media (max-width: 1360px) {
    .locations-layout {
        max-width: var(--content-shell-max);
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .location-card {
        grid-template-columns: minmax(225px, 40%) minmax(0, 1fr);
        gap: 12px;
        height: 194px;
    }

    .location-photo {
        min-height: 0;
        height: 100%;
    }

    .location-info h3 {
        font-size: 20px;
    }

    .location-info p {
        font-size: 12.5px;
    }

    .location-actions a {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12.5px;
    }
}

@media (max-width: 1180px) {
    .locations-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .location-card {
        grid-template-columns: minmax(190px, 39%) minmax(0, 1fr);
        gap: 10px;
    }

    .location-info h3 {
        font-size: 18px;
    }

    .location-info p {
        font-size: 11px;
    }
}

@media (max-width: 1080px) {
    .locations-section .container {
        max-width: 900px;
        padding: 0 24px;
    }

    .locations-layout {
        grid-template-columns: 1fr;
        max-width: 820px;
    }

    .locations-filter {
        position: static;
        display: grid;
        grid-template-rows: none;
        height: auto;
        margin-top: 0;
        grid-template-columns: 1fr 1fr;
    }

    .locations-service-search,
    .locations-reset {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}

@media (max-width: 820px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
    }
}

@media (max-width: 620px) {
    .locations-section {
        padding: 24px 0 42px;
    }

    .locations-section .container {
        padding: 0 16px;
    }

    .locations-filter {
        grid-template-columns: 1fr;
    }

    .location-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .location-photo {
        min-height: 190px;
        aspect-ratio: 16 / 10;
    }
}

/* ====================
   QUICK ACTIONS SECTION
   ==================== */
.action-hub-section {
    min-height: 0;
    padding: 32px 0;
    background: var(--bg-main);
    color: #ffffff;
    font-family: var(--font-stack);
}

.action-hub-section .container {
    max-width: 1440px;
    padding: 0 40px;
}

.action-hub-shell {
    width: 100%;
    max-width: var(--content-shell-max);
    margin: 0 auto;
    padding: 48px 40px 52px;
    border-radius: var(--border-radius);
    background-color: var(--abozor-blue);
    background-image: var(--action-hub-background-image, var(--abozor-blue-pattern-image));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: none;
    overflow: visible;
}

.action-hub-head {
    margin: 0 0 28px;
    text-align: center;
}

.action-hub-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    white-space: pre-line;
}

.action-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.action-card {
    position: relative;
    min-height: 104px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    text-decoration: none;
    box-shadow: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.action-card:hover,
.action-card-red:hover,
.action-card-green:hover,
.action-card-outline:hover,
.action-card-nps:hover {
    border-color: rgba(226, 232, 240, 0.5);
    background: rgba(255, 255, 255, 0.085);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.action-card-nps {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.action-card-nps .action-label {
    width: 100%;
    padding-right: 0;
    font-size: 18px;
}

.action-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(226, 232, 240, 0.42);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    color: #ffffff;
    box-shadow: none;
}

.action-icon::before {
    display: none;
}

.action-icon svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: none;
}

.action-icon-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: none;
}

.action-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.action-label {
    margin: 0;
    max-width: 620px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    white-space: pre-line;
}

.action-form-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: auto;
}

.action-form-grid input,
.action-form-grid textarea,
.action-upload {
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(163, 190, 219, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    outline: none;
}

.action-form-grid textarea {
    grid-column: 1 / -1;
    min-height: 54px;
    padding-top: 10px;
    resize: none;
}

.action-form-grid input::placeholder,
.action-form-grid textarea::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.action-upload {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.action-upload input {
    display: none;
}

.action-button {
    min-height: 38px;
    margin-top: 12px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.action-button-red {
    background: #ef5350;
    color: #ffffff;
}

.action-button-outline {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
    color: #ffffff;
}

.action-button-blue {
    background: var(--abozor-blue-gradient);
    color: #ffffff;
}

.action-note {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
}

.action-nps-copy {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}

.action-nps-copy span {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(163, 190, 219, 0.34);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 1180px) {
    .action-hub-section .container {
        padding: 0 32px;
    }

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

    .action-card {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        min-height: 104px;
    }

    .action-icon {
        width: 40px;
        height: 40px;
    }

    .action-icon::before {
        display: none;
    }

    .action-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 900px) {
    .action-hub-grid {
        grid-template-columns: 1fr;
    }

    .action-card {
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .action-hub-section {
        min-height: 0;
        padding: 28px 0;
    }

    .action-hub-section .container {
        padding: 0 16px;
    }

    .action-hub-head {
        margin-bottom: 28px;
    }

    .action-hub-shell {
        padding: 32px 16px 36px;
        border-radius: var(--border-radius);
    }

    .action-card {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 14px;
        gap: 12px;
    }

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

    .action-icon {
        width: 36px;
        height: 36px;
    }

    .action-icon::before {
        inset: 18px;
    }

    .action-icon svg {
        width: 22px;
        height: 22px;
    }

    .action-label {
        font-size: 16px;
    }

    .action-card-nps .action-label {
        width: 100%;
        padding-right: 0;
    }

    .action-button {
        width: 100%;
    }
}

/* ====================
   ENTEZ APP BANNER
   ==================== */
.entez-banner-section {
    padding: 38px 0 46px;
    background: var(--bg-main);
}

.entez-banner-section .container {
    max-width: 1440px;
    padding: 0 40px;
}

.entez-carousel {
    position: relative;
    width: 100%;
    max-width: var(--content-shell-max);
    height: clamp(360px, 28vw, 430px);
    margin: 0 auto;
}

.entez-slide {
    position: relative;
    min-height: 0;
    height: 100%;
    padding: clamp(24px, 2.4vw, 34px);
    padding-bottom: clamp(52px, 3.6vw, 62px);
    border-radius: 24px;
    overflow: hidden;
    display: none;
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.9fr);
    gap: 34px;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(91, 7, 7, 0.92) 0%, rgba(172, 18, 18, 0.92) 46%, rgba(230, 31, 25, 0.94) 100%),
        radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.16), transparent 26%),
        #b90f0f;
    box-shadow: 0 30px 70px rgba(125, 18, 18, 0.22);
    color: #ffffff;
}

.entez-slide.active {
    display: grid;
    animation: entezSlideFade 0.45s ease both;
}

.entez-slide-no-image {
    grid-template-columns: minmax(0, 1fr);
}

.entez-slide-no-image .entez-copy {
    max-width: 900px;
}

.entez-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 17%, rgba(255, 255, 255, 0.055) 17% 17.7%, transparent 17.7% 34%),
        linear-gradient(45deg, transparent 0 25%, rgba(255, 255, 255, 0.05) 25% 25.7%, transparent 25.7% 52%);
    background-size: 260px 260px;
    opacity: 0.72;
    pointer-events: none;
}

.entez-slide-light {
    background:
        radial-gradient(circle at 84% 16%, rgba(34, 197, 94, 0.08), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #f8fafc 48%, #eef7f7 100%);
    color: var(--abozor-blue-dark);
    box-shadow: 0 30px 70px rgba(var(--abozor-blue-rgb), 0.12);
}

.entez-slide-light::before {
    background:
        linear-gradient(135deg, transparent 0 17%, rgba(var(--abozor-blue-rgb), 0.035) 17% 17.7%, transparent 17.7% 34%),
        linear-gradient(45deg, transparent 0 25%, rgba(var(--abozor-blue-rgb), 0.03) 25% 25.7%, transparent 25.7% 52%);
    background-size: 260px 260px;
    opacity: 0.7;
}

@keyframes entezSlideFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.entez-copy,
.entez-visual {
    position: relative;
    z-index: 1;
}

.entez-copy h2 {
    margin: 0;
    max-width: 660px;
    color: #ffffff;
    font-size: clamp(34px, 3.25vw, 50px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.entez-slide-light .entez-copy h2 {
    color: var(--abozor-blue-dark);
}

.entez-copy > p {
    margin: 18px 0 0;
    max-width: 610px;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(18px, 1.65vw, 25px);
    line-height: 1.22;
    font-weight: 400;
}

.entez-slide-light .entez-copy > p {
    color: #4b5563;
}

.entez-features {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    max-width: 700px;
}

.entez-features span {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 1.32vw, 21px);
    line-height: 1.2;
    font-weight: 600;
}

.entez-slide-light .entez-features span {
    color: var(--abozor-blue);
}

.entez-features span::before {
    content: "";
    width: 19px;
    height: 11px;
    margin-top: 5px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg);
}

.entez-slide-text-hidden .entez-copy h2,
.entez-slide-text-hidden .entez-copy > p,
.entez-slide-text-hidden .entez-features {
    display: none;
}

.entez-slide-text-hidden .entez-actions {
    margin-top: 0;
    transform: none;
}

.entez-slide-text-hidden::before {
    opacity: 0;
}

.entez-slide-text-hidden .entez-copy {
    position: absolute;
    left: clamp(22px, 3.8vw, 58px);
    right: clamp(22px, 3.8vw, 58px);
    bottom: clamp(30px, 3.8vw, 58px);
    z-index: 4;
    max-width: min(680px, calc(100% - 44px));
    transform: translate(var(--entez-actions-offset-x, 0px), var(--entez-actions-offset-y, 0px));
}

.entez-slide-text-hidden .entez-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

.entez-slide-text-hidden .entez-image-frame {
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 0;
    border-radius: inherit;
    display: block;
}

.entez-slide-text-hidden .entez-image-frame img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    filter: none;
}

.entez-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    transform: translate(var(--entez-actions-offset-x, 0px), var(--entez-actions-offset-y, 0px));
}

.entez-store-badge {
    --entez-store-bg: #D71920;
    --entez-store-border: rgba(255, 255, 255, 0.72);
    --entez-store-shadow: rgba(215, 25, 32, 0.32);
    min-width: 204px;
    min-height: 64px;
    padding: 10px 18px;
    border: 1px solid var(--entez-store-border);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 48%, rgba(0, 0, 0, 0.12)),
        var(--entez-store-bg);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 14px 30px var(--entez-store-shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.entez-slide-light .entez-store-badge {
    border-color: var(--entez-store-border);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 14px 30px var(--entez-store-shadow);
}

.entez-store-badge-apple {
    --entez-store-bg: #D71920;
    --entez-store-border: rgba(255, 255, 255, 0.64);
    --entez-store-shadow: rgba(215, 25, 32, 0.34);
}

.entez-store-badge-google {
    --entez-store-bg: #D71920;
    --entez-store-border: rgba(255, 255, 255, 0.64);
    --entez-store-shadow: rgba(215, 25, 32, 0.34);
}

.entez-store-badge:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
    filter: brightness(1.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 18px 38px var(--entez-store-shadow);
}

.entez-store-badge svg {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.entez-store-badge span {
    display: grid;
    gap: 1px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 400;
}

.entez-store-badge strong {
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
}

.entez-qr-row {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.entez-qr {
    width: 126px;
    height: 126px;
    padding: 9px;
    border-radius: 12px;
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.entez-qr img {
    grid-column: 1 / -1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.entez-qr span {
    background:
        linear-gradient(90deg, #111 50%, transparent 0) 0 0 / 8px 8px,
        linear-gradient(#111 50%, transparent 0) 0 0 / 8px 8px,
        #ffffff;
    border: 2px solid #111111;
}

.entez-qr-row p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.14;
    font-weight: 400;
}

.entez-visual {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entez-image-frame {
    width: 100%;
    max-width: 500px;
    min-height: 260px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entez-image-frame img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.34));
}

.entez-phone {
    position: absolute;
    width: 250px;
    height: 510px;
    border: 10px solid #1b1b1b;
    border-radius: 40px;
    background: #f8fafc;
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.38), inset 0 0 0 2px rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.entez-phone::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 44px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.entez-phone-top {
    position: absolute;
    z-index: 4;
    top: 8px;
    left: 50%;
    width: 86px;
    height: 24px;
    border-radius: 0 0 16px 16px;
    background: #080808;
    transform: translateX(-50%);
}

.entez-phone-map {
    left: 34px;
    bottom: -10px;
    z-index: 2;
    transform: rotate(-8deg);
}

.entez-phone-charge {
    right: 18px;
    top: 0;
    z-index: 1;
    transform: rotate(9deg);
}

.entez-app-ui,
.entez-charge-ui {
    width: 100%;
    height: 100%;
    padding: 44px 14px 16px;
    background: #ffffff;
    color: var(--abozor-blue);
    font-size: 13px;
}

.entez-app-header {
    color: #9b1c1c;
    font-weight: 600;
    text-align: center;
}

.entez-search {
    margin: 18px auto 12px;
    width: 86%;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #9ca3af;
    box-shadow: 0 8px 20px rgba(var(--abozor-blue-rgb), 0.15);
}

.entez-map {
    position: relative;
    height: 250px;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(35deg, transparent 0 48%, rgba(250, 204, 21, 0.46) 48% 50%, transparent 50%),
        linear-gradient(105deg, transparent 0 45%, rgba(var(--abozor-blue-rgb), 0.22) 45% 48%, transparent 48%),
        repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.25) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.22) 0 1px, transparent 1px 42px),
        #eef2e8;
}

.entez-map span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 20px;
    height: 26px;
    border-radius: 999px 999px 999px 0;
    background: #22c55e;
    transform: rotate(-45deg);
    box-shadow: 0 5px 12px rgba(34, 197, 94, 0.35);
}

.entez-map span::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.entez-station-card {
    margin-top: 12px;
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(var(--abozor-blue-rgb), 0.16);
    display: grid;
    gap: 4px;
}

.entez-station-card small {
    color: #16a34a;
}

.entez-charge-ui {
    padding-top: 58px;
    text-align: center;
    background: linear-gradient(180deg, #fbfff8 0%, #ffffff 100%);
}

.entez-lang {
    position: absolute;
    top: 42px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.entez-charge-ui strong {
    display: block;
    margin: 28px auto 16px;
    color: #4b6b23;
    font-size: 17px;
}

.entez-battery {
    width: 150px;
    height: 160px;
    margin: 0 auto 14px;
    padding: 22px;
    border-radius: 28px;
    background: #ecfdf5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.entez-battery span {
    width: 72px;
    height: 102px;
    border-radius: 10px;
    background: repeating-linear-gradient(0deg, #22c55e 0 10px, transparent 10px 17px);
}

.entez-charge-ui p {
    margin: 0;
    color: #374151;
}

.entez-stop {
    margin: 24px auto 0;
    width: 150px;
    min-height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    font-size: 12px;
    box-shadow: 0 14px 26px rgba(220, 38, 38, 0.24);
}

.entez-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
}

.entez-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.entez-dots button.active {
    width: 24px;
    border-radius: 999px;
    background: #ffffff;
}

.entez-carousel.is-light .entez-dots button {
    background: rgba(var(--abozor-blue-rgb), 0.22);
}

.entez-carousel.is-light .entez-dots button.active {
    background: var(--abozor-blue);
}

.entez-dots button:only-child {
    display: none;
}

@media (max-width: 1180px) {
    .entez-carousel {
        height: auto;
    }

    .entez-slide {
        min-height: 440px;
        height: auto;
        grid-template-columns: 1fr;
    }

    .entez-visual {
        min-height: 0;
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .entez-banner-section {
        padding: 42px 0 48px;
    }

    .entez-banner-section .container {
        padding: 0 16px;
    }

    .entez-slide {
        min-height: 0;
        height: auto;
        padding: 28px 18px 34px;
        border-radius: 18px;
    }

    .entez-copy h2 {
        font-size: 32px;
    }

    .entez-copy > p {
        font-size: 18px;
    }

    .entez-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .entez-actions {
        gap: 12px;
    }

    .entez-slide-text-hidden .entez-copy {
        left: 18px;
        right: 18px;
        bottom: 54px;
        max-width: none;
    }

    .entez-store-badge {
        width: 100%;
        min-width: 0;
        min-height: 64px;
    }

    .entez-store-badge strong {
        font-size: 23px;
    }

    .entez-visual {
        min-height: 0;
    }

    .entez-image-frame {
        min-height: 0;
    }

    .entez-phone {
        width: 190px;
        height: 386px;
        border-width: 8px;
        border-radius: 34px;
    }

    .entez-phone-map {
        left: 10px;
    }

    .entez-phone-charge {
        right: 0;
    }
}

/* ====================
   CATALOG SECTION
   ==================== */
.catalog-section {
    padding: var(--section-gap-top) 0 96px;
    background: var(--bg-main);
}

.catalog-title {
    margin: 0 0 26px;
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: #101828;
}

.catalog-panel {
    background: #ffffff;
    border-radius: 32px;
    padding: 20px 14px 28px;
    border: 1px solid rgba(226, 231, 238, 0.9);
    box-shadow: 0 18px 38px rgba(var(--abozor-blue-rgb), 0.04);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 272px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.catalog-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.catalog-category {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #cfd5dc;
    background: #ffffff;
    color: var(--abozor-blue-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-align: left;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-category:hover {
    border-color: #bcc6d1;
    box-shadow: none;
}

.catalog-category-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--abozor-blue-dark);
}

.catalog-category-icon-image {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.catalog-category-text {
    flex: 1 1 auto;
}

.catalog-category.active {
    background: var(--abozor-blue-gradient);
    border-color: var(--abozor-blue);
    color: #ffffff;
    box-shadow: none;
}

.catalog-category.active .catalog-category-icon {
    color: #ffffff;
}

.catalog-content {
    min-width: 0;
    padding: 4px 10px 0 10px;
}

.catalog-group-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.catalog-search-wrap {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    flex: 0 0 auto;
}

.catalog-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: auto;
}

.catalog-brand-wrap {
    flex: 0 0 auto;
    position: relative;
}

.catalog-brand-select {
    position: relative;
    min-width: 190px;
}

.catalog-brand-trigger {
    width: 100%;
    min-height: 48px;
    padding: 0 16px 0 18px;
    border: 1px solid #cfd5dc;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--abozor-blue-dark);
    font: inherit;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-brand-trigger:focus {
    outline: none;
    border-color: #bcc6d1;
    box-shadow: 0 0 0 4px rgba(182, 197, 212, 0.16);
}

.catalog-brand-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.catalog-brand-arrow {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    transition: transform 0.2s ease, color 0.2s ease;
}

.catalog-brand-select.open .catalog-brand-arrow {
    transform: rotate(180deg);
    color: #334155;
}

.catalog-brand-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 6px;
    padding: 8px;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(var(--abozor-blue-rgb), 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    max-height: 280px;
    overflow: auto;
}

.catalog-brand-select.open .catalog-brand-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.catalog-brand-option {
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #4b5563;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.catalog-brand-option:hover {
    background: #f3f6fa;
    color: var(--abozor-blue);
}

.catalog-brand-option.active {
    background: #e8eef5;
    color: var(--abozor-blue);
}

.catalog-search-shell {
    position: relative;
    width: min(328px, 100%);
}

.catalog-search {
    width: 100%;
    min-height: 48px;
    padding: 0 54px 0 18px;
    border: 1px solid #cfd5dc;
    border-radius: 14px;
    font-size: 16px;
    line-height: 1;
    color: var(--abozor-blue-dark);
    background: #ffffff;
}

.catalog-search::placeholder {
    color: #c2c8d1;
    text-transform: lowercase;
}

.catalog-search:focus {
    outline: none;
    border-color: #bcc6d1;
    box-shadow: 0 0 0 4px rgba(182, 197, 212, 0.16);
}

.catalog-search-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    pointer-events: none;
}

.catalog-group {
    display: none;
}

.catalog-group.active {
    display: block;
}

.catalog-group-title {
    margin: 10px 0 0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    color: #101828;
}

.catalog-items {
    display: grid;
    gap: 12px;
    max-height: 350px;
    overflow: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: #b8c6d6 transparent;
}

.catalog-items::-webkit-scrollbar {
    width: 6px;
}

.catalog-items::-webkit-scrollbar-track {
    background: transparent;
}

.catalog-items::-webkit-scrollbar-thumb {
    background: #b8c6d6;
    border-radius: 999px;
}

.catalog-section-block {
    display: grid;
    gap: 10px;
}

.catalog-section-toggle {
    width: 100%;
    min-height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #5f6670;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: left;
    transition: color 0.2s ease;
}

.catalog-section-toggle:hover {
    color: var(--abozor-blue);
}

.catalog-section-label {
    flex: 1 1 auto;
}

.catalog-section-arrow {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5f6670;
    flex: 0 0 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.catalog-section-toggle:hover .catalog-section-arrow {
    color: var(--abozor-blue);
}

.catalog-section-toggle.is-open .catalog-section-arrow {
    transform: rotate(180deg);
}

.catalog-section-services {
    display: grid;
    gap: 8px;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows 0.28s ease, opacity 0.22s ease;
}

.catalog-section-services.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
}

.catalog-section-services-inner {
    display: grid;
    gap: 8px;
    min-height: 0;
}

.catalog-service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 10px;
    background: #f4f4f8;
}

.catalog-service-name {
    min-width: 0;
    color: #27303d;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
}

.catalog-service-price {
    white-space: nowrap;
    color: #101828;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}

.catalog-note {
    margin: 32px 0 0;
    max-width: 920px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.4;
}

/* ====================
   PUBLIC TEXT COLORS
   ==================== */
.service-card-title,
.hero-top-title,
.carwash-hero h2,
.carwash-section-head h2,
.carwash-format-body h3,
.carwash-branch-group h3,
.carwash-branch-list strong,
.benefits-head h2,
.locations-head h2,
.benefit-card h3,
.benefit-card:hover h3,
.locations-service-list h3,
.location-info h3,
.abozor-map-card h3,
.catalog-category,
.catalog-brand-trigger,
.catalog-search,
.entez-slide-light .entez-copy h2 {
    color: #0f172a;
}

.hero-page-title,
.hero-slide-title,
.brands-heading h2,
.brands-copy h2,
.brands-inner-title,
.brands-cta,
.brands-toggle,
.benefits-head h2,
.benefit-card h3,
.locations-head h2,
.service-card-title,
.carwash-hero h2,
.carwash-section-head h2,
.carwash-format-body h3,
.catalog-title,
.catalog-group-title {
    font-weight: 600;
}

.hero-top-title,
.services-section-head h2,
.brands-heading h2,
.benefits-head h2,
.locations-head h2 {
    font-weight: 700;
}

.carwash-hero p,
.carwash-stats span,
.carwash-format-image > span,
.carwash-format-body small,
.carwash-branch-list > a,
.carwash-branch-list > .carwash-branch-item,
.carwash-branch-copy,
.yandex-balloon,
.abozor-map-balloon,
.locations-tab:not(.active),
.locations-select,
.locations-brand-menu button,
.locations-service-list a,
.locations-reset,
.location-info p,
.location-brand-service,
.location-call-info {
    color: #1f2937;
}

.location-services,
.location-meta {
    color: #1f2937 !important;
}

.locations-brand-menu button:hover,
.locations-brand-menu button.active,
.locations-service-list a:hover,
.locations-reset:hover {
    color: #0f172a;
}

.catalog-category-icon {
    color: #334155;
}

.catalog-category.active,
.catalog-category.active .catalog-category-icon,
.locations-tab.active,
.carwash-tabs .active {
    color: #ffffff;
}

@media (max-width: 980px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-search-wrap {
        justify-content: stretch;
    }

    .catalog-content {
        padding: 0;
    }

    .catalog-group-head {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-controls {
        width: 100%;
        justify-content: stretch;
        margin-left: 0;
    }

    .catalog-brand-wrap,
    .catalog-search-wrap,
    .catalog-search-shell {
        width: 100%;
    }

    .catalog-brand-select,
    .catalog-brand-trigger,
    .catalog-search {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .catalog-panel {
        border-radius: 24px;
        padding: 16px;
    }

    .catalog-categories {
        grid-template-columns: 1fr;
    }

    .catalog-group-title {
        font-size: 16px;
    }

    .catalog-item {
        font-size: 15px;
    }

    .catalog-service-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .catalog-service-price {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .catalog-title {
        font-size: 22px;
    }

    .catalog-panel {
        border-radius: 22px;
        padding: 14px;
    }

    .catalog-categories {
        grid-template-columns: 1fr;
    }
}

/* ====================
   PAGE SECTION SPACING
   ==================== */
main > .hero-section,
main > .services-section,
main > .carwash-section,
main > .carwash-detail-section,
main > .brands-section,
main > .benefits-section,
main > .locations-section,
main > .action-hub-section,
main > .entez-banner-section,
main > .catalog-section {
    padding-top: var(--page-section-y);
    padding-bottom: var(--page-section-y);
}

main > .entez-banner-section {
    padding-top: 30px;
    padding-bottom: 36px;
}

main > .hero-section {
    padding-top: 32px;
}

main > .action-hub-section {
    padding-top: 26px;
    padding-bottom: 26px;
}

main > .action-hub-section + .entez-banner-section {
    padding-top: 24px;
}

.action-hub-head,
.brands-heading,
.benefits-head,
.locations-head,
.services-section-head {
    margin-bottom: 40px;
}

.installment-card {
    margin-top: 28px;
}

@media (max-width: 760px) {
    main > .hero-section,
    main > .services-section,
    main > .carwash-section,
    main > .carwash-detail-section,
    main > .brands-section,
    main > .benefits-section,
    main > .locations-section,
    main > .action-hub-section,
    main > .entez-banner-section,
    main > .catalog-section {
        padding-top: var(--page-section-y-mobile);
        padding-bottom: var(--page-section-y-mobile);
    }

    main > .entez-banner-section {
        padding-top: 24px;
        padding-bottom: 28px;
    }

    main > .hero-section {
        padding-top: 28px;
    }

    main > .action-hub-section {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    main > .action-hub-section + .entez-banner-section {
        padding-top: 20px;
    }

    .action-hub-head,
    .brands-heading,
    .benefits-head,
    .locations-head,
    .services-section-head {
        margin-bottom: 28px;
    }
}

/* Benefits cards: calm Abozor grid */
main > .benefits-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 56%, #f1f5f9 100%);
    padding-top: clamp(36px, 3.2vw, 52px);
    padding-bottom: clamp(44px, 4vw, 68px);
}

.benefits-section .container {
    max-width: 1440px;
}

.benefits-head {
    max-width: 880px;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-head h2 {
    color: #0f172a;
    font-size: clamp(24px, 2.35vw, 34px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}

.benefits-head p {
    margin-top: 10px;
    color: #475569;
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.45;
}

.benefits-section .benefits-stats {
    width: 100%;
    max-width: var(--content-shell-max);
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.benefits-section .benefits-stat-row {
    display: contents;
}

.benefits-section .benefits-stat-row-bottom {
    display: none;
}

.benefits-section .benefits-stat-card {
    position: relative;
    isolation: isolate;
    min-height: 148px;
    height: auto;
    padding: 20px 20px 18px;
    border: 1px solid #d7e1ee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    color: #1f2937;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    overflow: hidden;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.benefits-section .benefits-stat-card::before {
    display: none;
    content: none;
    animation: none;
}

.benefits-section .benefits-stat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    pointer-events: none;
    background:
        linear-gradient(
            112deg,
            transparent 0%,
            transparent 34%,
            rgba(var(--abozor-blue-rgb), 0.035) 43%,
            rgba(var(--abozor-blue-rgb), 0.105) 50%,
            rgba(var(--abozor-blue-rgb), 0.035) 57%,
            transparent 66%,
            transparent 100%
        );
    opacity: 0;
    transform: translateX(-115%);
    animation: benefitCardInnerSheen 9.6s linear infinite;
    animation-delay: calc(var(--stat-index, 0) * 0.72s);
    will-change: transform, opacity;
}

.benefits-section .benefits-stat-card > * {
    position: relative;
    z-index: 1;
}

.benefits-section .benefits-stat-card:hover {
    color: #1f2937;
    background: #ffffff;
    border-color: rgba(var(--abozor-blue-rgb), 0.28);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
    transform: translateY(-2px);
}

.benefits-section .benefit-stat-icon {
    width: 38px;
    height: 38px;
    margin: 0 0 4px;
    border: 1px solid rgba(var(--abozor-blue-rgb), 0.22);
    border-radius: 50%;
    background: #f5f9ff;
    box-shadow: none;
    color: var(--abozor-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.benefits-section .benefit-stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.1;
}

.benefits-section .benefit-stat-icon img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.benefits-section .benefit-stat-index {
    color: var(--abozor-blue);
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.benefits-section .benefit-stat-number,
.benefits-section .benefit-stat-note,
.benefits-section .benefit-stat-kicker {
    display: none;
}

.benefits-section .benefit-stat-content {
    width: 100%;
    display: grid;
    gap: 6px;
    padding: 0;
    border: 0;
}

.benefits-section .benefits-stat-card h3,
.benefits-section .benefits-stat-card:hover h3 {
    margin: 0;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
}

.benefits-section .benefits-stat-card p,
.benefits-section .benefits-info-card p,
.benefits-section .benefits-stat-card:hover p {
    margin: 0;
    color: #334155;
    font-size: 13.5px;
    line-height: 1.34;
    font-weight: 400;
}

.benefits-section .benefits-stat-card:hover .benefit-stat-icon {
    color: var(--abozor-blue);
    border-color: rgba(var(--abozor-blue-rgb), 0.32);
    background: #edf6ff;
}

.benefits-section .benefits-stat-card:hover h3,
.benefits-section .benefits-stat-card:hover p {
    color: #0f172a;
}

.benefits-section .benefits-stat-card:hover p {
    color: #334155;
}

.benefits-section .benefits-stat-card p span {
    display: inline;
}

@media (max-width: 920px) {
    .benefits-section .benefits-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    main > .benefits-section {
        padding-top: 32px;
        padding-bottom: 44px;
    }

    .benefits-section .container {
        padding: 0 20px;
    }

    .benefits-head {
        margin-bottom: 20px;
    }

    .benefits-section .benefits-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefits-section .benefits-stat-card {
        min-height: 138px;
        padding: 17px 16px;
    }
}

.benefits-section .benefits-stats,
.benefits-section .installment-card {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
    .benefits-section .benefits-stat-card::after {
        animation: none;
    }
}

@keyframes benefitCardInnerSheen {
    0% {
        opacity: 0;
        transform: translateX(-115%);
    }

    5% {
        opacity: 1;
    }

    22% {
        opacity: 1;
        transform: translateX(115%);
    }

    28%,
    100% {
        opacity: 0;
        transform: translateX(115%);
    }
}

/* ====================
   CALLBACK WIDGET
   ==================== */
.callback-widget {
    --callback-blue: #0b4f8f;
    --callback-blue-rgb: 11, 79, 143;
    --callback-blue-dark: #07386e;
    --callback-blue-mid: #0a5fa8;
    --callback-blue-gradient: linear-gradient(135deg, #07386e 0%, #0b4f8f 62%, #0a5fa8 100%);
    --callback-blue-hover: linear-gradient(135deg, #063464 0%, #0a4a85 58%, #0a66b2 100%);
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1200;
    font-family: var(--font-stack);
}

.callback-compact {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 12px;
}

.callback-tooltip {
    position: absolute;
    right: 68px;
    top: 9px;
    min-width: 168px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: var(--callback-blue-gradient);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    box-shadow: 0 16px 34px rgba(var(--callback-blue-rgb), 0.2);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    visibility: hidden;
}

.callback-widget .callback-tooltip.is-visible {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
    visibility: visible !important;
}

.callback-tooltip::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--callback-blue);
    transform: translateY(-50%) rotate(45deg);
}

.callback-main-btn {
    position: relative;
    isolation: isolate;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: var(--callback-blue-gradient);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 0 0 8px rgba(var(--callback-blue-rgb), 0.1),
        0 14px 28px rgba(2, 8, 23, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.callback-main-btn::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 1px solid rgba(var(--callback-blue-rgb), 0.18);
    animation: callbackPulse 2.8s ease-out infinite;
}

.callback-main-btn::after {
    content: "";
    position: absolute;
    inset: -4px;
    z-index: -1;
    border-radius: inherit;
    background: rgba(var(--callback-blue-rgb), 0.14);
    animation: callbackButtonHalo 5s ease-in-out infinite;
    pointer-events: none;
}

.callback-main-btn:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--callback-blue-hover);
    box-shadow:
        0 0 0 9px rgba(var(--callback-blue-rgb), 0.12),
        0 18px 32px rgba(2, 8, 23, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.callback-main-btn svg,
.callback-panel-head svg,
.callback-submit svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.callback-main-btn .callback-icon {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    transform-origin: center;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both;
}

.callback-main-btn .callback-icon-phone {
    animation-name: callbackIconPhoneCycle;
}

.callback-main-btn .callback-icon-chat {
    animation-name: callbackIconChatCycle;
}

.callback-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(412px, calc(100vw - 32px));
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d8e1ec;
    box-shadow: 0 22px 60px rgba(2, 8, 23, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.98);
    transform-origin: right bottom;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.callback-widget.open .callback-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.callback-widget.open .callback-compact {
    opacity: 0;
    pointer-events: none;
}

.callback-panel-head {
    position: relative;
    padding: 18px 20px;
    background: var(--callback-blue-gradient);
    color: #ffffff;
    display: grid !important;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
}

.callback-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.18s ease;
}

.callback-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.callback-panel-title {
    display: block;
    margin: 0;
    padding-right: 42px;
    width: 100%;
    max-width: 100%;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.14;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: normal;
    overflow-wrap: anywhere;
}

.callback-form {
    margin-top: 0 !important;
    padding: 22px 20px 20px;
    display: grid;
    gap: 12px;
}

.callback-form h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.callback-form p {
    margin: 0 0 4px;
    color: #5f6670;
    font-size: 14px;
    line-height: 1.5;
}

.callback-form input {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d5dbe4;
    border-radius: 10px;
    padding: 0 16px;
    color: #101828;
    background: #ffffff;
    font: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.callback-form input:focus {
    border-color: var(--abozor-blue);
    box-shadow: 0 0 0 4px rgba(var(--abozor-blue-rgb), 0.12);
}

.callback-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 4px;
    border-radius: 999px;
    background: #edf1f6;
}

.callback-mode button {
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #667085;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.callback-mode button.active {
    background: var(--callback-blue-gradient);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 35, 61, 0.18);
}

.callback-submit {
    min-height: 54px;
    border: 0;
    border-radius: 10px;
    background: var(--callback-blue-gradient);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(var(--callback-blue-rgb), 0.18);
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.callback-submit:hover {
    background: var(--callback-blue-hover);
    box-shadow: 0 14px 28px rgba(var(--callback-blue-rgb), 0.2);
}

.callback-submit:disabled {
    cursor: wait;
    opacity: 0.75;
}

.callback-separator {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    color: #98a2b3;
    font-size: 14px;
    margin: 2px 0;
}

.callback-separator::before,
.callback-separator::after {
    content: "";
    height: 1px;
    background: #e4e7ec;
}

.callback-messengers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.callback-messenger {
    min-height: 50px;
    border: 1px solid #d8e1ec;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #101828;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: #ffffff;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.callback-messenger:hover {
    border-color: #b8c6d6;
    background: #f7f9fc;
    color: var(--abozor-blue-dark);
}

.callback-messenger svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.callback-telegram {
    border-color: #d8e1ec;
    color: #101828;
    background: #ffffff;
}

.callback-telegram:hover,
.callback-telegram:focus-visible {
    border-color: #229ed9;
    background: #229ed9;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(34, 158, 217, 0.26);
    outline: none;
}

.callback-phone-link {
    grid-column: 1 / -1;
    border-color: #d8e1ec;
    color: #101828;
    background: #f8fafc;
    display: none;
}

.callback-phone-link:hover {
    border-color: #b8c6d6;
    color: var(--abozor-blue-dark);
    background: #f7f9fc;
}

.callback-form small {
    color: #667085;
    font-size: 11px;
    line-height: 1.35;
}

.callback-status {
    min-height: 18px;
    color: #15803d;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.callback-status.error {
    color: #b42318;
}

@keyframes callbackPulse {
    from {
        opacity: 0.46;
        transform: scale(0.88);
    }

    to {
        opacity: 0;
        transform: scale(1.24);
    }
}

@keyframes callbackButtonHalo {
    0%,
    100% {
        opacity: 0;
        transform: scale(0.9);
    }

    12% {
        opacity: 0.75;
        transform: scale(1);
    }

    28% {
        opacity: 0;
        transform: scale(1.3);
    }
}

@keyframes callbackIconPhoneCycle {
    0%,
    44% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    50%,
    94% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.68) rotate(-14deg);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes callbackIconChatCycle {
    0%,
    44% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.68) rotate(14deg);
    }

    50%,
    94% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.68) rotate(14deg);
    }
}

@media (max-width: 640px) {
    .callback-widget {
        right: 16px;
        bottom: 16px;
    }

    .callback-phone-link {
        display: inline-flex;
    }

    .callback-tooltip {
        display: none;
    }

    .callback-panel {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-height: calc(100vh - 24px);
        overflow: auto;
        border-radius: 16px;
    }

    .callback-main-btn {
        width: 64px;
        height: 64px;
    }

}

/* ====================
   FOOTER SECTION
   ==================== */
.footer {
    background-color: #111827;
    color: #cbd5e1;
    padding-top: 0;
    font-family: var(--font-stack);
}

/* NPS Strip at top */
.footer-nps-strip {
    background-color: #1f2937;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.nps-text {
    font-size: 17px;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: -0.01em;
}

.nps-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    margin-left: 12px;
    text-decoration: none;
    box-shadow: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nps-cta:hover {
    color: #ffffff;
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-main-content {
    padding: 100px 0 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.1fr 1.1fr 1.1fr 1.1fr 1.8fr;
    gap: 48px;
    align-items: start;
}

/* Branding Column */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 190px;
    min-height: 0;
    margin-bottom: 6px;
    text-decoration: none;
}

.footer-logo-svg-wrap {
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo svg {
    width: 180px;
    height: auto;
    display: block;
    overflow: visible;
    transition: transform 0.3s ease;
}

.footer-logo-image {
    width: 190px;
    max-width: 100%;
    max-height: 86px;
    display: block;
    object-fit: contain;
    object-position: left center;
    transition: transform 0.3s ease;
}

.footer-brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand-name span {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-logo:hover svg,
.footer-logo:hover .footer-logo-image {
    transform: translateY(-2px);
}

.nps-cta svg {
    flex: 0 0 auto;
    margin-left: 0 !important;
    opacity: 0.86;
    transition: transform 0.2s ease;
}

.nps-cta:hover svg {
    transform: translateX(4px);
}

.footer-description {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 14px;
    line-height: 1.5;
    max-width: 200px;
}

.footer-phone {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-link {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    color: #ffffff;
    background: transparent;
    border: 0;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
    opacity: 0.9;
}

.social-link svg {
    width: 24px;
    height: 24px;
    display: block;
}

.social-link[aria-label="YouTube"] svg {
    width: 25px;
    height: 25px;
}

.social-link[aria-label="Facebook"] svg {
    width: 25px;
    height: 25px;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #dbeafe;
    opacity: 1;
}

/* Column Titles & Links */
.footer-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 15px;
    color: #94a3b8;
    transition: color 0.2s ease;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.accent-link {
    color: var(--abozor-blue) !important;
    font-weight: 600 !important;
    display: inline-flex;
    align-items: center;
}

/* App Column */
.footer-col-app .footer-title {
    margin-bottom: 8px;
    line-height: 1.2;
}

.app-description {
    font-size: 15px;
    color: #94a3b8;
    margin: 0 0 22px;
    line-height: 1.4;
}

.app-stores {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    align-items: center;
}

.app-store-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    line-height: 0;
}

.app-store-badge img {
    width: auto;
    height: 38px;
    max-width: 152px;
    object-fit: contain;
    display: block;
}

.app-store-badge:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.app-qr-grid {
    display: grid;
    grid-template-columns: repeat(2, 104px);
    gap: 16px;
    align-items: stretch;
    justify-content: start;
    width: max-content;
    max-width: 100%;
}

.qr-item {
    display: grid;
    grid-template-rows: 104px minmax(46px, auto);
    justify-items: center;
    align-items: start;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    width: 100%;
    min-width: 0;
}

.qr-box {
    width: 104px;
    height: 104px;
    aspect-ratio: 1;
    background: #ffffff;
    border-radius: 14px;
    padding: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-box-link {
    text-decoration: none;
    cursor: pointer;
}

.qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.14);
    transform-origin: center;
}

.qr-item:hover .qr-box {
    transform: scale(1.05);
}

.qr-label {
    display: block;
    width: 104px;
    min-height: 48px;
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

/* Footer Bottom */
.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background-color: #0f172a;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: #475569;
}

.legal-links {
    display: flex;
    gap: 32px;
}

.legal-links a {
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

.coming-soon-toast {
    position: fixed;
    left: 50%;
    bottom: 32px;
    z-index: 1400;
    display: inline-flex;
    align-items: center;
    max-width: min(420px, calc(100vw - 32px));
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
    box-shadow: 0 22px 54px rgba(2, 8, 23, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.coming-soon-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

[data-coming-soon-trigger="true"] {
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-col-branding {
        grid-column: span 2;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .footer-description {
        max-width: none;
    }
    .social-links {
        justify-content: center;
    }
    .footer-col-app {
        grid-column: span 2;
        text-align: center;
    }
    .app-stores {
        justify-content: center;
    }
    .app-qr-grid {
        margin: 0 auto;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-col-branding, .footer-col-app {
        grid-column: span 1;
    }
    .app-qr-grid {
        grid-template-columns: repeat(2, 90px);
        gap: 10px;
    }
    .qr-item {
        grid-template-rows: 90px minmax(44px, auto);
    }
    .qr-box {
        width: 90px;
        height: 90px;
    }
    .qr-label {
        width: 90px;
        font-size: 8.5px;
    }
    .bottom-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 24px;
    }
}

/* Final benefits width lock: match the same content width as the surrounding sections. */
main > .benefits-section > .container {
    width: 100% !important;
    max-width: calc(var(--content-shell-max) + 80px) !important;
}

main > .benefits-section .benefits-stats,
main > .benefits-section .installment-card {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (min-width: 921px) {
    main > .benefits-section .benefits-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

/* Responsive shell lock: keep header and top navigation inside small screens. */
@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-bar-inner {
        gap: 14px;
    }

    .top-bar-right {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 14px;
        min-width: 0;
    }

    .header {
        padding: 14px 0;
    }

    .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
    }

    .main-nav {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        padding-right: 0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        justify-content: stretch;
    }

    .nav-dropdown {
        min-width: 0;
        justify-content: center;
    }

    .main-nav a {
        width: 100%;
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: center;
        font-size: 11px;
        line-height: 1.2;
        letter-spacing: 0.2px;
    }

    .dropdown-menu {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-bar-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .top-bar-left .logo img {
        height: 32px !important;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
        gap: 8px 12px;
        text-align: center;
    }

    .top-icon {
        display: none;
    }

    .location-link,
    .phone-link,
    .lang-btn {
        font-size: 12px;
    }

    .header-inner {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

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

    .logoutButton {
        justify-self: center;
        width: 110px !important;
        height: 38px !important;
    }
}
