@charset "utf-8";
/* CSS Document */
  .recar-title-center {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 16px 40px;
    font-family: Arial, Helvetica, sans-serif;
    color: #1c1c1c;
  }

  .recar-title-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #111 0%, #1f1f1f 55%, #b51217 100%);
    border-radius: 14px;
    padding: 34px 30px;
    margin-bottom: 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
  }

  .recar-title-hero:before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
  }

  .recar-title-hero:after {
    content: "";
    position: absolute;
    bottom: -70px;
    right: 90px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
  }

  .recar-title-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
  }

  .recar-title-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  .recar-title-hero h2 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
  }

  .recar-title-hero p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.92);
  }

  .recar-title-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .recar-title-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .recar-title-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.09);
  }

  .recar-title-accent {
    height: 6px;
    width: 100%;
  }

  .accent-clean {
    background: linear-gradient(90deg, #2a2a2a 0%, #5a5a5a 100%);
  }

  .accent-salvage {
    background: linear-gradient(90deg, #8a0f13 0%, #cf1f25 100%);
  }

  .accent-rebuilt {
    background: linear-gradient(90deg, #7d5a00 0%, #d19a00 100%);
  }

  .accent-total {
    background: linear-gradient(90deg, #0d4d7a 0%, #1f81c5 100%);
  }

  .recar-title-card-inner {
    padding: 22px 22px 20px;
  }

  .recar-title-card h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: #101010;
  }

  .recar-title-card .recar-subtext {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
  }

  .recar-title-points {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .recar-title-points li {
    position: relative;
    padding-left: 18px;
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.65;
    color: #2c2c2c;
  }

  .recar-title-points li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c4161c;
  }

  .recar-title-value {
    margin-top: 18px;
    padding: 14px 15px;
    border-radius: 10px;
    background: #f8f8f8;
    border: 1px solid #ececec;
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
  }

  .recar-title-value strong {
    color: #111;
  }

  .recar-title-bottom {
    margin-top: 24px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
  }

  .recar-title-bottom h4 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    color: #111;
  }

  .recar-title-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
  }

  @media (max-width: 900px) {
    .recar-title-grid {
      grid-template-columns: 1fr;
    }

    .recar-title-hero h2 {
      font-size: 34px;
    }
  }

  @media (max-width: 640px) {
    .recar-title-center {
      padding: 18px 12px 30px;
    }

    .recar-title-hero {
      padding: 26px 20px;
      border-radius: 12px;
    }

    .recar-title-hero h2 {
      font-size: 28px;
    }

    .recar-title-hero p {
      font-size: 15px;
    }

    .recar-title-card h3 {
      font-size: 24px;
    }

    .recar-title-card-inner {
      padding: 18px 18px 16px;
    }
  }
