    :root {
      --accent: #18A880;
      --accent-dark: #107861;
      --accent-soft: #d8f4ec;
      --ink: #12211d;
      --muted: #4f5f5a;
      --bg: #eef4f2;
      --panel: #ffffff;
      --line: #d5e1dc;
      --shadow: 0 18px 45px rgba(13, 37, 32, 0.12);
      --radius-lg: 22px;
      --radius-md: 14px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: 'Public Sans', 'Segoe UI', sans-serif;
      scroll-behavior: smooth;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
    }

    .header-hero {
      position: relative;
      padding: 14px 12px 18px;
      border-bottom: 1px solid #d7e1de;
      background:
        linear-gradient(180deg, rgba(6, 44, 38, 0.68), rgba(11, 34, 29, 0.58)),
        url('/assets/img/hero/batumi-hero.jpg') center/cover no-repeat;
      color: #f4fbf8;
    }

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

    .hero-topnav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      margin-bottom: 24px;
    }

    .hero-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: 0.01em;
      min-width: 0;
    }

    .hero-brand-logo {
      width: 52px;
      height: 52px;
      display: block;
      object-fit: contain;
      box-sizing: border-box;
      padding: 3px;
      border-radius: 10px;
      border: 1px solid #18a880;
      background: rgba(255, 255, 255, 0.2);
    }

    .hero-brand-name {
      font-family: 'Sora', 'Public Sans', sans-serif;
      font-size: clamp(18px, 2.2vw, 24px);
      color: #ecf8f3;
      white-space: nowrap;
    }

    .hero-menu {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .hero-menu a {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(237, 251, 245, 0.9);
      padding: 6px 2px;
    }

    .hero-menu a:hover,
    .hero-menu a:focus-visible {
      color: #ffffff;
      outline: 0;
    }

    .lang-switcher {
      position: relative;
      margin-left: 8px;
      border: 0;
      background: transparent;
      padding: 0;
    }

    .lang-switcher summary {
      list-style: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(6, 44, 38, 0.45);
      color: #effdf7;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      user-select: none;
    }

    .lang-switcher summary::-webkit-details-marker {
      display: none;
    }

    .lang-switcher summary::after {
      content: none;
    }

    .lang-switcher[open] summary::after {
      content: none;
    }

    .lang-switcher-caret {
      font-size: 10px;
      opacity: 0.88;
      transition: transform 0.2s ease;
    }

    .lang-switcher[open] .lang-switcher-caret {
      transform: rotate(180deg);
    }

    .lang-switcher-flag {
      font-size: 15px;
      line-height: 1;
    }

    .lang-switcher-list {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      width: min(88vw, 268px);
      max-height: min(70vh, 470px);
      overflow: auto;
      margin: 0;
      padding: 8px;
      list-style: none;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(8, 34, 30, 0.96);
      box-shadow: 0 16px 28px rgba(2, 20, 16, 0.42);
      z-index: 52;
    }

    .lang-switcher-list li + li {
      margin-top: 2px;
    }

    .lang-switcher-list a {
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 8px;
      padding: 8px 10px;
      text-transform: none;
      letter-spacing: 0;
      font-size: 14px;
      font-weight: 700;
      color: rgba(236, 250, 244, 0.95);
      line-height: 1.25;
      white-space: nowrap;
    }

    .lang-switcher-list a:hover,
    .lang-switcher-list a:focus-visible {
      background: rgba(25, 111, 89, 0.62);
      color: #ffffff;
      outline: 0;
    }

    .lang-switcher-list a[aria-current='true'] {
      background: #18a880;
      color: #ffffff;
    }

    .hero-menu-toggle {
      display: none;
      margin-left: auto;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.32);
      border-radius: 10px;
      background: rgba(6, 44, 38, 0.45);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 0;
    }

    .hero-menu-toggle span {
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: #f4fffb;
      transition: transform 0.22s ease, opacity 0.22s ease;
      transform-origin: center;
    }

    .hero-menu-toggle[aria-expanded='true'] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hero-menu-toggle[aria-expanded='true'] span:nth-child(2) {
      opacity: 0;
    }

    .hero-menu-toggle[aria-expanded='true'] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
      margin: 0;
      font-family: 'Sora', 'Public Sans', sans-serif;
      font-size: clamp(32px, 4.5vw, 52px);
      letter-spacing: -0.02em;
      line-height: 1.05;
      max-width: 16ch;
      color: #ffffff;
    }

    .payment-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
      color: #e1f8f0;
      font-size: 13px;
      font-weight: 600;
    }

    .pay-badge {
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 8px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 700;
      color: #f4fffb;
    }

    .search-panel {
      margin-top: 16px;
      border-radius: 10px;
      border: 1px solid #20cc9a;
      background: linear-gradient(160deg, #17a57f, #149a74);
      padding: 8px;
      box-shadow: 0 14px 28px rgba(7, 36, 29, 0.22);
    }

    .search-panel-grid {
      display: grid;
      grid-template-columns: 1.15fr 1.15fr 1.6fr auto;
      gap: 8px;
    }

    .search-panel-item {
      border-radius: 8px;
      border: 1px solid #d3e5df;
      background: #ffffff;
      padding: 10px 12px;
      color: #2b3f39;
      min-height: 62px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .search-panel-item span {
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #60756e;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .search-panel-item strong {
      font-size: 26px;
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: #1d312b;
    }

    .search-panel-item em {
      font-style: normal;
      font-size: 14px;
      font-weight: 700;
      color: #273c35;
    }

    .panel-filter-btn {
      border: 0;
      border-radius: 8px;
      background: #ffffff;
      color: #253a33;
      font-size: 17px;
      font-weight: 700;
      min-height: 62px;
      padding: 0 18px;
      cursor: pointer;
      white-space: nowrap;
    }

    .search-panel-bottom {
      margin-top: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .panel-locate-btn {
      border: 1px solid rgba(255, 255, 255, 0.45);
      background: rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      color: #e9fff7;
      font-size: 14px;
      font-weight: 700;
      padding: 6px 12px;
      cursor: pointer;
    }

    .rating-pill {
      border-radius: 999px;
      background: rgba(5, 72, 56, 0.38);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: #f0fff9;
      font-size: 13px;
      font-weight: 700;
      padding: 6px 12px;
      white-space: nowrap;
    }

    .hero-tag-grid {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 8px;
    }

    .hero-tag {
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.08);
      color: #effcf7 !important;
      padding: 8px 8px 10px;
      text-align: left;
      min-height: 74px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-tag strong {
         color: #effcf7 !important;
      font-size: 12px;
      line-height: 1.2;
    }

    .hero-tag span {
      font-size: 11px;
      color: rgba(224, 250, 241, 0.86);
    }

    .ghost-btn,
    .outline-btn {
      border-radius: 11px;
      border: 1px solid #c7d6d1;
      background: #fff;
      color: #243631;
      padding: 10px 14px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .hero {
      position: relative;
      min-height: 620px;
      padding: clamp(22px, 4vw, 44px) clamp(12px, 3vw, 36px) 58px;
      background:
        linear-gradient(120deg, rgba(241, 248, 245, 0.6), rgba(241, 248, 245, 0.2)),
        url('/assets/img/hero/keys-handover-white.jpg') center/cover no-repeat;
      border-bottom: 1px solid #d6e0dc;
    }

    .hero-card {
      max-width: 940px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid #dce8e4;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: clamp(18px, 3.4vw, 26px);
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      border-radius: 999px;
      padding: 6px 11px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      font-family: 'Sora', 'Public Sans', sans-serif;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(29px, 4vw, 43px);
      max-width: 16ch;
      margin-bottom: 12px;
    }

    .hero-subtitle {
      color: #364843;
      margin-bottom: 18px;
      max-width: 65ch;
    }

    .search-grid {
      display: grid;
      grid-template-columns: 2.5fr 1fr 1fr auto;
      gap: 10px;
      margin-bottom: 14px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 7px;
      padding: 11px 13px;
      border-radius: 12px;
      border: 1px solid #cfddd8;
      background: #f8fcfb;
    }

    .field-label {
      color: #557067;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 700;
    }

    .field-value {
      font-size: 15px;
      font-weight: 600;
      color: #1f332d;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .search-btn {
      border: 0;
      border-radius: 12px;
      background: linear-gradient(120deg, var(--accent), #16bf90);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      padding: 0 22px;
      min-height: 64px;
      cursor: pointer;
      box-shadow: 0 12px 24px rgba(24, 168, 128, 0.34);
    }

    .provider-row {
      border: 1px solid #d6e2de;
      border-radius: 13px;
      padding: 13px;
      background: #ffffff;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      color: #394b45;
      font-size: 14px;
    }

    .provider-pill {
      padding: 6px 9px;
      border-radius: 8px;
      border: 1px solid #d6e3df;
      background: #f8fcfb;
      font-size: 12px;
      font-weight: 600;
      color: #28423a;
    }

    .highlights {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .highlight-card {
      border: 1px solid #d4e1dc;
      background: #ffffff;
      border-radius: 13px;
      padding: 14px;
    }

    .highlight-card strong {
      display: block;
      margin-bottom: 6px;
      font-size: 15px;
      font-family: 'Sora', 'Public Sans', sans-serif;
    }

    .highlight-card p {
      margin: 0;
      color: #586b64;
      font-size: 13px;
      line-height: 1.45;
    }

    main {
      max-width: 1120px;
      margin: 0 auto;
      padding: 24px 12px 70px;
    }

    .tabline {
      display: grid;
      grid-template-columns: 1fr 1fr;
      text-align: center;
      border-bottom: 1px solid var(--line);
      margin-bottom: 30px;
      position: sticky;
      top: 0;
      z-index: 15;
      backdrop-filter: blur(7px);
      background: rgba(239, 245, 243, 0.9);
    }

    .tabline a {
      padding: 13px 8px;
      font-weight: 700;
      color: #42564f;
      border-bottom: 3px solid transparent;
      transition: 0.2s ease;
    }

    .tabline a:hover,
    .tabline a:focus-visible {
      color: var(--accent-dark);
      border-color: var(--accent);
      outline: 0;
    }

    .section-label {
      display: inline-block;
      padding: 5px 9px;
      border-radius: 7px;
      background: #deeee8;
      color: #44655b;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .deals-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .deals-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 40px;
    }

    .deal-card {
      border: 1px solid #d3dfdb;
      border-radius: 14px;
      background: #ffffff;
      padding: 14px;
      box-shadow: 0 8px 24px rgba(15, 37, 31, 0.05);
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .deal-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 25px rgba(8, 36, 29, 0.11);
    }

    .car-media {
      border-radius: 12px;
      min-height: 140px;
      overflow: hidden;
      background: linear-gradient(180deg, #ecf6f3, #e3f0ec);
    }

    .car-media img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
    }

    .deal-kicker {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #4d635b;
      background: #ebf5f2;
      padding: 4px 8px;
      border-radius: 6px;
      width: fit-content;
    }

    .deal-title {
      font-weight: 700;
      font-size: 17px;
      line-height: 1.25;
    }

    .deal-meta {
      color: #576963;
      font-size: 13px;
      line-height: 1.5;
    }

    .deal-footer {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
    }

    .deal-price {
      font-size: 21px;
      font-family: 'Sora', 'Public Sans', sans-serif;
      color: #12352d;
    }

    .deal-price small {
      font-size: 12px;
      color: #5e746d;
      font-family: 'Public Sans', 'Segoe UI', sans-serif;
      display: block;
    }

    .deal-btn {
      border: 0;
      border-radius: 10px;
      background: var(--accent);
      color: #fff;
      padding: 9px 14px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }

    .insights {
      margin-bottom: 34px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-top: 14px;
      margin-bottom: 20px;
    }

    .stat-box {
      border: 1px solid #d1dfd9;
      border-radius: 12px;
      padding: 14px;
      background: #fff;
    }

    .stat-box span {
      display: block;
      color: #62766f;
      font-size: 12px;
      margin-bottom: 8px;
    }

    .stat-box strong {
      font-family: 'Sora', 'Public Sans', sans-serif;
      font-size: clamp(22px, 2vw, 28px);
    }

    .insight-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .insight-card {
      border: 1px solid #d2dfdb;
      border-radius: 14px;
      background: #fff;
      padding: 18px;
    }

    .insight-card p {
      color: #536761;
      margin: 10px 0 14px;
      line-height: 1.5;
      font-size: 14px;
      min-height: 40px;
    }

    .chart-shell {
      border-radius: 12px;
      background: #f6fbf9;
      border: 1px solid #dce8e3;
      padding: 10px;
      height: 220px;
    }

    .chart-shell canvas {
      width: 100% !important;
      height: 100% !important;
      display: block;
    }

    .map-block,
    .info-card,
    .faq-card,
    .partner-widget {
      border: 1px solid #d1dfda;
      border-radius: 16px;
      background: #fff;
      padding: clamp(16px, 2vw, 22px);
      margin-bottom: 22px;
    }

    .map-frame {
      width: 100%;
      height: clamp(260px, 40vw, 360px);
      border: 1px solid #cee0d8;
      border-radius: 14px;
    }

    .info-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    .info-table td {
      border: 1px solid #d7e2de;
      padding: 11px;
      font-size: 14px;
    }

    .info-table td:first-child {
      width: 42%;
      background: #f4faf8;
      font-weight: 600;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    details {
      border: 1px solid #d4dfdb;
      border-radius: 11px;
      background: #fdfefe;
      padding: 10px 12px;
    }

    summary {
      list-style: none;
      cursor: pointer;
      font-weight: 700;
      padding-right: 18px;
      position: relative;
    }

    summary::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 0;
      color: #5f766f;
      font-weight: 800;
    }

    details[open] summary::after {
      content: '-';
    }

    details p {
      margin: 10px 0 3px;
      color: #586a64;
      line-height: 1.5;
      font-size: 14px;
    }

    .script-slot {
      border: 1px dashed #b5ccc4;
      border-radius: 12px;
      padding: 14px;
      margin-top: 10px;
      background: #f7fbf9;
    }

    .placeholder {
      border-radius: 10px;
      min-height: 110px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 14px;
      color: #5a7068;
      background: #eaf6f2;
      font-size: 14px;
      font-weight: 600;
    }

    .image-note {
      margin-top: 10px;
      font-size: 12px;
      color: #6a7f78;
    }

    footer {
      border-top: 1px solid var(--line);
      margin-top: 42px;
      padding: 32px 12px 42px;
      background: #f1f7f5;
    }

    .footer-map-wrap {
      max-width: 1120px;
      margin: 0 auto 22px;
    }

    .footer-anchor-block {
      max-width: 1120px;
      margin: 0 auto 24px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .footer-anchor-card {
      border: 1px solid #d1dfda;
      border-radius: 14px;
      background: #ffffff;
      padding: 16px;
      color: #4f665f;
    }

    .footer-anchor-card h3 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #253c35;
    }

    .footer-anchor-card p {
      margin: 0 0 10px;
      line-height: 1.45;
    }

    .footer-anchor-card a {
      color: #1d5e4f;
      text-decoration: underline;
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto 24px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 20px;
      color: #4b625a;
      font-size: 14px;
    }

    .footer-inner h3 {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .footer-inner p,
    .footer-inner a {
      margin: 0 0 8px;
      color: #4f665f;
    }

    .footer-city-links {
      max-width: 1120px;
      margin: 16px auto 0;
      border: 1px solid #d1dfda;
      border-radius: 14px;
      background: #ffffff;
      padding: 16px;
      color: #4f665f;
      text-align: center;
    }

    .footer-city-links h3 {
      margin: 0 0 10px;
      font-size: 16px;
      color: #253c35;
      text-align: center;
    }

    .footer-city-links-list {
      margin: 0;
      line-height: 1.5;
      text-align: center;
    }

    .footer-city-links-list a {
      color: #1d5e4f;
      text-decoration: underline;
    }

    .footer-city-links-sep {
      color: #69827a;
    }

    .copyright {
      max-width: 1120px;
      margin: 18px auto 0;
      font-size: 12px;
      color: #688078;
    }

    @media (max-width: 1120px) {
      .deals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .panel-filter-btn {
        grid-column: span 2;
      }

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

      .highlights,
      .stats-grid,
      .insight-grid,
      .faq-wrap,
      .footer-anchor-block,
      .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .header-hero {
        padding: 10px 10px 14px;
      }

      .hero-topnav {
        position: relative;
        flex-direction: row;
        align-items: center;
        margin-bottom: 14px;
        gap: 10px;
      }

      .hero-brand {
        max-width: calc(100% - 56px);
      }

      .hero-brand-logo {
        width: 42px;
        height: 42px;
        padding: 2px;
        border-radius: 8px;
      }

      .hero-brand-name {
        font-size: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .hero-menu-toggle {
        display: inline-flex;
      }

      .hero-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(8, 35, 30, 0.94);
        overflow: hidden;
        box-shadow: 0 16px 30px rgba(2, 20, 16, 0.35);
        z-index: 40;
      }

      .hero-menu.is-open {
        display: flex;
      }

      .hero-menu a {
        white-space: normal;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .hero-menu a:last-child {
        border-bottom: 0;
      }

      .lang-switcher {
        width: 100%;
        margin-left: 0;
      }

      .lang-switcher summary {
        width: 100%;
        justify-content: flex-start;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0;
        background: transparent;
        padding: 12px 14px;
      }

      .lang-switcher-list {
        position: static;
        width: 100%;
        max-height: 290px;
        border-radius: 0;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
        background: rgba(6, 31, 26, 0.82);
      }

      .lang-switcher-list a {
        padding: 10px 14px;
      }

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

      .search-panel-grid {
        grid-template-columns: 1fr;
      }

      .panel-filter-btn {
        grid-column: span 1;
        min-height: 52px;
      }

      .search-panel-item strong {
        font-size: 22px;
      }

      .search-panel-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

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

      .hero {
        min-height: auto;
        padding: 14px 10px 18px;
      }

      .hero-card {
        border-radius: 15px;
        padding: 14px;
      }

      h1 {
        font-size: 30px;
      }

      .search-grid,
      .deals-grid,
      .highlights,
      .stats-grid,
      .insight-grid,
      .faq-wrap,
      .footer-anchor-block,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .search-btn {
        grid-column: span 1;
        min-height: 52px;
      }

      .tabline {
        position: static;
        margin-bottom: 20px;
      }

      main {
        padding: 18px 10px 46px;
      }

      .deals-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .info-table td {
        font-size: 13px;
      }

      .outline-btn {
        padding: 9px 11px;
      }

      .footer-anchor-block {
        margin-bottom: 18px;
      }

      .footer-inner {
        margin-bottom: 18px;
        gap: 14px;
      }

      .footer-map-wrap {
        margin-bottom: 16px;
      }

      .footer-city-links {
        margin-bottom: 16px;
      }
    }
