  :root {
      --cyan: #00C2FF;
      --cyan-dark: #0099CC;
      --black: #0A0A0A;
      --silver: #D1D3D4;
      --silver-light: #F0F1F2;
      --white: #FFFFFF;
      --text: #2B2B2B;
      --text-light: #6B7280;
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
      --radius: 12px;
      --transition: 0.3s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

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

    /* ── Page Breadcrumb ── */
    .inner-page { padding-top: 72px; }

    .page-breadcrumb {
      position: relative;
      background: var(--black);
      color: #fff;
      padding: 56px 0 48px;
    }

    .page-breadcrumb-has-image {
      background-image: linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.72)), var(--page-breadcrumb-bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .page-breadcrumb .container {
      position: relative;
      z-index: 1;
    }

    .page-breadcrumb-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--cyan);
      margin-bottom: 12px;
    }

    .page-breadcrumb h1 {
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      font-weight: 800;
      margin: 0 0 12px;
      line-height: 1.2;
    }

    .page-breadcrumb p {
      max-width: 760px;
      opacity: 0.85;
      line-height: 1.75;
      font-size: 1rem;
      margin: 0;
    }

    /* â”€â”€ Header â”€â”€ */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: var(--transition);
    }

    .header.scrolled { box-shadow: var(--shadow); }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      gap: 20px;
    }

    .logo img { height: 56px; width: auto; }

    .nav { display: flex; align-items: center; gap: 28px; }

    .nav a {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text);
      transition: var(--transition);
      position: relative;
    }

    .nav a:hover, .nav a.active { color: var(--cyan); }

    .nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: var(--cyan);
      border-radius: 2px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-primary {
      background: var(--cyan);
      color: var(--black);
      border-color: var(--cyan);
    }

    .btn-primary:hover {
      background: var(--cyan-dark);
      border-color: var(--cyan-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,194,255,0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: var(--cyan);
    }

    .btn-outline:hover {
      background: var(--cyan);
      color: var(--black);
    }

    .btn-dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
    }

    .btn-dark:hover {
      background: #222;
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .menu-toggle span {
      width: 26px; height: 2px;
      background: var(--black);
      transition: var(--transition);
    }

    /* â”€â”€ Hero â”€â”€ */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      z-index: 0;
      transition: opacity 1.4s ease-in-out, visibility 0s linear 1.4s;
      display: flex;
      align-items: center;
      pointer-events: none;
    }

    .hero-slide.active,
    .hero-slide.is-leaving {
      visibility: visible;
      transition: opacity 1.4s ease-in-out, visibility 0s linear 0s;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 2;
      pointer-events: auto;
    }

    .hero-slide.is-leaving {
      opacity: 0;
      z-index: 1;
      pointer-events: none;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      will-change: transform;
    }

    .hero-slide.active .hero-bg {
      animation: heroKenBurns 12s ease-out forwards;
    }

    .hero-slide.is-leaving .hero-bg {
      animation: none;
      transform: scale(1);
    }

    @keyframes heroKenBurns {
      from { transform: scale(1.06); }
      to { transform: scale(1); }
    }

    .hero-slide:nth-child(1) .hero-bg {
      background-image: linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.4) 100%),
        url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80');
    }

    .hero-slide:nth-child(2) .hero-bg {
      background-image: linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.4) 100%),
        url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&q=80');
    }

    .hero-slide:nth-child(3) .hero-bg {
      background-image: linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.4) 100%),
        url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1920&q=80');
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: var(--white);
      max-width: 680px;
      padding-top: 80px;
    }

    .hero-tag {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--cyan);
      margin-bottom: 16px;
    }

    .hero-content h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1.05rem;
      opacity: 0.9;
      margin-bottom: 32px;
      max-width: 520px;
    }

    .hero-controls {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;
    }

    .hero-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      border: 2px solid var(--white);
      background: transparent;
      cursor: pointer;
      transition: var(--transition);
    }

    .hero-dot.active { background: var(--cyan); border-color: var(--cyan); }

    .hero-arrows {
      position: absolute;
      bottom: 36px;
      right: 4%;
      display: flex;
      gap: 12px;
      z-index: 3;
    }

    .hero-arrow {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 2px solid var(--cyan);
      background: rgba(0,194,255,0.15);
      color: var(--white);
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .hero-arrow:hover { background: var(--cyan); color: var(--black); }

    .scroll-hint {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      writing-mode: vertical-rl;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cyan);
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .scroll-hint::after {
      content: '';
      width: 1px;
      height: 60px;
      background: var(--cyan);
    }

    /* â”€â”€ Quick Tools (Dashboard-style) â”€â”€ */
    .tools {
      padding: 90px 0;
      background: var(--silver-light);
    }

    .tools-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .tool-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.05);
      transition: var(--transition);
    }

    .tool-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }

    .tool-header {
      background: var(--black);
      color: var(--white);
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .tool-icon {
      width: 52px; height: 52px;
      background: var(--cyan);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .tool-header h3 {
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .tool-header p {
      font-size: 0.8rem;
      opacity: 0.7;
      margin-top: 2px;
    }

    .tool-body { padding: 28px; }

    .form-group { margin-bottom: 18px; }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      color: var(--text-light);
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid var(--silver-light);
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.95rem;
      transition: var(--transition);
      background: var(--white);
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(0,194,255,0.15);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .calc-result {
      background: var(--silver-light);
      border-radius: 8px;
      padding: 20px;
      margin-top: 8px;
      text-align: center;
    }

    .calc-result .amount {
      font-size: 2rem;
      font-weight: 800;
      color: var(--cyan-dark);
    }

    .calc-result .label {
      font-size: 0.8rem;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .calc-details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 16px;
    }

    .calc-detail {
      background: var(--white);
      padding: 12px;
      border-radius: 8px;
      text-align: center;
    }

    .calc-detail strong {
      display: block;
      font-size: 1rem;
      color: var(--black);
    }

    .calc-detail span {
      font-size: 0.75rem;
      color: var(--text-light);
    }

    /* â”€â”€ Section Common â”€â”€ */
    .section { padding: 90px 0; }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 56px;
    }

    .section-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--black);
      margin-bottom: 16px;
    }

    .section-header p {
      color: var(--text-light);
      font-size: 1.05rem;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--cyan);
      margin-bottom: 12px;
    }

    /* â”€â”€ Features â”€â”€ */
    .features { background: var(--white); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
    }

    .feature-item { text-align: center; padding: 20px; }

    .feature-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
      perspective: 900px;
    }

    .feature-icon-flip {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    }

    .feature-item:hover .feature-icon-flip {
      transform: rotateY(180deg);
    }

    .feature-icon-face {
      position: absolute;
      inset: 0;
      border: 2px solid var(--silver);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      background: var(--white);
    }

    .feature-icon-back {
      transform: rotateY(180deg);
      border-color: var(--cyan);
      background: rgba(0, 194, 255, 0.12);
      box-shadow: 0 8px 24px rgba(0, 194, 255, 0.18);
    }

    .feature-item h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--black);
    }

    .feature-item p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* â”€â”€ Inventory â”€â”€ */
    .inventory { background: var(--silver-light); }

    .inventory-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .car-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

    .car-img {
      height: 200px;
      background: linear-gradient(135deg, #e8e8e8, #d1d3d4);
      position: relative;
      overflow: hidden;
    }

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

    .car-badges {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      max-width: calc(100% - 24px);
      pointer-events: none;
    }

    .car-badge {
      background: var(--cyan);
      color: var(--black);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      text-transform: uppercase;
      line-height: 1.2;
      white-space: nowrap;
    }

    .car-badge-status {
      background: #dc3545;
      color: #fff;
    }

    .car-body { padding: 20px; }

    .car-body h3 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .car-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 16px;
    }

    .car-spec {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    .car-spec strong {
      display: block;
      color: var(--text);
      font-size: 0.82rem;
    }

    /* ── Blog ── */
    .home-blog { background: var(--white); }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .blog-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .home-blog .blog-card,
    .blog-page .blog-card {
      background: var(--silver-light);
    }

    .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

    .blog-card-image {
      display: block;
      height: 200px;
      overflow: hidden;
      background: linear-gradient(135deg, #e8e8e8, #d1d3d4);
    }

    .blog-page .blog-card-image {
      height: 280px;
    }

    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

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

    .blog-card-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      font-size: 0.75rem;
      color: var(--text-light);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 600;
    }

    .blog-card-body h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-card-body h3 a:hover { color: var(--cyan-dark, #0099cc); }

    .blog-card-body p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.65;
      margin-bottom: 16px;
      flex: 1;
    }

    .blog-card-link {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--black);
      margin-top: auto;
    }

    .blog-card-link:hover { color: var(--cyan-dark, #0099cc); }

    .blog-detail {
      max-width: 860px;
    }

    .blog-article-image {
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 28px;
      box-shadow: var(--shadow);
    }

    .blog-article-image img {
      width: 100%;
      display: block;
      max-height: 480px;
      object-fit: cover;
    }

    .blog-article-excerpt {
      font-size: 1.1rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .blog-article-body {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text);
    }

    .blog-article-body h2,
    .blog-article-body h3 {
      margin: 1.4em 0 0.6em;
      color: var(--black);
    }

    .blog-article-body p { margin-bottom: 1em; }

    .blog-article-body ul,
    .blog-article-body ol {
      margin: 0 0 1em 1.25em;
    }

    .blog-article-body a { color: #0099cc; text-decoration: underline; }

    .blog-related {
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .blog-related h2 {
      font-size: 1.35rem;
      margin-bottom: 28px;
    }

    .blog-related .blog-grid {
      max-width: none;
    }

    /* ── Homepage Services Cards ── */
    .home-services {
      position: relative;
      overflow: hidden;
      background: #0c1118;
      color: #fff;
      padding: 100px 0;
    }

    .home-services-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(0, 194, 255, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0, 194, 255, 0.1), transparent 50%),
        linear-gradient(180deg, #0c1118 0%, #121a24 100%);
      pointer-events: none;
    }

    .home-services .container { position: relative; z-index: 1; }

    .home-services-header .section-tag {
      color: var(--cyan);
      background: rgba(0, 194, 255, 0.12);
    }

    .home-services-header h2 {
      color: #fff;
    }

    .home-services-header p {
      color: rgba(255, 255, 255, 0.7);
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    .home-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .home-service-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 28px 26px 30px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      overflow: hidden;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.45s ease;
      min-height: 100%;
    }

    .home-service-card-glow {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      top: -60px;
      right: -50px;
      background: radial-gradient(circle, rgba(0, 194, 255, 0.35), transparent 70%);
      opacity: 0;
      transition: opacity 0.45s ease, transform 0.6s ease;
      pointer-events: none;
    }

    .home-service-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 194, 255, 0.45);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 194, 255, 0.12);
    }

    .home-service-card:hover .home-service-card-glow {
      opacity: 1;
      transform: scale(1.15);
    }

    .home-service-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
    }

    .home-service-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #0a0a0a;
      background: linear-gradient(145deg, #00C2FF, #7ae2ff);
      box-shadow: 0 10px 24px rgba(0, 194, 255, 0.35);
      animation: home-service-icon-float 4.5s ease-in-out infinite;
    }

    .home-service-card:nth-child(2) .home-service-icon { animation-delay: 0.4s; }
    .home-service-card:nth-child(3) .home-service-icon { animation-delay: 0.8s; }

    .home-service-icon svg {
      width: 30px;
      height: 30px;
    }

    .home-service-index {
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.28);
    }

    .home-service-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 10px;
    }

    .home-service-card h3 {
      font-size: 1.2rem;
      font-weight: 800;
      line-height: 1.3;
      margin: 0 0 12px;
      color: #fff;
    }

    .home-service-desc {
      font-size: 0.9rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.65);
      margin: 0 0 18px;
    }

    .home-service-bullets {
      list-style: none;
      margin: 0 0 24px;
      padding: 0;
      display: grid;
      gap: 8px;
      flex: 1;
    }

    .home-service-bullets li {
      position: relative;
      padding-left: 18px;
      font-size: 0.84rem;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.78);
    }

    .home-service-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.18);
    }

    .home-service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.88rem;
      font-weight: 700;
      color: #fff;
      margin-top: auto;
      transition: color 0.25s ease, gap 0.25s ease;
    }

    .home-service-link:hover {
      color: var(--cyan);
      gap: 12px;
    }

    .home-services-cta {
      text-align: center;
      margin-top: 40px;
    }

    .home-services-cta .btn-dark {
      background: #fff;
      color: #0a0a0a;
    }

    .home-services-cta .btn-dark:hover {
      background: var(--cyan);
      color: #0a0a0a;
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal][data-reveal-delay="1"] { transition-delay: 0.12s; }
    [data-reveal][data-reveal-delay="2"] { transition-delay: 0.24s; }
    [data-reveal][data-reveal-delay="3"] { transition-delay: 0.36s; }

    @keyframes home-service-icon-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* ── Homepage Contact CTA ── */
    .home-cta {
      position: relative;
      overflow: hidden;
      padding: 72px 0;
      background: #0a0a0a;
      color: #fff;
    }

    .home-cta-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 80% at 0% 50%, rgba(0, 194, 255, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 50%, rgba(0, 194, 255, 0.08), transparent 50%),
        linear-gradient(120deg, #0a0a0a 0%, #111820 55%, #0a0a0a 100%);
      pointer-events: none;
    }

    .home-cta-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.35;
      mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    }

    .home-cta .container { position: relative; z-index: 1; }

    .home-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 36px 40px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    }

    .home-cta-copy {
      flex: 1;
      min-width: 0;
      max-width: 640px;
    }

    .home-cta-tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cyan);
      background: rgba(0, 194, 255, 0.12);
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 14px;
    }

    .home-cta-copy h2 {
      font-size: clamp(1.55rem, 3vw, 2.15rem);
      font-weight: 800;
      line-height: 1.2;
      margin: 0 0 12px;
      color: #fff;
    }

    .home-cta-copy p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.7);
    }

    .home-cta-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 14px;
      flex-shrink: 0;
    }

    .home-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 28px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 800;
      color: #0a0a0a;
      background: linear-gradient(135deg, #00C2FF, #7ae2ff);
      box-shadow: 0 12px 32px rgba(0, 194, 255, 0.35);
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, gap 0.25s ease;
      white-space: nowrap;
    }

    .home-cta-btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 18px 40px rgba(0, 194, 255, 0.45);
      gap: 16px;
      color: #0a0a0a;
    }

    .home-cta-btn-arrow {
      display: inline-grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(10, 10, 10, 0.12);
      font-size: 1rem;
      line-height: 1;
    }

    .home-cta-phone {
      font-size: 0.88rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.65);
      transition: color 0.25s ease;
    }

    .home-cta-phone:hover { color: var(--cyan); }

    @media (max-width: 768px) {
      .home-cta { padding: 56px 0; }

      .home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 28px;
      }

      .home-cta-actions {
        align-items: flex-start;
        width: 100%;
      }

      .home-cta-btn { width: 100%; justify-content: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      .home-service-icon { animation: none; }
      [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    .car-price {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--cyan-dark);
      margin-bottom: 14px;
    }

    .car-actions {
      display: flex;
      gap: 10px;
    }

    .car-actions .btn { flex: 1; justify-content: center; padding: 10px 16px; font-size: 0.78rem; }

    /* â”€â”€ Auction Sheet Banner (Dashboard-style) â”€â”€ */
    .auction-banner {
      background: linear-gradient(135deg, #0a1628 0%, #111d2e 50%, #0d1520 100%);
      padding: 60px 0;
      overflow: hidden;
      position: relative;
    }

    .auction-banner-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      min-height: 320px;
    }

    .auction-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 300px;
    }

    .auction-glow {
      position: absolute;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(76, 175, 80, 0.45) 0%, transparent 70%);
      border-radius: 50%;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .auction-sheet-doc {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%) rotate(3deg);
      width: 200px;
      background: var(--white);
      border-radius: 4px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      z-index: 1;
    }

    .auction-sheet-doc .doc-header {
      background: #1565C0;
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 800;
      text-align: center;
      padding: 6px 8px;
      letter-spacing: 1px;
    }

    .auction-sheet-doc .doc-body {
      padding: 8px 10px;
      font-size: 0.55rem;
      color: #333;
      line-height: 1.6;
    }

    .auction-sheet-doc .doc-row {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #eee;
      padding: 2px 0;
    }

    .auction-sheet-doc .doc-row span:last-child { font-weight: 600; }

    .auction-car {
      position: relative;
      z-index: 2;
      width: 85%;
      max-width: 420px;
      filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
    }

    .auction-car img {
      width: 100%;
      height: auto;
    }

    .auction-content {
      text-align: center;
      padding: 20px 0;
    }

    .auction-content h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .auction-content h2 .green { color: #4CAF50; }
    .auction-content h2 .white { color: var(--white); display: block; }

    .auction-content .btn-verify {
      display: inline-block;
      margin-top: 28px;
      padding: 14px 40px;
      background: var(--cyan);
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 4px;
      transition: var(--transition);
      border: none;
      cursor: pointer;
    }

    .auction-content .btn-verify:hover {
      background: var(--cyan-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 194, 255, 0.35);
    }

    /* â”€â”€ Services (Dashboard-style) â”€â”€ */
    .services {
      padding: 80px 0;
      background: var(--silver-light);
    }

    .services-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }

    .services-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--cyan);
      margin-bottom: 16px;
    }

    .services-header p {
      color: var(--text-light);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .services-divider {
      width: 60px;
      height: 4px;
      background: var(--cyan);
      margin: 24px auto 0;
      border-radius: 2px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .service-item {
      text-align: center;
      padding: 32px 24px;
      position: relative;
      transition: var(--transition);
    }

    .service-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background: rgba(0, 0, 0, 0.08);
    }

    .service-item:hover { transform: translateY(-4px); }

    .service-icon-wrap {
      position: relative;
      width: 100px;
      height: 64px;
      margin: 0 auto 16px;
    }

    .service-icon-wrap svg.car-icon {
      width: 100%;
      height: 100%;
    }

    .service-badge {
      position: absolute;
      top: -4px;
      right: 8px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 700;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .service-badge.loan { background: #F5C518; }
    .service-badge.registration { background: #F58220; }
    .service-badge.aftersales { background: #6ABF4B; }

    .service-underline {
      width: 36px;
      height: 3px;
      margin: 0 auto 16px;
      border-radius: 2px;
    }

    .service-underline.loan { background: #F5C518; }
    .service-underline.registration { background: #F58220; }
    .service-underline.aftersales { background: #6ABF4B; }

    .service-item h3 {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--black);
    }

    /* â”€â”€ Category Tabs (BEG-style) â”€â”€ */
    .categories {
      background: var(--black);
      color: var(--white);
      padding: 80px 0;
    }

    .cat-tabs {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 48px;
    }

    .cat-tab {
      padding: 16px 40px;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
      background: transparent;
      color: var(--white);
      font-family: inherit;
    }

    .cat-tab.active, .cat-tab:hover {
      border-color: var(--cyan);
      background: var(--cyan);
      color: var(--black);
    }

    .cat-content { text-align: center; max-width: 600px; margin: 0 auto; }

    .cat-content h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .cat-content p {
      opacity: 0.8;
      margin-bottom: 28px;
      line-height: 1.8;
    }

    /* â”€â”€ CTA Banner â”€â”€ */
    .cta-banner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin: 0;
    }

    .cta-box {
      padding: 60px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cta-box.dark { background: var(--black); color: var(--white); }
    .cta-box.light { background: var(--cyan); color: var(--black); }

    .cta-box h3 {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .cta-box p { margin-bottom: 24px; opacity: 0.85; }

    /* â”€â”€ FAQ â”€â”€ */
    .faq { background: var(--white); }

    .faq-list { max-width: 800px; margin: 0 auto; }

    .faq-item {
      border-bottom: 1px solid var(--silver-light);
    }

    .faq-question {
      width: 100%;
      padding: 22px 0;
      background: none;
      border: none;
      text-align: left;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 600;
      color: var(--black);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.4rem;
      color: var(--cyan);
      transition: var(--transition);
      flex-shrink: 0;
    }

    .faq-item.open .faq-question::after { content: '−'; }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-answer p {
      padding-bottom: 22px;
      color: var(--text-light);
      line-height: 1.8;
    }

    .faq-item.open .faq-answer { max-height: 800px; }

    /* â”€â”€ Contact â”€â”€ */
    .contact { background: var(--white); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 24px;
      color: var(--black);
    }

    .contact-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }

    .contact-item-icon {
      width: 48px; height: 48px;
      background: var(--cyan);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .contact-item h4 {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-light);
      margin-bottom: 4px;
    }

    .contact-item p { font-weight: 600; }

    .contact-form {
      background: var(--white);
      padding: 36px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .contact-form h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .contact-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid var(--silver-light);
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.95rem;
      resize: vertical;
      min-height: 120px;
      transition: var(--transition);
    }

    .contact-form textarea:focus {
      outline: none;
      border-color: var(--cyan);
    }

    /* â”€â”€ Footer â”€â”€ */
    .footer {
      background: var(--black);
      color: var(--white);
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand img { height: 64px; margin-bottom: 16px; }

    .footer-brand p {
      font-size: 0.9rem;
      opacity: 0.7;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: var(--transition);
    }

    .footer-social-link svg {
      width: 18px;
      height: 18px;
      fill: var(--white);
      opacity: 0.85;
    }

    .footer-social-link:hover {
      background: var(--cyan);
      border-color: var(--cyan);
      transform: translateY(-2px);
    }

    .footer-social-link:hover svg {
      fill: var(--black);
      opacity: 1;
    }

    .footer-col h4 {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      color: var(--cyan);
    }

    .footer-col a {
      display: block;
      font-size: 0.9rem;
      opacity: 0.7;
      margin-bottom: 10px;
      transition: var(--transition);
    }

    .footer-col a:hover { opacity: 1; color: var(--cyan); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      text-align: center;
      font-size: 0.85rem;
      opacity: 0.5;
    }

    /* ── Floating Actions (always visible while scrolling) ── */
    .float-actions {
      position: fixed !important;
      right: max(16px, env(safe-area-inset-right));
      bottom: max(20px, env(safe-area-inset-bottom));
      left: auto;
      top: auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 99999;
      margin: 0;
      pointer-events: none;
    }

    .float-actions .float-btn {
      pointer-events: auto;
    }

    .float-btn {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
      transition: var(--transition);
      border: none;
      cursor: pointer;
      text-decoration: none;
      flex-shrink: 0;
    }

    .float-btn.whatsapp {
      background: #25D366;
      color: #fff;
    }

    .float-btn.phone {
      background: #00C2FF;
      color: #fff;
    }

    .float-btn:hover {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    }

    @media (max-width: 768px) {
      .float-actions {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        gap: 10px;
      }

      .float-btn {
        width: 52px;
        height: 52px;
        border-radius: 12px;
      }
    }

    /* ── Site pagination (no Tailwind) ── */
    .site-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .site-pagination__item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      padding: 8px 14px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 0.85rem;
      line-height: 1;
      background: #fff;
      color: var(--text);
      text-decoration: none;
    }

    .site-pagination__item:hover {
      border-color: var(--cyan);
      color: var(--cyan-dark);
    }

    .site-pagination__item.is-active {
      background: var(--cyan);
      border-color: var(--cyan);
      font-weight: 700;
      color: var(--black);
    }

    .site-pagination__item.is-disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    /* â”€â”€ Responsive â”€â”€ */
    @media (max-width: 992px) {
      .features-grid, .inventory-grid, .blog-grid, .home-services-grid { grid-template-columns: repeat(2, 1fr); }
      .tools-grid, .contact-grid, .cta-banner, .footer-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; gap: 8px; }
      .service-item:not(:last-child)::after { display: none; }
      .service-item { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
      .service-item:last-child { border-bottom: none; }
      .auction-banner-inner { grid-template-columns: 1fr; text-align: center; }
      .auction-visual { min-height: 240px; }
      .auction-sheet-doc { width: 160px; right: 10%; }
      .scroll-hint { display: none; }
    }

    @media (max-width: 768px) {
      .nav {
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
      }

      .nav.open { transform: translateY(0); opacity: 1; }

      .menu-toggle { display: flex; }

      .header .btn-primary { display: none; }

      .features-grid, .inventory-grid, .blog-grid, .home-services-grid { grid-template-columns: 1fr; }

      .auction-sheet-doc { width: 130px; right: 0; opacity: 0.85; }
      .auction-car { width: 75%; }

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

      .cat-tabs { flex-direction: column; align-items: center; }

      .hero-content h1 { font-size: 2rem; }

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

    /* ── Car Detail (BegAutos-style) ── */
    .car-detail-page {
      background: var(--white);
      /* Clear fixed site header + breathing room under menu */
      padding: 132px 0 80px;
    }

    body.header-theme-showcase .car-detail-page {
      padding-top: 168px;
    }

    body.header-theme-center .car-detail-page {
      padding-top: 148px;
    }

    .car-detail-breadcrumb {
      margin: 0 0 28px;
    }

    .car-detail-breadcrumb-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 4px;
      list-style: none;
      margin: 0;
      padding: 10px 14px;
      background: #f4f6f8;
      border: 1px solid #e4e7eb;
      border-radius: 12px;
    }

    .car-detail-breadcrumb-list > li {
      display: inline-flex;
      align-items: center;
      min-width: 0;
    }

    .car-detail-bc-sep {
      color: #a8b0ba;
      flex-shrink: 0;
    }

    .car-detail-bc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #5b6570;
      transition: background 0.2s ease, color 0.2s ease;
      white-space: nowrap;
    }

    .car-detail-bc-link svg {
      flex-shrink: 0;
      opacity: 0.8;
    }

    .car-detail-bc-link:hover {
      background: rgba(0, 194, 255, 0.14);
      color: var(--cyan-dark);
    }

    .car-detail-bc-current {
      display: inline-block;
      max-width: min(340px, 52vw);
      padding: 6px 12px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid rgba(0, 194, 255, 0.35);
      color: var(--black);
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1.35;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    @media (max-width: 992px) {
      .car-detail-page,
      body.header-theme-showcase .car-detail-page,
      body.header-theme-center .car-detail-page {
        padding-top: 124px;
      }

      .car-detail-bc-current {
        max-width: 70vw;
      }
    }

    .car-detail-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      grid-template-areas: "main sidebar";
      gap: 36px;
      align-items: start;
    }

    .car-detail-main {
      grid-area: main;
      display: flex;
      flex-direction: column;
      gap: 36px;
      min-width: 0;
    }

    .car-detail-gallery { grid-area: gallery; }
    .car-detail-sidebar { grid-area: sidebar; }
    .car-detail-description { grid-area: description; }

    .car-detail-gallery {
      position: relative;
      background: #f8f9fa;
      border: 1px solid #ececec;
      border-radius: 8px;
      overflow: hidden;
    }

    .car-detail-gallery-main {
      display: block;
      width: 100%;
      padding: 0;
      border: none;
      background: none;
      cursor: zoom-in;
    }

    .car-detail-gallery img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .car-detail-gallery-thumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 12px;
      background: #fff;
      border-top: 1px solid #ececec;
    }

    .car-detail-gallery-thumb {
      padding: 0;
      border: 2px solid transparent;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      background: none;
      width: 72px;
      height: 54px;
      flex-shrink: 0;
    }

    .car-detail-gallery-thumb.active {
      border-color: var(--cyan);
    }

    .car-detail-gallery-thumb img {
      width: 100%;
      height: 100%;
      aspect-ratio: auto;
      object-fit: cover;
    }

    .car-detail-description-body ul,
    .car-detail-description-body ol {
      margin: 0 0 1em 1.25em;
    }

    .car-detail-description-body img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 16px 0;
    }

    .car-detail-description-body p {
      margin-bottom: 0.75em;
    }

    .car-detail-short-description {
      margin: 0 0 18px;
      color: #666;
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .car-detail-key-features {
      margin: 0 0 20px;
      padding: 16px 18px;
      background: #f7f8fa;
      border: 1px solid #e8ebef;
      border-radius: 10px;
    }

    .car-detail-key-features h3 {
      margin: 0 0 10px;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--black);
    }

    .car-detail-key-features ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .car-detail-key-features li {
      position: relative;
      padding: 4px 0 4px 18px;
      font-size: 0.88rem;
      color: #444;
    }

    .car-detail-key-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.65em;
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid var(--black);
    }

    .car-detail-see-all-features {
      margin-top: 10px;
      border: none;
      background: none;
      color: var(--cyan-dark);
      font: inherit;
      font-size: 0.84rem;
      font-weight: 700;
      cursor: pointer;
      padding: 0;
    }

    .car-detail-see-all-features:hover { text-decoration: underline; }

    .car-detail-info-tabs {
      margin-top: 8px;
    }

    .car-detail-tablist {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid #eceff2;
    }

    .car-detail-tab {
      border: 1px solid #dde2e8;
      background: #fff;
      color: #555;
      border-radius: 999px;
      padding: 8px 16px;
      font-family: inherit;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .car-detail-tab:hover {
      border-color: var(--cyan);
      color: var(--cyan-dark);
    }

    .car-detail-tab.active {
      background: var(--cyan);
      border-color: var(--cyan);
      color: var(--black);
    }

    .car-detail-tabpanel { display: none; }
    .car-detail-tabpanel.active { display: block; }

    .car-detail-section-title {
      position: relative;
      margin: 0 0 16px;
      padding-left: 14px;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--black);
    }

    .car-detail-section-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.15em;
      bottom: 0.15em;
      width: 4px;
      border-radius: 4px;
      background: var(--cyan);
    }

    .car-overview-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border: 1px solid #e5e8ec;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
    }

    .car-overview-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      border-bottom: 1px solid #eef1f4;
      border-right: 1px solid #eef1f4;
      min-height: 74px;
    }

    .car-overview-item:nth-child(2n) { border-right: none; }
    .car-overview-item:nth-last-child(1),
    .car-overview-item:nth-last-child(2):nth-child(odd) {
      border-bottom: none;
    }

    .car-overview-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      border-radius: 10px;
      background: rgba(0, 194, 255, 0.12) center / 22px 22px no-repeat;
    }

    .car-overview-icon-mileage { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }
    .car-overview-icon-engine { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M5 11h3l2-3h4l2 3h3v6H5v-6z'/%3E%3Cpath d='M9 14h6'/%3E%3C/svg%3E"); }
    .car-overview-icon-fuel { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M7 4h7v12H7z'/%3E%3Cpath d='M14 8h2.5a2.5 2.5 0 0 1 2.5 2.5V17a2 2 0 1 0 4 0V9l-2-2'/%3E%3C/svg%3E"); }
    .car-overview-icon-doors { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 4h9l3 6v10H6V4z'/%3E%3Cpath d='M14 12h2'/%3E%3C/svg%3E"); }
    .car-overview-icon-year { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E"); }
    .car-overview-icon-cylinder { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='6' rx='6' ry='3'/%3E%3Cpath d='M6 6v12c0 1.7 2.7 3 6 3s6-1.3 6-3V6'/%3E%3C/svg%3E"); }
    .car-overview-icon-transmission { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='7' cy='7' r='2'/%3E%3Ccircle cx='17' cy='7' r='2'/%3E%3Ccircle cx='12' cy='17' r='2'/%3E%3Cpath d='M7 9v3h10V9M12 12v3'/%3E%3C/svg%3E"); }
    .car-overview-icon-color { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
    .car-overview-icon-chassis { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 14h16v4H4z'/%3E%3Cpath d='M7 14V9h10v5M6 18v2M18 18v2'/%3E%3C/svg%3E"); }
    .car-overview-icon-body { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M3 14l2-5h5l2-2h5l3 4v5H3v-2z'/%3E%3Ccircle cx='7' cy='17' r='1.5'/%3E%3Ccircle cx='17' cy='17' r='1.5'/%3E%3C/svg%3E"); }
    .car-overview-icon-brand,
    .car-overview-icon-model { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%230099CC' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 18V8l8-4 8 4v10'/%3E%3Cpath d='M9 18v-6h6v6'/%3E%3C/svg%3E"); }

    .car-overview-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: #7a8490;
      margin-bottom: 2px;
    }

    .car-overview-value {
      display: block;
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--black);
    }

    .car-features-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 24px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .car-features-list li {
      position: relative;
      padding: 8px 0 8px 22px;
      font-size: 0.92rem;
      font-weight: 600;
      color: #333;
      border-bottom: 1px dashed #e8ebef;
    }

    .car-features-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 8px;
      color: var(--cyan-dark);
      font-weight: 800;
    }

    @media (max-width: 700px) {
      .car-overview-grid,
      .car-features-list {
        grid-template-columns: 1fr;
      }

      .car-overview-item {
        border-right: none;
      }

      .car-overview-item:nth-last-child(2):nth-child(odd) {
        border-bottom: 1px solid #eef1f4;
      }
    }

    .car-detail-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      background: var(--black);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 6px 12px;
      border-radius: 4px;
    }

    .car-detail-badge-status {
      left: auto;
      right: 16px;
      background: #dc3545;
    }

    .car-detail-sidebar-inner {
      position: sticky;
      top: 96px;
    }

    .car-detail-title-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .car-detail-title-row h1 {
      font-size: clamp(1.35rem, 2vw, 1.85rem);
      line-height: 1.25;
      font-weight: 700;
      color: var(--black);
    }

    .car-detail-share {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #ddd;
      background: var(--white);
      color: var(--black);
      border-radius: 6px;
      padding: 8px 12px;
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
      flex-shrink: 0;
      font-family: inherit;
    }

    .car-detail-share:hover { border-color: var(--black); }

    .car-detail-price {
      font-size: clamp(1.5rem, 2.2vw, 2rem);
      font-weight: 800;
      color: var(--black);
      line-height: 1.2;
    }

    .car-detail-price-note {
      margin-top: 6px;
      font-size: 0.82rem;
      color: var(--text-light);
    }

    .car-detail-help {
      margin: 24px 0;
      padding: 20px;
      background: #fafafa;
      border: 1px solid #ececec;
      border-radius: 8px;
    }

    .car-detail-help h3 {
      font-size: 1rem;
      margin-bottom: 8px;
      color: var(--black);
    }

    .car-detail-help p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .car-detail-cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .car-detail-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 10px 12px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 700;
      text-align: center;
      line-height: 1.3;
      transition: var(--transition);
    }

    .car-detail-cta small {
      font-size: 0.72rem;
      font-weight: 500;
      opacity: 0.85;
      margin-top: 2px;
    }

    .car-detail-cta-dark {
      background: var(--black);
      color: var(--white);
    }

    .car-detail-cta-dark:hover { background: #222; }

    .car-detail-cta-whatsapp {
      background: #25D366;
      color: var(--white);
      flex-direction: column;
      gap: 2px;
    }

    .car-detail-cta-outline {
      border: 1px solid var(--black);
      color: var(--black);
      background: var(--white);
    }

    .car-detail-cta-outline:hover {
      background: var(--black);
      color: var(--white);
    }

    .car-detail-cta-primary {
      background: var(--black);
      color: var(--white);
      grid-column: 1 / -1;
    }

    .car-detail-cta-primary:hover { background: #222; }

    .car-detail-specs-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid #ececec;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 8px;
    }

    .car-detail-spec-item {
      padding: 14px 16px;
      border-bottom: 1px solid #ececec;
      background: var(--white);
    }

    .car-detail-spec-item:nth-last-child(-n+2) { border-bottom: none; }

    .car-detail-spec-item:nth-child(odd) { border-right: 1px solid #ececec; }

    .car-detail-spec-label {
      display: block;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text-light);
      margin-bottom: 4px;
    }

    .car-detail-spec-value {
      display: block;
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--black);
    }

    .car-detail-description {
      margin-top: 0;
      padding-top: 0;
      border-top: none;
    }

    .car-detail-description h2 {
      font-size: 1.15rem;
      margin-bottom: 14px;
      color: var(--black);
    }

    .car-detail-description-body {
      color: #444;
      line-height: 1.85;
      font-size: 0.92rem;
      white-space: pre-line;
    }

    .car-detail-suggested {
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid #ececec;
    }

    .car-detail-suggested h2 {
      font-size: 1.25rem;
      margin-bottom: 24px;
      color: var(--black);
    }

    body.car-gallery-lightbox-open {
      overflow: hidden;
    }

    body.car-gallery-lightbox-open #site-float-actions {
      display: none !important;
    }

    .car-gallery-lightbox {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      max-height: 100vh;
      max-height: 100dvh;
      z-index: 10050;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .car-gallery-lightbox[hidden] {
      display: none !important;
    }

    .car-gallery-lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.92);
    }

    .car-gallery-lightbox-dialog {
      position: relative;
      z-index: 1;
      width: min(1200px, 100%);
      max-height: min(calc(100vh - 48px), calc(100dvh - 48px));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin: 0 auto;
    }

    .car-gallery-lightbox-nav {
      position: fixed;
      top: 50vh;
      transform: translateY(-50%);
      z-index: 10060;
      width: 48px;
      height: 48px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.22);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
      pointer-events: auto;
    }

    .car-gallery-lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.36);
    }

    .car-gallery-lightbox-nav.prev { left: max(12px, env(safe-area-inset-left)); }
    .car-gallery-lightbox-nav.next { right: max(12px, env(safe-area-inset-right)); }

    .car-gallery-lightbox-close {
      position: absolute;
      top: -8px;
      right: 0;
      z-index: 10061;
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1.8rem;
      line-height: 1;
      cursor: pointer;
    }

    .car-gallery-lightbox-close:hover {
      background: rgba(255, 255, 255, 0.22);
    }

    .car-gallery-lightbox-counter {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .car-gallery-lightbox-stage {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 180px;
    }

    .car-gallery-lightbox-empty {
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 24px;
      text-align: center;
    }

    .car-gallery-lightbox-stage img {
      display: block;
      max-width: 100%;
      max-height: min(calc(100vh - 180px), calc(100dvh - 180px));
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
      background: #111;
    }

    .car-gallery-lightbox-thumbs {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      max-width: 100%;
      overflow-x: auto;
      padding-bottom: 4px;
    }

    .car-gallery-lightbox-thumb {
      flex: 0 0 auto;
      width: 72px;
      height: 54px;
      padding: 0;
      border: 2px solid transparent;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      background: none;
      opacity: 0.72;
    }

    .car-gallery-lightbox-thumb.active,
    .car-gallery-lightbox-thumb:hover {
      border-color: var(--cyan);
      opacity: 1;
    }

    .car-gallery-lightbox-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .car-gallery-lightbox {
        padding: 12px;
      }

      .car-gallery-lightbox-nav {
        width: 40px;
        height: 40px;
      }

      .car-gallery-lightbox-nav.prev { left: 4px; }
      .car-gallery-lightbox-nav.next { right: 4px; }

      .car-gallery-lightbox-stage img {
        max-height: calc(100vh - 220px);
      }
    }

    @media (max-width: 992px) {
      .car-detail-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
          "gallery"
          "sidebar"
          "description";
      }

      .car-detail-main {
        display: contents;
      }

      .car-detail-sidebar-inner { position: static; }
      .car-detail-cta-grid { grid-template-columns: 1fr; }
      .car-detail-cta-primary { grid-column: auto; }
      .car-detail-description {
        margin-top: 8px;
        padding-top: 28px;
        border-top: 1px solid #ececec;
      }
    }

    @media (max-width: 576px) {
      .car-detail-specs-panel { grid-template-columns: 1fr; }
      .car-detail-spec-item:nth-child(odd) { border-right: none; }
      .car-detail-spec-item:nth-last-child(-n+2) { border-bottom: 1px solid #ececec; }
      .car-detail-spec-item:last-child { border-bottom: none; }
    }
