/* home1 soft redesign — identical to /home1.html */
body.home1-page { margin: 0; }
body.home1-page .x-cloak, [x-cloak] { display: none !important; }
:root {
      --ink: #121826;
      --ink-soft: #2a3344;
      --muted: #6b7385;
      --accent: #ff5a1f;
      --accent-soft: #ffe4d8;
      --mint: #d8f3e7;
      --lilac: #e8dff5;
      --peach: #ffe8d6;
      --sky: #d9eef8;
      --sand: #f4f1ec;
      --bg: #f6f4f8;
      --bg-grad: #f6f4f8;
      --white: #ffffff;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --shadow: 0 12px 40px rgba(18, 24, 38, 0.08);
      --shadow-sm: 0 6px 20px rgba(18, 24, 38, 0.06);
      --font-display: "Outfit", system-ui, sans-serif;
      --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--bg-grad);
      background-attachment: fixed;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, select { font: inherit; }
    .wrap {
      width: min(1180px, calc(100% - 2rem));
      margin-inline: auto;
    }

    /* —— Header —— */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 1rem 0 0.75rem;
      backdrop-filter: blur(14px);
      background: rgba(246, 244, 248, 0.78);
      border-bottom: 1px solid rgba(18, 24, 38, 0.04);
    }
    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: -0.04em;
    }
    .logo-mark {
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 14px;
      background: var(--accent);
      display: grid;
      place-items: center;
      box-shadow: 0 8px 18px rgba(255, 90, 31, 0.35);
    }
    .logo-mark svg { width: 1.05rem; height: 1.05rem; }
    .logo span span { color: var(--accent); }

    .pill-nav {
      display: none;
      align-items: center;
      gap: 0.25rem;
      padding: 0.3rem;
      background: var(--white);
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
    }
    .pill-nav a {
      padding: 0.55rem 1.05rem;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--muted);
      transition: 0.2s ease;
    }
    .pill-nav a:hover { color: var(--ink); background: rgba(18, 24, 38, 0.04); }
    .pill-nav a.is-active {
      background: var(--ink);
      color: var(--white);
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border: 0;
      cursor: pointer;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.875rem;
      padding: 0.7rem 1.25rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid rgba(18, 24, 38, 0.12);
    }
    .btn-ghost:hover { background: var(--white); }
    .btn-ink {
      background: var(--ink);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(18, 24, 38, 0.2);
    }
    .btn-accent {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(255, 90, 31, 0.28);
    }
    .btn-accent:hover { box-shadow: 0 14px 28px rgba(255, 90, 31, 0.35); }
    .icon-btn {
      width: 2.6rem;
      height: 2.6rem;
      border-radius: 14px;
      border: 0;
      background: var(--white);
      box-shadow: var(--shadow-sm);
      display: grid;
      place-items: center;
      cursor: pointer;
      color: var(--ink);
    }

    /* —— Hero —— */
    .hero {
      padding: 1.5rem 0 3rem;
    }
    .hero-shell {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 980px) {
      .pill-nav { display: flex; }
      .hero-shell {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: stretch;
        min-height: 560px;
      }
    }

    .hero-copy {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 2rem 1.75rem;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    @media (min-width: 720px) {
      .hero-copy { padding: 2.75rem 2.5rem; }
    }
    .hero-copy::before {
      content: "";
      position: absolute;
      inset: auto -20% -40% auto;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 90, 31, 0.12), transparent 70%);
      pointer-events: none;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-soft);
      padding: 0.4rem 0.85rem;
      border-radius: 999px;
      width: fit-content;
      margin-bottom: 1.15rem;
    }
    .hero-copy h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.1rem, 4.5vw, 3.4rem);
      line-height: 1.05;
      letter-spacing: -0.045em;
      margin: 0 0 1rem;
    }
    .hero-copy h1 em {
      font-style: normal;
      color: var(--accent);
    }
    .hero-copy p.lead {
      margin: 0 0 1.75rem;
      color: var(--muted);
      font-size: 1.02rem;
      max-width: 34ch;
    }
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      margin-bottom: 1.75rem;
    }
    .hero-note {
      font-size: 0.8rem;
      color: var(--muted);
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-top: auto;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(18, 24, 38, 0.06);
    }
    .hero-stats div {
      background: var(--bg);
      border-radius: var(--radius-md);
      padding: 0.85rem 0.9rem;
    }
    .hero-stats strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }
    .hero-stats span {
      font-size: 0.72rem;
      color: var(--muted);
      font-weight: 600;
    }

    .hero-stage {
      display: grid;
      gap: 0.9rem;
      grid-template-columns: 1.15fr 0.85fr;
      grid-template-rows: auto auto;
    }
    .finder {
      grid-column: 1 / -1;
      background: var(--ink);
      color: var(--white);
      border-radius: var(--radius-xl);
      padding: 1.35rem 1.25rem 1.4rem;
      box-shadow: var(--shadow);
      position: relative;
      /* Keep dropdown lists visible above the next sections */
      overflow: visible;
      z-index: 40;
    }
    .finder::after {
      content: "";
      position: absolute;
      right: -40px;
      top: -50px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 90, 31, 0.45), transparent 70%);
      pointer-events: none;
    }
    .finder-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 1rem;
      margin-bottom: 1.1rem;
      position: relative;
      z-index: 1;
    }
    .finder-head h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 1.25rem;
      letter-spacing: -0.03em;
    }
    .finder-head p {
      margin: 0.25rem 0 0;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.82rem;
    }
    .step-chip {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(255, 90, 31, 0.2);
      color: #ffb090;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      white-space: nowrap;
    }
    .finder-tabs {
      display: flex;
      gap: 0.35rem;
      padding: 0.3rem;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      width: fit-content;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }
    .finder-tabs button {
      border: 0;
      background: transparent;
      color: rgba(255, 255, 255, 0.65);
      border-radius: 999px;
      padding: 0.45rem 0.95rem;
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
    }
    .finder-tabs button.is-active {
      background: var(--white);
      color: var(--ink);
    }
    .finder-fields {
      display: grid;
      gap: 0.65rem;
      position: relative;
      z-index: 5;
    }
    @media (min-width: 640px) {
      .finder-fields { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; }
    }
    .field label {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 0.35rem;
    }
    .field select, .field input {
      width: 100%;
      border: 0;
      border-radius: 999px;
      padding: 0.8rem 1rem;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      outline: none;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23ffffff99' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.2rem;
    }
    .field select option { color: var(--ink); }
    .field select:focus, .field input:focus {
      background-color: rgba(255, 255, 255, 0.16);
    }

    .hero-selected-car {
      grid-column: 1 / -1;
      animation: rise 0.55s ease both;
    }
    .hero-selected-car:empty {
      display: none;
    }
    .home-soft-promo {
      display: contents;
    }
    .home-soft-promo[hidden] {
      display: none !important;
    }
    .hero-selected-car .veh-selected {
      margin: 0;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(145deg, rgba(255, 232, 214, 0.92) 0%, rgba(255, 255, 255, 0.98) 42%, #fff 100%);
      box-shadow: var(--shadow);
      min-height: 150px;
    }
    .hero-selected-car .veh-selected__shot {
      background: #f6f4f8;
      border-radius: var(--radius-lg);
    }
    .hero-selected-car .veh-selected__chip {
      background: rgba(18, 24, 38, 0.92);
      border-color: transparent;
    }
    .hero-selected-car .veh-selected__chip em {
      color: rgba(255, 255, 255, 0.55);
    }
    .hero-selected-car .veh-selected__chip strong {
      color: #fff;
    }
    .hero-selected-car .veh-selected__btn--primary {
      background: var(--accent);
      border-color: var(--accent);
      box-shadow: 0 10px 24px rgba(255, 90, 31, 0.28);
      cursor: pointer;
    }
    .hero-selected-car .veh-selected__btn--primary:hover {
      background: var(--ink);
      border-color: var(--ink);
    }
    .hero-selected-car .veh-selected__btn--ghost {
      cursor: pointer;
    }

    .soft-card {
      border-radius: var(--radius-lg);
      padding: 1.15rem 1.2rem;
      box-shadow: var(--shadow-sm);
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      animation: rise 0.7s ease both;
    }
    .soft-card h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 1.15rem;
      letter-spacing: -0.03em;
      line-height: 1.2;
    }
    .soft-card p {
      margin: 0.4rem 0 0;
      font-size: 0.82rem;
      opacity: 0.75;
    }
    .card-mint { background: var(--mint); animation-delay: 0.08s; }
    .card-lilac { background: var(--lilac); animation-delay: 0.14s; }
    .card-photo {
      background: center/cover no-repeat url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=800&q=80");
      color: var(--white);
      position: relative;
      overflow: hidden;
      animation-delay: 0.2s;
    }
    .card-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(18, 24, 38, 0.15), rgba(18, 24, 38, 0.72));
    }
    .card-photo > * { position: relative; z-index: 1; }
    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-top: 0.85rem;
    }
    .mini-pill {
      background: rgba(18, 24, 38, 0.9);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
    }
    .avatar-row {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 0.65rem;
    }
    .avatar {
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255, 255, 255, 0.7);
    }
    .play-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(8px);
      border-radius: 999px;
      padding: 0.45rem 0.8rem;
      font-size: 0.78rem;
      font-weight: 700;
      width: fit-content;
    }

    /* —— Sections —— */
    section.block { padding: 1.5rem 0 2.75rem; }
    .section-head {
      display: flex;
      flex-wrap: wrap;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.35rem;
    }
    .section-head h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(1.55rem, 3vw, 2.15rem);
      letter-spacing: -0.04em;
      font-weight: 800;
    }
    .section-head h2 em {
      font-style: normal;
      color: var(--accent);
    }
    .section-head p {
      margin: 0.35rem 0 0;
      color: var(--muted);
      font-size: 0.92rem;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--white);
      border-radius: 999px;
      padding: 0.35rem 0.75rem;
      box-shadow: var(--shadow-sm);
      margin-bottom: 0.65rem;
    }

    .tabs {
      display: inline-flex;
      gap: 0.25rem;
      padding: 0.3rem;
      background: var(--white);
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
    }
    .tabs button {
      border: 0;
      background: transparent;
      border-radius: 999px;
      padding: 0.55rem 1.1rem;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--muted);
      cursor: pointer;
      transition: 0.2s ease;
    }
    .tabs button.is-active {
      background: var(--ink);
      color: var(--white);
    }

    /* products */
    .bay {
      display: grid;
      gap: 1rem;
    }
    .bay-solo .product-media {
      aspect-ratio: 4 / 3;
    }
    @media (min-width: 720px) {
      .bay-solo .product-media {
        aspect-ratio: auto;
        min-height: 220px;
        max-height: 260px;
      }
    }
    .bay-subhead {
      margin: 1.75rem 0 0.9rem;
    }
    .bay-subhead h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.4vw, 1.7rem);
      letter-spacing: -0.04em;
      font-weight: 800;
    }
    .bay-subhead h3 em {
      font-style: normal;
      color: var(--accent);
    }
    .tiles.tiles-one-line {
      margin-top: 0;
      grid-template-columns: repeat(2, 1fr);
    }
    @media (min-width: 720px) {
      .tiles.tiles-one-line { grid-template-columns: repeat(4, 1fr); }
    }
    .product-featured {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 1.25rem;
      box-shadow: var(--shadow);
      display: grid;
      gap: 1rem;
    }
    @media (min-width: 560px) {
      .product-featured { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
    }
    .product-media {
      background: #f6f4f8;
      border-radius: var(--radius-lg);
      aspect-ratio: 1 / 1;
      display: grid;
      place-items: center;
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
    }
    .badge {
      position: absolute;
      top: 0.85rem;
      left: 0.85rem;
      background: var(--accent);
      color: white;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
    }
    .product-featured img {
      max-height: 180px;
      max-width: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }
    .rack-item img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      justify-self: center;
    }
    .product-meta .brand {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .product-meta h3 {
      margin: 0.35rem 0 0.5rem;
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: -0.03em;
    }
    .price {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.55rem;
      letter-spacing: -0.03em;
    }
    .price s {
      font-size: 0.95rem;
      color: var(--muted);
      font-weight: 600;
      margin-left: 0.35rem;
    }
    .rack {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .rack-item {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 0.75rem 0.9rem;
      display: grid;
      grid-template-columns: auto 64px 1fr auto;
      gap: 0.75rem;
      align-items: center;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease;
    }
    .rack-item:hover { transform: translateY(-2px); }
    .rack-idx {
      font-family: var(--font-display);
      font-weight: 800;
      color: rgba(18, 24, 38, 0.28);
      font-size: 0.9rem;
    }
    .rack-item h4 {
      margin: 0;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .rack-item .sub {
      font-size: 0.75rem;
      color: var(--muted);
    }
    .rack-item .price {
      font-size: 1rem;
    }

    .tiles {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-top: 1rem;
    }
    @media (min-width: 720px) {
      .tiles { grid-template-columns: repeat(4, 1fr); }
    }
    .tile {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 0.85rem;
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: transform 0.2s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }
    .tile:hover { transform: translateY(-3px); }
    .tile .thumb {
      height: 110px;
      display: grid;
      place-items: center;
      margin-bottom: 0.75rem;
      background: #f7f5fa;
      border-radius: var(--radius-sm);
      overflow: hidden;
      padding: 0.75rem;
    }
    .tile .thumb img {
      width: 100%;
      height: 100%;
      max-height: 90px;
      object-fit: contain;
      object-position: center;
    }
    .tile h4 {
      margin: 0 0 0.25rem;
      font-size: 0.85rem;
      font-weight: 700;
      position: relative;
      z-index: 1;
      background: var(--white);
    }
    .tile .price {
      font-size: 1rem;
      position: relative;
      z-index: 1;
      background: var(--white);
    }

    /* categories */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
    }
    @media (min-width: 720px) {
      .cat-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 1000px) {
      .cat-grid { grid-template-columns: repeat(5, 1fr); }
    }
    .cat-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.1rem;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      min-height: 210px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .cat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }
    .cat-card .img-wrap {
      flex: 1;
      display: grid;
      place-items: center;
      background: transparent;
      border-radius: var(--radius-md);
      margin-bottom: 0.85rem;
      padding: 0.75rem;
    }
    .cat-card img {
      max-height: 110px;
      object-fit: contain;
    }
    .cat-card h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 1rem;
      letter-spacing: -0.02em;
    }
    .cat-card .go {
      margin-top: 0.55rem;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: var(--ink);
      color: white;
      display: grid;
      place-items: center;
      font-size: 0.85rem;
      align-self: end;
    }

    /* branches */
    .branch-panel {
      background: var(--accent);
      color: var(--ink);
      border-radius: var(--radius-xl);
      padding: 1.75rem;
      display: grid;
      gap: 1.5rem;
      box-shadow: 0 14px 30px rgba(255, 90, 31, 0.25);
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 900px) {
      .branch-panel { grid-template-columns: 0.9fr 1.4fr; padding: 2.25rem; }
    }
    .branch-panel > * { position: relative; z-index: 1; }
    .branch-panel h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      letter-spacing: -0.04em;
      margin: 0.5rem 0 0.75rem;
      color: var(--ink);
    }
    .branch-grid {
      display: grid;
      gap: 0.65rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 560px) {
      .branch-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 900px) {
      .branch-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    .branch {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      background: var(--ink);
      border: 1px solid rgba(18, 24, 38, 0.85);
      border-radius: var(--radius-md);
      padding: 0.9rem 1rem;
      color: #fff;
      transition: 0.2s ease;
    }
    .branch:hover {
      background: #1c2436;
      border-color: var(--ink);
      filter: brightness(1.06);
    }
    .dot {
      width: 0.55rem;
      height: 0.55rem;
      border-radius: 50%;
      display: inline-block;
      margin-right: 0.55rem;
    }
    .dot.on { background: #34d399; }
    .dot.off { background: #f87171; }

    /* newsletter */
    .news {
      background: linear-gradient(135deg, #1a2233, #121826 55%, #2a1a16);
      border-radius: var(--radius-xl);
      padding: 2rem 1.5rem;
      color: white;
      display: grid;
      gap: 1.25rem;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    @media (min-width: 800px) {
      .news {
        grid-template-columns: 0.8fr 1.4fr;
        align-items: center;
        padding: 2.4rem;
      }
    }
    .news::after {
      content: "";
      position: absolute;
      inset: auto -10% -40% 40%;
      height: 260px;
      background: radial-gradient(circle, rgba(255, 90, 31, 0.28), transparent 65%);
      pointer-events: none;
    }
    .news h2 {
      margin: 0 0 0.4rem;
      font-family: var(--font-display);
      letter-spacing: -0.03em;
      font-size: 1.7rem;
    }
    .news p { margin: 0; color: rgba(255, 255, 255, 0.65); }
    .news-form {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      position: relative;
      z-index: 1;
    }
    @media (min-width: 640px) {
      .news-form { flex-direction: row; }
    }
    .news-form input {
      flex: 1;
      border: 0;
      border-radius: 999px;
      padding: 0.95rem 1.2rem;
      outline: none;
    }

    /* brands */
    .brands {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 2rem 1.25rem;
      box-shadow: var(--shadow-sm);
    }
    .brands h2 {
      text-align: center;
      font-family: var(--font-display);
      letter-spacing: -0.03em;
      margin: 0 0 1.5rem;
      font-size: 1.45rem;
    }
    .brand-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem 1rem;
      align-items: center;
      justify-items: center;
      max-width: 920px;
      margin: 0 auto;
    }
    @media (min-width: 800px) {
      .brand-grid { grid-template-columns: repeat(7, 1fr); }
    }
    .brand-grid img {
      max-height: 36px;
      width: auto;
      filter: grayscale(1);
      opacity: 0.7;
      transition: 0.25s ease;
    }
    .brand-grid a:hover img {
      filter: none;
      opacity: 1;
    }
    .brands-more {
      display: flex;
      justify-content: center;
      margin-top: 1.75rem;
    }

    /* footer */
    .footer {
      margin-top: 1rem;
      padding-bottom: 2rem;
    }
    .footer-banner {
      background: var(--accent);
      border-radius: var(--radius-xl);
      padding: 1.5rem 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      box-shadow: 0 14px 30px rgba(255, 90, 31, 0.25);
    }
    .footer-banner p {
      margin: 0;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0.7;
    }
    .footer-banner strong {
      display: block;
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3rem);
      letter-spacing: -0.05em;
      line-height: 1;
      margin-top: 0.25rem;
    }
    .footer-banner strong span {
      background: var(--ink);
      color: var(--accent);
      padding: 0 0.2em;
      border-radius: 0.25em;
    }
    .footer-grid {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 1.75rem;
      display: grid;
      gap: 1.75rem;
      box-shadow: var(--shadow-sm);
    }
    @media (min-width: 800px) {
      .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    }
    .footer-grid h4 {
      margin: 0 0 0.85rem;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 800;
    }
    .footer-grid ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-grid li + li { margin-top: 0.45rem; }
    .footer-grid a {
      color: var(--ink-soft);
      font-weight: 600;
      font-size: 0.92rem;
    }
    .footer-grid a:hover { color: var(--accent); }
    .copy {
      text-align: center;
      color: var(--muted);
      font-size: 0.8rem;
      margin-top: 1.25rem;
    }

    .demo-banner {
      position: fixed;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      background: rgba(18, 24, 38, 0.92);
      color: white;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      box-shadow: var(--shadow);
      white-space: nowrap;
      backdrop-filter: blur(8px);
    }
    .demo-banner a { color: #ffb090; text-decoration: underline; }

    @keyframes rise {
      from { opacity: 0; transform: translateY(14px); }
      to { opacity: 1; transform: none; }
    }
    .hero-copy, .finder { animation: rise 0.65s ease both; }

    .panel-hidden { display: none !important; }


/* —— Soft homepage car filter (identical to home1 finder fields) —— */
body.home1-page .finder .finder-fields.home1-soft-filter,
body.home1-page .home1-soft-filter {
  position: relative;
  z-index: 30;
  display: grid !important;
  gap: 0.65rem !important;
  grid-template-columns: 1fr !important;
  align-items: end !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}
@media (min-width: 640px) {
  body.home1-page .home1-soft-filter {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 1.45fr) auto !important;
  }
}
body.home1-page .home1-soft-filter .field {
  min-width: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
body.home1-page .home1-soft-filter .field > .relative {
  width: 100%;
  min-width: 0;
}
body.home1-page .home1-soft-filter .field label {
  display: block !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.45) !important;
  margin-bottom: 0.35rem !important;
}
body.home1-page .home1-soft-control {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 2.85rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  cursor: pointer;
  text-align: left;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23ffffff99' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
}
body.home1-page .home1-soft-control[aria-busy="true"] {
  background-image: none !important;
}
body.home1-page .home1-soft-control:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed;
}
body.home1-page .home1-soft-spinner {
  position: absolute !important;
  right: 1rem !important;
  top: 50% !important;
  width: 1rem !important;
  height: 1rem !important;
  margin-top: -0.5rem !important;
  border: 2px solid rgba(255, 255, 255, 0.22) !important;
  border-top-color: #ff5a1f !important;
  border-radius: 999px !important;
  animation: home1-soft-spin 0.65s linear infinite !important;
  pointer-events: none !important;
}
@keyframes home1-soft-spin {
  to { transform: rotate(360deg); }
}
body.home1-page .home1-soft-control:focus-within {
  background-color: rgba(255, 255, 255, 0.16) !important;
}
body.home1-page .home1-soft-input,
body.home1-page .home1-soft-filter input.home1-soft-input,
body.home1-page .home1-soft-filter input[type="text"] {
  width: 100% !important;
  min-width: 0 !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  ring: 0 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  padding: 0.75rem 2.25rem 0.75rem 1rem !important;
  margin: 0 !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
body.home1-page .home1-soft-input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
  opacity: 1 !important;
}

/* Black theme dropdowns — wide enough for full values */
/* Finder must never clip soft dropdown panels */
body.home1-page .finder,
body.home1-page #vehicle-picker,
body.home1-page .hero-stage {
  overflow: visible !important;
}

body.home1-page .home1-soft-dropdown {
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  top: calc(100% + 0.45rem) !important;
  z-index: 400 !important;
  min-width: 100% !important;
  width: max(100%, 22rem) !important;
  max-width: min(36rem, 92vw) !important;
  max-height: 280px !important;
  overflow: auto !important;
  background: #121826 !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45) !important;
  padding: 0.35rem !important;
}
body.home1-page .home1-soft-dropdown ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.home1-page .home1-soft-option {
  padding: 0.75rem 0.9rem !important;
  font-size: 0.88rem !important;
  line-height: 1.35 !important;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92) !important;
  background: transparent !important;
  border-radius: 12px !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
body.home1-page .home1-soft-option:hover,
body.home1-page .home1-soft-option.is-focus {
  background: rgba(255, 90, 31, 0.22) !important;
  color: #fff !important;
}
body.home1-page .home1-soft-filter .field:nth-child(3) .home1-soft-dropdown {
  left: auto !important;
  right: 0 !important;
  width: max(100%, 28rem) !important;
  max-width: min(40rem, 94vw) !important;
}
body.home1-page .home1-soft-filter .field:nth-child(2) .home1-soft-dropdown {
  width: max(100%, 24rem) !important;
}
body.home1-page .home1-soft-forget {
  position: absolute !important;
  right: 0.15rem !important;
  top: -2.55rem !important;
  width: 1.75rem !important;
  height: 1.75rem !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  font-size: 0.75rem !important;
  text-decoration: none !important;
  z-index: 3;
  border: 0 !important;
}
body.home1-page .home1-soft-filter .btn.btn-accent,
body.home1-page .home1-soft-filter button.btn-accent {
  height: 2.85rem !important;
  min-height: 2.85rem !important;
  align-self: end !important;
  white-space: nowrap !important;
  border-radius: 999px !important;
  background: #ff5a1f !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.28) !important;
  padding: 0.7rem 1.35rem !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  clip-path: none !important;
}
@media (max-width: 639px) {
  body.home1-page .home1-soft-filter {
    grid-template-columns: 1fr !important;
  }
  body.home1-page .home1-soft-filter .btn.btn-accent {
    width: 100% !important;
  }
  body.home1-page .home1-soft-dropdown {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Kill any leftover industrial chrome if it leaks into finder */
body.home1-page .finder [class*="ECEFF3"],
body.home1-page .finder .bg-\[\#ECEFF3\] {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

/* Ensure topbar matches home1 exactly on soft homepage */
body.home1-page header.topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 600 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 1rem 0 0.75rem !important;
  backdrop-filter: blur(14px);
  background: rgba(246, 244, 248, 0.78) !important;
  border-bottom: 1px solid rgba(18, 24, 38, 0.04);
  box-sizing: border-box;
}
body.home1-page header.topbar > .wrap.topbar-inner,
body.home1-page header.topbar > div.topbar-inner,
body.home1-page .topbar-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  width: min(1180px, calc(100% - 2rem)) !important;
  margin-inline: auto !important;
  padding: 0 !important;
}
body.home1-page .topbar .logo {
  flex: 0 0 auto !important;
  justify-self: start;
}
body.home1-page .topbar .pill-nav {
  flex: 0 1 auto !important;
  margin: 0 auto;
}
body.home1-page .topbar .top-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex: 0 0 auto !important;
  margin-left: auto;
  position: relative;
}
@media (min-width: 980px) {
  body.home1-page .topbar .pill-nav {
    display: flex !important;
  }
}
@media (max-width: 979px) {
  body.home1-page .topbar .pill-nav {
    display: none !important;
  }
}
body.home1-page .hero {
  padding: 1.5rem 0 3rem !important;
}
body.home1-page .hero-shell {
  display: grid !important;
  gap: 1.25rem !important;
}
@media (min-width: 980px) {
  body.home1-page .hero-shell {
    grid-template-columns: 1.05fr 0.95fr !important;
    align-items: stretch !important;
    min-height: 560px;
  }
}
