      :root {
        --bg: #111111;
        --bg-soft: #1e1e1e;
        --card: #ffffff;
        --text: #1f1f1f;
        --muted: #666666;
        --line: #d7d7d7;
        --accent: #000000;
        --accent-2: #000000;
        --danger: #4a4a4a;
        --radius: 16px;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
        color: var(--text);
        background: #efefef;
      }

      .container {
        width: min(1200px, 92%);
        margin-inline: auto;
      }

      .hero {
        background:
          linear-gradient(120deg, rgba(10, 10, 10, 0.78), rgba(40, 40, 40, 0.72)),
          url("assets/hero-kia-center.jpeg") center/cover no-repeat;
        color: #fff;
        padding: 3.5rem 0 2.5rem;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.3fr 0.9fr;
        gap: 1.25rem;
        align-items: center;
      }

      h1 {
        font-size: clamp(1.9rem, 3.4vw, 3rem);
        line-height: 1.12;
        margin: 0 0 0.8rem;
      }

      .hero p {
        max-width: 58ch;
        margin: 0 0 1.25rem;
        color: #e2e2e2;
      }

      .kpis {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
      }

      .kpi {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(3px);
      }

      .kpi strong {
        display: block;
        font-size: 1.2rem;
      }

      .lead-box {
        background: #fff;
        color: var(--text);
        border-radius: var(--radius);
        padding: 1rem;
        box-shadow: var(--shadow);
      }

      .lead-box h2 {
        margin: 0 0 0.4rem;
        font-size: 1.1rem;
      }

      .lead-box p {
        margin: 0 0 0.8rem;
        color: var(--muted);
        font-size: 0.92rem;
      }


      form {
        display: grid;
        gap: 0.55rem;
      }

      input,
      select,
      button {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 0.72rem 0.85rem;
        font: inherit;
      }

      button {
        cursor: pointer;
        background: var(--accent);
        color: #fff;
        border: none;
        font-weight: 600;
      }

      button:hover {
        filter: brightness(0.95);
      }

      main {
        padding: 1.3rem 0 3rem;
      }

      .search-panel {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 1rem;
        display: grid;
        grid-template-columns: 1fr 1fr 0.6fr;
        gap: 0.7rem;
        margin-top: -2.2rem;
        position: relative;
        z-index: 2;
        box-shadow: var(--shadow);
      }

      .inventory-head {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-top: 1.5rem;
      }

      .inventory-grid {
        margin-top: 0.7rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
      }

      .car-card {
        background: var(--card);
        border-radius: var(--radius);
        border: 1px solid var(--line);
        overflow: hidden;
        box-shadow: var(--shadow);
      }

      .car-photo {
        height: 170px;
        background: linear-gradient(145deg, #c7c7c7, #ebebeb);
        display: grid;
        place-items: center;
        color: #2b2b2b;
        font-weight: 700;
        overflow: hidden;
      }

      .car-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .car-body {
        padding: 0.9rem;
      }

      .car-title {
        margin: 0;
        font-size: 1.04rem;
      }

      .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin: 0.55rem 0;
      }

      .tag {
        font-size: 0.75rem;
        background: #f1f1f1;
        color: #2f2f2f;
        border-radius: 999px;
        padding: 0.22rem 0.5rem;
      }

      .tag.ok {
        background: #e0e0e0;
        color: #242424;
      }

      .price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0.55rem 0 0.7rem;
      }

      .price strong {
        font-size: 1.25rem;
      }

      .badges {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
        margin-top: 1.8rem;
      }

      .badge {
        border-radius: 12px;
        border: 1px dashed #9f9f9f;
        background: #fff;
        padding: 0.8rem;
      }

      .sticky-cta {
        position: fixed;
        right: 1rem;
        bottom: 1rem;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: none;
        background: #000000;
        color: #fff;
        display: grid;
        place-items: center;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        cursor: pointer;
        z-index: 20;
      }

      .sticky-cta svg {
        width: 30px;
        height: 30px;
        fill: currentColor;
      }

      .sticky-cta::after {
        content: 'WhatsApp';
        position: absolute;
        right: 76px;
        white-space: nowrap;
        background: #000000;
        color: #fff;
        font-size: 0.78rem;
        padding: 0.3rem 0.55rem;
        border-radius: 8px;
        opacity: 0;
        transform: translateX(8px);
        transition: 0.2s ease;
        pointer-events: none;
      }

      .sticky-cta:hover::after {
        opacity: 1;
        transform: translateX(0);
      }


      .social-links {
        display: flex;
        gap: 0.55rem;
        margin-top: 1rem;
      }

      .social-links a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #fff;
        color: #111;
        border: 1px solid rgba(255, 255, 255, 0.35);
        text-decoration: none;
      }

      .social-links svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
      }

      .notice {
        margin-top: 0.6rem;
        font-size: 0.82rem;
        color: var(--danger);
      }


      .location-footer {
        padding: 1.4rem 0 4.8rem;
      }

      .location-grid {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 1rem;
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 1rem;
      }

      .location-grid h3 {
        margin: 0.1rem 0 0.5rem;
      }

      .location-grid p {
        color: var(--muted);
        margin: 0.3rem 0;
      }

      .location-grid a {
        color: #111;
      }

      .map-link {
        display: block;
        border-radius: 10px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        border: 1px solid var(--line);
      }

      .map-link img {
        width: 100%;
        min-height: 220px;
        max-height: 260px;
        object-fit: cover;
        display: block;
      }

      .map-link small {
        display: block;
        padding: 0.5rem 0.65rem;
        background: #f5f5f5;
        color: #222;
      }

      @media (max-width: 960px) {
        .hero-grid,
        .inventory-grid {
          grid-template-columns: 1fr;
        }

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

        .badges,
        .location-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 640px) {
        .search-panel {
          grid-template-columns: 1fr;
          margin-top: -1.3rem;
        }

        .kpis {
          grid-template-columns: 1fr;
        }
      }
    
