/* ─── RESET & TOKENS ─────────────────────────────────────────────────────── */
.cr2 *,
.cr2 *::before,
.cr2 *::after { box-sizing: border-box; }

.cr2 {
    --red:        #E8341C;
    --red-dark:   #BF2510;
    --red-glow:   rgba(232,52,28,.18);
    --ink:        #0E0E0E;
    --ink2:       #1C1C1E;
    --parchment:  #F7F5F2;
    --smoke:      #F2F0ED;
    --line:       #E4E1DC;
    --muted:      #7A7570;
    --white:      #FFFFFF;
    --gold:       #D4A843;
    --green:      #1A7A4A;
    --r:          10px;
    --r-lg:       16px;
    --sh:         0 2px 20px rgba(0,0,0,.07);
    --sh-lg:      0 8px 40px rgba(0,0,0,.12);
    --t:          .22s cubic-bezier(.4,0,.2,1);
    font-family:  'DM Sans', sans-serif;
    color:        var(--ink);
    background:   var(--parchment);
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.cr2-hero {
    background:  var(--ink);
    position:    relative;
    overflow:    hidden;
    padding:     72px 24px 56px;
}

/* Grid texture overlay */
.cr2-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Red accent bar on left edge */
.cr2-hero::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
}

.cr2-hero-inner {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cr2-hero-kicker {
    display:      inline-flex;
    align-items:  center;
    gap:          8px;
    font-family:  'Syne', sans-serif;
    font-size:    11px;
    font-weight:  700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color:        var(--red);
    margin-bottom: 18px;
}
.cr2-hero-kicker::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--red);
    display: inline-block;
}

.cr2-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size:   clamp(40px, 6.5vw, 76px);
    font-weight: 900;
    line-height: 1.0;
    color:       #fff;
    margin:      0 0 24px;
    letter-spacing: -0.02em;
}
.cr2-hero h1 em {
    font-style: normal;
    color:      var(--red);
}
.cr2-hero h1 .cr2-city-badge {
    display:    inline-block;
    background: var(--red);
    color:      #fff;
    padding:    2px 16px 4px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Hero search bar */
.cr2-search-form {
    display:      flex;
    max-width:    600px;
    gap:          0;
    background:   #fff;
    border-radius: var(--r-lg);
    overflow:     hidden;
    box-shadow:   0 0 0 1px rgba(255,255,255,.08), 0 16px 48px rgba(0,0,0,.4);
    margin-bottom: 32px;
}
.cr2-search-icon {
    display:      flex;
    align-items:  center;
    padding:      0 16px;
    color:        var(--muted);
    font-size:    15px;
    flex-shrink:  0;
}
.cr2-search-form input {
    flex: 1; min-width: 0;
    padding: 14px 0;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    border: none; outline: none;
    color: var(--ink);
    background: transparent;
}
.cr2-search-form input::placeholder { color: #aaa; }
.cr2-search-btn {
    padding: 12px 26px;
    background: var(--red);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--t);
    white-space: nowrap;
}
.cr2-search-btn:hover { background: var(--red-dark); }

/* Hero stats row */
.cr2-hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.cr2-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cr2-stat-num {
    font-family:  'Syne', sans-serif;
    font-size:    22px;
    font-weight:  800;
    color:        #fff;
    line-height:  1;
}
.cr2-stat-label {
    font-size:  12px;
    color:      rgba(255,255,255,.45);
    line-height: 1.3;
    font-weight: 500;
}
.cr2-stat-divider {
    width: 1px; height: 32px;
    background: rgba(255,255,255,.12);
}

/* ─── CITIES SCROLLSTRIP ─────────────────────────────────────────────────── */
.cr2-citystrip {
    background:  var(--ink2);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding:     0;
    overflow:    hidden;
}
.cr2-citystrip-inner {
    max-width:   1260px;
    margin:      0 auto;
    padding:     0 20px;
    display:     flex;
    align-items: center;
    gap:         4px;
    overflow-x:  auto;
    scrollbar-width: none;
}
.cr2-citystrip-inner::-webkit-scrollbar { display: none; }
.cr2-citystrip-label {
    font-size:   11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color:       rgba(255,255,255,.3);
    white-space: nowrap;
    padding:     14px 12px 14px 0;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,.08);
    margin-right: 4px;
}
.cr2-city-pill {
    padding:      10px 16px;
    font-size:    13px;
    font-weight:  600;
    color:        rgba(255,255,255,.55);
    text-decoration: none;
    white-space:  nowrap;
    flex-shrink:  0;
    border-bottom: 2px solid transparent;
    transition:   var(--t);
}
.cr2-city-pill:hover { color: #fff; }
.cr2-city-pill.active {
    color:        var(--red);
    border-bottom-color: var(--red);
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.cr2-layout {
    max-width:   1260px;
    margin:      0 auto;
    padding:     32px 20px 80px;
    display:     grid;
    grid-template-columns: 256px 1fr;
    gap:         28px;
    align-items: start;
}

/* ─── SIDEBAR ────────────────────────────────────────────────────────────── */
.cr2-sidebar {
    position:    sticky;
    top:         82px;
}

.cr2-filter-box {
    background:  var(--white);
    border:      1px solid var(--line);
    border-radius: var(--r-lg);
    overflow:    hidden;
    box-shadow:  var(--sh);
}

.cr2-filter-hd {
    padding:     16px 18px;
    display:     flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}
.cr2-filter-hd-title {
    font-family: 'Syne', sans-serif;
    font-size:   13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color:       var(--ink);
    display:     flex;
    align-items: center;
    gap:         8px;
    margin:      0;
}
.cr2-filter-hd-title i { color: var(--red); }
.cr2-filter-clear {
    font-size:   11px;
    font-weight: 700;
    color:       var(--red);
    text-decoration: none;
    padding:     4px 10px;
    border:      1px solid var(--red);
    border-radius: 20px;
    transition:  var(--t);
}
.cr2-filter-clear:hover { background: var(--red); color: #fff; }

.cr2-filter-body {
    padding: 18px;
}
.cr2-filter-section {
    margin-bottom: 20px;
}
.cr2-filter-section:last-child { margin-bottom: 0; }
.cr2-filter-lbl {
    display:     block;
    font-size:   10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color:       var(--muted);
    margin-bottom: 8px;
}
.cr2-select,
.cr2-input {
    width:       100%;
    padding:     9px 12px;
    border:      1.5px solid var(--line);
    border-radius: 8px;
    font-size:   13px;
    font-family: 'DM Sans', sans-serif;
    color:       var(--ink);
    background:  var(--white);
    -webkit-appearance: none;
    cursor:      pointer;
    transition:  border-color var(--t), box-shadow var(--t);
}
.cr2-select:focus,
.cr2-input:focus {
    outline:     none;
    border-color: var(--red);
    box-shadow:  0 0 0 3px var(--red-glow);
}
.cr2-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.cr2-checks {
    display:     flex;
    flex-direction: column;
    gap:         9px;
}
.cr2-check {
    display:     flex;
    align-items: center;
    gap:         9px;
    font-size:   13px;
    font-weight: 500;
    color:       var(--ink);
    cursor:      pointer;
    padding:     7px 10px;
    border-radius: 8px;
    transition:  background var(--t);
}
.cr2-check:hover { background: var(--smoke); }
.cr2-check input[type="checkbox"] {
    accent-color: var(--red);
    width: 15px; height: 15px; flex-shrink: 0;
}
.cr2-filter-apply {
    width:       100%;
    padding:     11px;
    margin-top:  4px;
    background:  var(--ink);
    color:       #fff;
    border:      none;
    border-radius: 8px;
    font-size:   13px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor:      pointer;
    transition:  var(--t);
    display:     flex;
    align-items: center;
    justify-content: center;
    gap:         7px;
}
.cr2-filter-apply:hover { background: var(--red); }

/* Category quick pills */
.cr2-cat-pills {
    display:     flex;
    flex-wrap:   wrap;
    gap:         6px;
    padding:     14px 16px;
    border-top:  1px solid var(--line);
    background:  var(--smoke);
}
.cr2-cat-pill {
    padding:     4px 12px;
    font-size:   11px;
    font-weight: 700;
    border-radius: 20px;
    border:      1.5px solid var(--line);
    background:  var(--white);
    color:       var(--ink);
    text-decoration: none;
    transition:  var(--t);
}
.cr2-cat-pill:hover,
.cr2-cat-pill.active {
    background:  var(--red);
    border-color: var(--red);
    color:       #fff;
}

/* ─── MAIN AREA ──────────────────────────────────────────────────────────── */
.cr2-main {}

/* Toolbar */
.cr2-toolbar {
    display:     flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap:   wrap;
    gap:         12px;
    margin-bottom: 20px;
}
.cr2-toolbar-left {
    display:     flex;
    align-items: center;
    gap:         14px;
    flex-wrap:   wrap;
}
.cr2-count {
    font-size:   15px;
    font-weight: 700;
    color:       var(--ink);
}
.cr2-count span { color: var(--red); font-family: 'Syne', sans-serif; font-size: 17px; }

/* View toggle */
.cr2-view-toggle {
    display:     flex;
    background:  var(--smoke);
    border:      1px solid var(--line);
    border-radius: 8px;
    overflow:    hidden;
}
.cr2-view-btn {
    padding:     7px 12px;
    background:  transparent;
    border:      none;
    cursor:      pointer;
    color:       var(--muted);
    font-size:   14px;
    transition:  var(--t);
    display:     flex;
    align-items: center;
}
.cr2-view-btn:hover { color: var(--ink); }
.cr2-view-btn.active {
    background:  var(--ink);
    color:       #fff;
}

.cr2-toolbar-right {
    display:     flex;
    align-items: center;
    gap:         10px;
}
.cr2-sort-label {
    font-size:   13px;
    color:       var(--muted);
    font-weight: 500;
}
.cr2-sort-select {
    padding:     8px 12px;
    border:      1.5px solid var(--line);
    border-radius: 8px;
    font-size:   13px;
    font-family: 'DM Sans', sans-serif;
    color:       var(--ink);
    background:  var(--white);
    cursor:      pointer;
}
.cr2-sort-select:focus { outline: none; border-color: var(--red); }

/* Active filter tags */
.cr2-active-tags {
    display:     flex;
    flex-wrap:   wrap;
    gap:         6px;
    margin-bottom: 16px;
}
.cr2-tag {
    display:     inline-flex;
    align-items: center;
    gap:         5px;
    padding:     5px 10px 5px 12px;
    background:  var(--red-glow);
    border:      1px solid rgba(232,52,28,.25);
    border-radius: 20px;
    font-size:   12px;
    font-weight: 600;
    color:       var(--red);
    text-decoration: none;
    transition:  var(--t);
}
.cr2-tag:hover { background: rgba(232,52,28,.25); }
.cr2-tag i { font-size: 9px; }

/* Mobile filter */
.cr2-mob-filter {
    display:     none;
    width:       100%;
    padding:     12px 18px;
    background:  var(--ink);
    color:       #fff;
    border:      none;
    border-radius: var(--r);
    font-size:   14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor:      pointer;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
    gap:         9px;
}
.cr2-mob-filter .cr2-badge {
    background:  var(--red);
    border-radius: 20px;
    padding:     1px 8px;
    font-size:   11px;
}

/* ─── GRID CARDS ─────────────────────────────────────────────────────────── */
.cr2-grid {
    display:     grid;
    grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    gap:         20px;
}

.cr2-card {
    background:  var(--white);
    border:      1px solid var(--line);
    border-radius: var(--r-lg);
    overflow:    hidden;
    display:     flex;
    flex-direction: column;
    text-decoration: none;
    color:       inherit;
    transition:  transform var(--t), box-shadow var(--t), border-color var(--t);
    box-shadow:  var(--sh);
    position:    relative;
}
.cr2-card:hover {
    transform:   translateY(-5px);
    box-shadow:  var(--sh-lg);
    border-color: rgba(232,52,28,.3);
}

/* Verified ribbon */
.cr2-verified-ribbon {
    position:    absolute;
    top:         0; right: 0;
    background:  var(--gold);
    color:       #fff;
    font-size:   9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding:     5px 12px 5px 8px;
    clip-path:   polygon(8px 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index:     2;
    display:     flex;
    align-items: center;
    gap:         4px;
}

.cr2-card-img {
    position:    relative;
    height:      190px;
    overflow:    hidden;
    background:  var(--smoke);
    flex-shrink: 0;
}
.cr2-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.cr2-card:hover .cr2-card-img img { transform: scale(1.06); }
.cr2-card-img-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
    background: linear-gradient(135deg, #f3f3f1, #e8e6e1);
    color: #c9c5be;
}

.cr2-cat-tag {
    position:    absolute;
    bottom:      12px; left: 12px;
    background:  rgba(14,14,14,.85);
    color:       #fff;
    font-size:   10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding:     4px 10px;
    border-radius: 5px;
    backdrop-filter: blur(6px);
}
.cr2-ac-tag {
    position:    absolute;
    bottom:      12px; right: 12px;
    background:  rgba(26,122,74,.9);
    color:       #fff;
    font-size:   10px;
    font-weight: 700;
    padding:     4px 9px;
    border-radius: 5px;
    display:     flex;
    align-items: center;
    gap:         3px;
}

.cr2-card-body {
    padding:     16px 16px 12px;
    flex:        1;
    display:     flex;
    flex-direction: column;
}
.cr2-card-name {
    font-family: 'Syne', sans-serif;
    font-size:   16px;
    font-weight: 800;
    color:       var(--ink);
    margin:      0 0 5px;
    line-height: 1.25;
}
.cr2-card-co {
    font-size:   12px;
    color:       var(--muted);
    margin:      0 0 12px;
    display:     flex;
    align-items: center;
    gap:         5px;
    flex-wrap:   wrap;
}
.cr2-card-co i { color: var(--red); font-size: 11px; }
.cr2-dot { color: var(--line); }

.cr2-specs {
    display:     flex;
    flex-wrap:   wrap;
    gap:         6px 14px;
    margin-bottom: 12px;
}
.cr2-spec {
    font-size:   12px;
    color:       var(--muted);
    display:     flex;
    align-items: center;
    gap:         4px;
    font-weight: 500;
}
.cr2-spec i { font-size: 11px; color: var(--red); }

.cr2-svcs {
    display:     flex;
    flex-wrap:   wrap;
    gap:         5px;
    margin-bottom: 14px;
}
.cr2-svc {
    font-size:   10px;
    font-weight: 700;
    padding:     3px 8px;
    border-radius: 4px;
    background:  #f0fdf4;
    color:       var(--green);
    border:      1px solid #bbf7d0;
}

.cr2-card-ft {
    margin-top:  auto;
    padding-top: 12px;
    border-top:  1px solid var(--smoke);
    display:     flex;
    align-items: flex-end;
    justify-content: space-between;
    gap:         8px;
}
.cr2-price-lbl { font-size: 10px; color: var(--muted); font-weight: 500; }
.cr2-price {
    font-family: 'Syne', sans-serif;
    font-size:   22px;
    font-weight: 800;
    color:       var(--red);
    line-height: 1;
}
.cr2-price small { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; color: var(--muted); }
.cr2-min-days { font-size: 10px; color: var(--muted); margin-top: 2px; }

.cr2-card-cta {
    padding:     9px 18px;
    background:  var(--ink);
    color:       #fff;
    border:      none;
    border-radius: 8px;
    font-size:   13px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor:      pointer;
    text-decoration: none;
    display:     inline-flex;
    align-items: center;
    gap:         6px;
    transition:  var(--t);
    white-space: nowrap;
}
.cr2-card-cta:hover { background: var(--red); color: #fff; }

/* ─── LIST CARDS ─────────────────────────────────────────────────────────── */
.cr2-list {
    display:     flex;
    flex-direction: column;
    gap:         14px;
}

.cr2-list-card {
    background:  var(--white);
    border:      1px solid var(--line);
    border-radius: var(--r-lg);
    overflow:    hidden;
    display:     grid;
    grid-template-columns: 240px 1fr;
    text-decoration: none;
    color:       inherit;
    transition:  transform var(--t), box-shadow var(--t), border-color var(--t);
    box-shadow:  var(--sh);
    position:    relative;
}
.cr2-list-card:hover {
    transform:   translateY(-3px);
    box-shadow:  var(--sh-lg);
    border-color: rgba(232,52,28,.3);
}

.cr2-list-img {
    position:    relative;
    overflow:    hidden;
    background:  var(--smoke);
    min-height:  180px;
}
.cr2-list-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
    position: absolute; inset: 0;
}
.cr2-list-card:hover .cr2-list-img img { transform: scale(1.05); }
.cr2-list-img-ph {
    height: 100%; min-height: 180px;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; color: #c9c5be;
    background: linear-gradient(135deg, #f3f3f1, #e8e6e1);
}

.cr2-list-body {
    padding:     20px 22px;
    display:     flex;
    flex-direction: column;
    gap:         0;
}
.cr2-list-body .cr2-card-name { font-size: 18px; margin-bottom: 6px; }
.cr2-list-ft {
    margin-top:  auto;
    padding-top: 14px;
    display:     flex;
    align-items: center;
    justify-content: space-between;
    gap:         12px;
    flex-wrap:   wrap;
}

/* ─── EMPTY STATE ────────────────────────────────────────────────────────── */
.cr2-empty {
    text-align:  center;
    padding:     80px 20px;
    grid-column: 1 / -1;
}
.cr2-empty-ico { font-size: 64px; margin-bottom: 16px; display: block; }
.cr2-empty h3 {
    font-family: 'Syne', sans-serif;
    font-size:   22px;
    font-weight: 800;
    color:       var(--ink);
    margin:      0 0 10px;
}
.cr2-empty p { font-size: 15px; color: var(--muted); margin: 0 0 24px; }
.cr2-empty-link {
    display:     inline-flex;
    align-items: center;
    gap:         8px;
    padding:     12px 24px;
    background:  var(--ink);
    color:       #fff;
    text-decoration: none;
    border-radius: var(--r);
    font-weight: 700;
    font-size:   14px;
    transition:  var(--t);
}
.cr2-empty-link:hover { background: var(--red); }

/* ─── PAGINATION ─────────────────────────────────────────────────────────── */
.cr2-pages {
    display:     flex;
    justify-content: center;
    align-items: center;
    gap:         5px;
    margin-top:  40px;
    flex-wrap:   wrap;
}
.cr2-pg {
    padding:     9px 15px;
    border:      1.5px solid var(--line);
    border-radius: 8px;
    font-size:   14px;
    font-weight: 700;
    color:       var(--ink);
    text-decoration: none;
    background:  var(--white);
    transition:  var(--t);
    display:     inline-flex;
    align-items: center;
    gap:         4px;
    font-family: 'DM Sans', sans-serif;
}
.cr2-pg:hover   { border-color: var(--red); color: var(--red); }
.cr2-pg.active  { background: var(--red); border-color: var(--red); color: #fff; }
.cr2-pg.dis     { opacity: .35; pointer-events: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cr2-layout { grid-template-columns: 228px 1fr; }
}
@media (max-width: 800px) {
    .cr2-layout { grid-template-columns: 1fr; }
    .cr2-sidebar { position: static; display: none; }
    .cr2-sidebar.open { display: block; }
    .cr2-mob-filter { display: flex; }
    .cr2-hero { padding: 48px 18px 42px; }
    .cr2-list-card { grid-template-columns: 160px 1fr; }
}
@media (max-width: 600px) {
    .cr2-list-card { grid-template-columns: 1fr; }
    .cr2-list-img { min-height: 180px; height: 180px; }
    .cr2-list-img img { position: static; width: 100%; height: 180px; }
}
@media (max-width: 480px) {
    .cr2-grid { grid-template-columns: 1fr; }
    .cr2-layout { padding: 20px 14px 60px; }
}

/* ─── SEO INTRO STRIP ────────────────────────────────────────────────────── */
.cr2-seo-intro {
    background:  var(--smoke);
    border-bottom: 1px solid var(--line);
    padding:     14px 0;
}
.cr2-seo-intro-inner {
    max-width:   1260px;
    margin:      0 auto;
    padding:     0 20px;
}
.cr2-seo-intro p {
    font-size:   14px;
    color:       var(--muted);
    margin:      0 0 10px;
    line-height: 1.6;
}
.cr2-seo-intro p strong { color: var(--ink); }
.cr2-intro-badges {
    display:     flex;
    flex-wrap:   wrap;
    gap:         8px 20px;
}
.cr2-intro-badges span {
    font-size:   12px;
    font-weight: 600;
    color:       var(--muted);
    display:     flex;
    align-items: center;
    gap:         5px;
}
.cr2-intro-badges i { color: var(--green); }

/* ─── SEO SECTIONS WRAPPER ───────────────────────────────────────────────── */
.cr2-seo-wrap {
    max-width:   1260px;
    margin:      0 auto;
    padding:     0 20px 80px;
}
.cr2-seo-hd {
    text-align:  center;
    margin-bottom: 36px;
}
.cr2-seo-hd h2 {
    font-family: 'Syne', sans-serif;
    font-size:   clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color:       var(--ink);
    margin:      0 0 10px;
    line-height: 1.2;
}
.cr2-seo-hd p {
    font-size:   15px;
    color:       var(--muted);
    margin:      0;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────── */
.cr2-how {
    padding:     60px 0 48px;
    border-bottom: 1px solid var(--line);
}
.cr2-how-grid {
    display:     grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap:         24px;
}
.cr2-how-step {
    background:  var(--white);
    border:      1px solid var(--line);
    border-radius: var(--r-lg);
    padding:     28px 24px;
    position:    relative;
    overflow:    hidden;
    transition:  transform var(--t), box-shadow var(--t);
}
.cr2-how-step:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.cr2-how-num {
    font-family: 'Syne', sans-serif;
    font-size:   48px;
    font-weight: 900;
    color:       rgba(232,52,28,.08);
    position:    absolute;
    top:         8px; right: 16px;
    line-height: 1;
    user-select: none;
}
.cr2-how-step h3 {
    font-family: 'Syne', sans-serif;
    font-size:   16px;
    font-weight: 800;
    color:       var(--ink);
    margin:      0 0 10px;
}
.cr2-how-step p {
    font-size:   13px;
    color:       var(--muted);
    margin:      0;
    line-height: 1.6;
}
.cr2-how-step p strong { color: var(--ink); }

/* ─── VEHICLE CATEGORIES ─────────────────────────────────────────────────── */
.cr2-vcat {
    padding:     60px 0 48px;
    border-bottom: 1px solid var(--line);
}
.cr2-vcat-grid {
    display:     grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap:         16px;
}
.cr2-vcat-card {
    background:  var(--white);
    border:      1.5px solid var(--line);
    border-radius: var(--r-lg);
    padding:     22px 20px;
    text-decoration: none;
    color:       inherit;
    display:     flex;
    flex-direction: column;
    gap:         8px;
    transition:  var(--t);
}
.cr2-vcat-card:hover,
.cr2-vcat-card.active {
    border-color: var(--red);
    box-shadow:  0 0 0 3px var(--red-glow);
    transform:   translateY(-2px);
}
.cr2-vcat-ico { font-size: 32px; line-height: 1; }
.cr2-vcat-card h3 {
    font-family: 'Syne', sans-serif;
    font-size:   15px;
    font-weight: 800;
    color:       var(--ink);
    margin:      0;
}
.cr2-vcat-card p {
    font-size:   12px;
    color:       var(--muted);
    margin:      0;
    line-height: 1.5;
    flex:        1;
}
.cr2-vcat-link {
    font-size:   12px;
    font-weight: 700;
    color:       var(--red);
    display:     flex;
    align-items: center;
    gap:         5px;
}

/* ─── CITIES SEO ─────────────────────────────────────────────────────────── */
.cr2-cities-seo {
    padding:     60px 0 48px;
    border-bottom: 1px solid var(--line);
}
.cr2-city-seo-grid {
    display:     grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap:         10px;
}
.cr2-city-seo-card {
    background:  var(--white);
    border:      1.5px solid var(--line);
    border-radius: var(--r);
    padding:     14px 16px;
    text-decoration: none;
    color:       var(--ink);
    display:     flex;
    align-items: center;
    gap:         14px;
    transition:  var(--t);
}
.cr2-city-seo-card:hover,
.cr2-city-seo-card.active {
    border-color: var(--red);
    background:  rgba(232,52,28,.04);
}
.cr2-city-seo-ico { font-size: 22px; flex-shrink: 0; }
.cr2-city-seo-card > div {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; gap: 2px;
}
.cr2-city-seo-card strong {
    font-size:   14px;
    font-weight: 700;
    display:     block;
}
.cr2-city-seo-card span {
    font-size:   10px;
    color:       var(--muted);
    white-space: nowrap;
    overflow:    hidden;
    text-overflow: ellipsis;
}
.cr2-city-seo-card > i { color: var(--muted); font-size: 12px; flex-shrink: 0; }

/* ─── SERVICES SEO ───────────────────────────────────────────────────────── */
.cr2-services-seo {
    padding:     60px 0 48px;
    border-bottom: 1px solid var(--line);
}
.cr2-svc-seo-grid {
    display:     grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap:         20px;
}
.cr2-svc-seo-card {
    background:  var(--white);
    border:      1px solid var(--line);
    border-radius: var(--r-lg);
    padding:     26px 22px;
    transition:  var(--t);
}
.cr2-svc-seo-card:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.cr2-svc-seo-card > i {
    font-size:   26px;
    color:       var(--red);
    margin-bottom: 14px;
    display:     block;
}
.cr2-svc-seo-card h3 {
    font-family: 'Syne', sans-serif;
    font-size:   15px;
    font-weight: 800;
    color:       var(--ink);
    margin:      0 0 10px;
}
.cr2-svc-seo-card p {
    font-size:   13px;
    color:       var(--muted);
    margin:      0;
    line-height: 1.6;
}
.cr2-svc-seo-card p strong { color: var(--ink); }

/* ─── WHY SHORTREST ──────────────────────────────────────────────────────── */
.cr2-why-seo {
    padding:     60px 0 48px;
    border-bottom: 1px solid var(--line);
}
.cr2-why-inner {
    display:     grid;
    grid-template-columns: 1fr 320px;
    gap:         48px;
    align-items: start;
}
.cr2-why-text h2 {
    font-family: 'Syne', sans-serif;
    font-size:   clamp(22px, 3vw, 30px);
    font-weight: 800;
    color:       var(--ink);
    margin:      0 0 16px;
}
.cr2-why-text p {
    font-size:   14px;
    color:       var(--muted);
    line-height: 1.7;
    margin:      0 0 14px;
}
.cr2-why-text p strong { color: var(--ink); }
.cr2-why-list {
    list-style:  none;
    padding:     0; margin: 0;
    display:     flex; flex-direction: column; gap: 9px;
}
.cr2-why-list li {
    display:     flex;
    align-items: flex-start;
    gap:         10px;
    font-size:   13px;
    color:       var(--muted);
    line-height: 1.4;
}
.cr2-why-list i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.cr2-why-list strong { color: var(--ink); }
.cr2-why-stats {
    display:     grid;
    grid-template-columns: 1fr 1fr;
    gap:         16px;
}
.cr2-why-stat {
    background:  var(--ink);
    border-radius: var(--r-lg);
    padding:     24px 20px;
    display:     flex;
    flex-direction: column;
    gap:         6px;
    text-align:  center;
}
.cr2-why-num {
    font-family: 'Syne', sans-serif;
    font-size:   28px;
    font-weight: 900;
    color:       var(--red);
    line-height: 1;
}
.cr2-why-lbl {
    font-size:   11px;
    color:       rgba(255,255,255,.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
@media (max-width: 900px) {
    .cr2-why-inner { grid-template-columns: 1fr; }
    .cr2-why-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .cr2-why-stats { grid-template-columns: 1fr 1fr; }
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.cr2-faq-seo {
    padding:     60px 0 48px;
    border-bottom: 1px solid var(--line);
}
.cr2-faq-list {
    max-width:   800px;
    margin:      0 auto;
    display:     flex;
    flex-direction: column;
    gap:         8px;
}
.cr2-faq-item {
    background:  var(--white);
    border:      1.5px solid var(--line);
    border-radius: var(--r);
    overflow:    hidden;
    transition:  border-color var(--t);
}
.cr2-faq-item.open { border-color: var(--red); }
.cr2-faq-q {
    width:       100%;
    background:  none;
    border:      none;
    padding:     18px 20px;
    text-align:  left;
    font-size:   14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    color:       var(--ink);
    cursor:      pointer;
    display:     flex;
    align-items: center;
    justify-content: space-between;
    gap:         12px;
}
.cr2-faq-q:hover { color: var(--red); }
.cr2-faq-ico { flex-shrink: 0; font-size: 12px; transition: transform var(--t); color: var(--muted); }
.cr2-faq-item.open .cr2-faq-ico { transform: rotate(180deg); color: var(--red); }
.cr2-faq-a {
    display:     none;
    padding:     0 20px 18px;
}
.cr2-faq-item.open .cr2-faq-a { display: block; }
.cr2-faq-a p {
    font-size:   14px;
    color:       var(--muted);
    line-height: 1.7;
    margin:      0;
}

/* ─── RELATED LINKS ──────────────────────────────────────────────────────── */
.cr2-related-links {
    padding:     60px 0 0;
}
.cr2-related-grid {
    display:     grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap:         32px;
}
.cr2-related-col h3 {
    font-family: 'Syne', sans-serif;
    font-size:   13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color:       var(--muted);
    margin:      0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display:     inline-block;
}
.cr2-related-col ul {
    list-style:  none;
    padding:     0; margin: 0;
    display:     flex; flex-direction: column; gap: 8px;
}
.cr2-related-col a {
    font-size:   13px;
    color:       var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition:  color var(--t);
    display:     flex;
    align-items: center;
    gap:         6px;
}
.cr2-related-col a:hover { color: var(--red); }
.cr2-related-col a::before {
    content: '→';
    font-size: 11px;
    color: var(--red);
    flex-shrink: 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes cr2FadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cr2-card,
.cr2-list-card { animation: cr2FadeUp .35s ease both; }
.cr2-card:nth-child(2),  .cr2-list-card:nth-child(2)  { animation-delay: .04s; }
.cr2-card:nth-child(3),  .cr2-list-card:nth-child(3)  { animation-delay: .08s; }
.cr2-card:nth-child(4),  .cr2-list-card:nth-child(4)  { animation-delay: .12s; }
.cr2-card:nth-child(5),  .cr2-list-card:nth-child(5)  { animation-delay: .15s; }
.cr2-card:nth-child(6),  .cr2-list-card:nth-child(6)  { animation-delay: .18s; }
