:root{
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: rgba(17,24,39,0.12);
    --shadow: 0 12px 30px rgba(0,0,0,0.08);
  
    /* brand */
    --primary: #e3b100;
    --primary-2: #c99800;
    --soft: #fffdf8;
  
    --radius: 18px;
    --container: 1120px;
  }
  
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
  }
  
  a{ color: inherit; text-decoration: none; }
  a:hover{ text-decoration: underline; }
  
  .container{
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
  }
  
  /* Header */
  .header{
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .header__inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap: 10px;
    font-weight: 700;
  }
  .brand__logo{
    width: 240px; height: 44px;
  }
  .brand__name{ letter-spacing: 0.2px; }
  
  .nav{
    display:none;
    gap: 18px;
  }
  .nav__link{
    font-size: 14px;
    color: var(--muted);
  }
  .nav__link:hover{ color: var(--text); text-decoration: none; }
  
  .header__actions{
    display:flex;
    align-items:center;
    gap: 10px;
  }
  
  .lang{
    border: 1px solid var(--border);
    background: #fff;
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 600;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap: 8px;
  }
  .lang__chev{ color: var(--muted); }
  
  .langMenu{
    position: absolute;
    right: 16px;
    top: 64px;
    width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow:hidden;
  }
  .langMenu__item{
    width:100%;
    text-align:left;
    padding: 12px 14px;
    background:#fff;
    border:0;
    cursor:pointer;
  }
  .langMenu__item:hover{ background: #f8fafc; }
  
  /* Buttons */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius: 999px;
    padding: 10px 14px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor:pointer;
    text-decoration:none;
  }
  .btn:hover{ text-decoration: none; }
  .btn--primary{
    background: var(--primary);
    color:#fff;
  }
  .btn--primary:hover{ background: var(--primary-2); }

  .whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    }
   .whatsapp-button img {
    margin-right: 8px;
    }  
    .whatsapp-button:hover {
        background: #1fb85a;
    }
   


  /* Subtle secondary CTA (CARFAX-style) */
    .heroSecondaryLink{
        display: inline-block;
        margin-top: 14px;
        font-size: 16px;
        font-weight: 600;
        color: var(--primary);
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    
    .heroSecondaryLink:hover{
        text-decoration-thickness: 2px;
    }
  
  .btn--ghost{
    background: #fff;
    border-color: var(--border);
  }
  .btn--ghost:hover{ background: #f9fafb; }
  .btn--lg{
    padding: 12px 16px;
    font-size: 15px;
  }
  
  /* Hero */
  .hero{
    padding: 52px 0 24px;
    background:
      radial-gradient(900px 420px at 20% 10%, var(--soft), transparent 70%),
      radial-gradient(700px 400px at 90% 10%, #fffaf0, transparent 70%),
      #fff;
  }
  .hero__grid{
    display:grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items:center;
  }
  .hero__title{
    font-size: 34px;
    line-height: 1.08;
    margin: 14px 0 28px;
  }

  .br-mobile{ display:inline; }
@media (max-width: 640px){
  .br-mobile{ display:inline; }
}

  .hero__subtitle{
    color: var(--muted);
    margin: 0 0 18px;
    font-size: 16px;
    max-width: 58ch;
  }
  .pill{
    display:inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    color: #334155;
    font-weight: 600;
    font-size: 13px;
  }
  
  .hero__ctas{
    display:flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 24px;
  }
  
  .trustRow{
    display:grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .trustItem{
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    background: rgba(255,255,255,0.75);
  }
  .trustItem__title{
    font-weight: 800;
  }
  .trustItem__text{
    color: var(--muted);
    font-size: 13px;
  }
  
  .hero__right{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .heroVisual{
    position: relative;
    width: min(520px, 44vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
  }
  
  /* soft backdrop like Carfax (not a card) */
  .heroVisual__bg{
    position: absolute;
    inset: 6% 4%;
    background: radial-gradient(60% 60% at 40% 30%, rgba(0,0,0,0.05), transparent 70%),
                radial-gradient(60% 60% at 70% 70%, rgba(0,0,0,0.04), transparent 70%);
    border-radius: 999px;
    filter: blur(0.2px);
  }
  
  /* the phone floats above the page */
  .heroVisual__phone{
    position: relative;
      width: clamp(320px, 50vw, 520px);
    height: auto;
    filter: drop-shadow(0 28px 50px rgba(0,0,0,0.16));
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .hero__right{
      justify-content: center;
      margin-top: 18px;
    }
  
    .heroVisual{
      width: clamp(320px, 50vw, 520px);
    }
  
    .heroVisual__phone{
      width: clamp(320px, 50vw, 520px);
    }
  }
  
  
  .badges{
    width: min(420px, 100%);
    display:grid;
    gap: 10px;
  }
  .badge{
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
  }
  .badge__dot{
    width: 10px; height: 10px;
    border-radius: 99px;
    background: #16a34a;
  }
  .badge__text{
    color: #334155;
    font-weight: 600;
    font-size: 13px;
  }


  /* Subtle "Why inspection" section (CARFAX-ish) */
.whySubtle{
    background: #fff;
  }
  
  .whySubtle__head{
    text-align: center;
    margin-bottom: 26px;
  }
  
  .whySubtle__title{
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 10px;
  }
  
  .whySubtle__subtitle{
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    max-width: 70ch;
    margin-inline: auto;
  }
  
  .whySubtle__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }
  
  .whySubtle__item{
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.04);
  }
  
  .whySubtle__icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fbfbfb;
    border: 1px solid rgba(17,24,39,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .whySubtle__itemTitle{
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
  }
  
  .whySubtle__itemText{
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
  }
  
  @media (min-width: 900px){
    .whySubtle__grid{
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
  }
  
  
  /* Quick check box */
  .vinBox{
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(255,255,255,0.8);
  }
  .vinBox__label{
    display:block;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .vinBox__row{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .input{
    flex: 1 1 240px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 12px;
    font-size: 15px;
  }
  .vinBox__hint{
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
  }
  
  /* Logos / chips */
  .logos{
    padding: 16px 0 34px;
  }
  .logos__inner{
    display:flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 26px;
  }
  .logos__label{ color: var(--muted); margin:0; font-size: 13px; }
  .logos__row{ display:flex; flex-wrap: wrap; gap: 10px; }
  .chip{
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 999px;
    color: #334155;
    background:#fff;
    font-weight: 600;
    font-size: 13px;
  }
  
  /* Sections */
  .section{
    padding: 56px 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    scroll-margin-top: 73px; /* height of your fixed navbar */

  }
  .section--alt{
    background: #fff;
  }
  .section__head{
    margin-bottom: 22px;
  }
  .section__head h2{
    font-size: 28px;
    margin: 0 0 8px;
  }
  .section__head p{
    margin:0;
    color: var(--muted);
    max-width: 70ch;
  }
  .section--soft {
    background-color: var(--soft);
  }
  
  /* Cards */
  .grid3{
    display:grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card{
    background:#fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.04);
  }
  .card h3{ margin: 0 0 10px; }
  .list{ margin:0; padding-left: 18px; color: #334155; }
  .list li{ margin: 8px 0; }
  
  



  /* Interactive process section (Gmail-like) */
.processTabs__title{
    font-size: 34px;
    margin: 0 0 8px;
  }
  
  .processTabs__subtitle{
    margin: 0 0 26px;
    color: var(--muted);
  }
  
  .processTabs__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    max-height: 1000px;
  }
  
  @media (min-width: 900px){
    .processTabs__grid{
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
    }
  }
  
  /* Left column: tabs */
  .processTabs__left{
    display: grid;
    gap: 14px;
  }
  
  .processTab{
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 18px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 14px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
  }
  
  .processTab:hover{
    border-color: rgba(17,24,39,0.18);
    box-shadow: 0 6px 18px rgba(17,24,39,0.06);
  }
  
  .processTab:focus-visible{
    outline: none;
    box-shadow: 0 0 0 3px rgba(227,177,0,0.25);
  }
  
  /* The little rail on the left */
  .processTab__rail{
    width: 4px;
    border-radius: 999px;
    background: rgba(17,24,39,0.08);
    align-self: stretch;
  }
  
  /* Active state: CARFAX-like subtle highlight */
  .processTab.is-active{
    border-color: rgba(227,177,0,0.45);
    box-shadow: 0 10px 24px rgba(17,24,39,0.08);
  }
  
  .processTab.is-active .processTab__rail{
    background: var(--primary);
  }
  
  /* Text hierarchy */
  .processTab__kicker{
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  
  .processTab__heading{
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
  }
  
  .processTab__sub{
    display: block;
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
  }
  
  /* Right column: visuals */
  .processTabs__right{
    position: relative;
  }
  

  
  .processVisual img{
    max-height: 400px;
    height: auto;
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: contain;
  }
  

  .processTabs__mobileSlot{
    display: none;
  }
  
  @media (max-width: 900px){
    .processTabs__mobileSlot{
      display: block;
      margin-top: 12px;
      margin-bottom: 16px;
    }
  
    /* On mobile we won’t use the right column as the visible container */
    .processTabs__right{
      display: none;
    }
  }
  
  
  /* Smooth-ish swap without heavy animation */
  .processPanel{
    animation: fadeIn 180ms ease;
  }
  
  @keyframes fadeIn{
    from{ opacity: 0; transform: translateY(6px); }
    to{ opacity: 1; transform: translateY(0); }
  }
  

  /* Subtle "What we inspect" section (CARFAX-style) */
.whatSubtle{
    background: var(--soft);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  
  .whatSubtle__head{
    text-align: center;
    margin-bottom: 28px;
  }
  
  .whatSubtle__title{
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 10px;
  }
  
  .whatSubtle__subtitle{
    margin: 0;
    color: var(--muted);
    font-size: 16px;
  }
  
  .whatSubtle__grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 32px;
  }
  
  .whatSubtle__colTitle{
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 14px;
  }
  
  .whatSubtle__list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
  }
  
  .whatSubtle__list li{
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: #374151;
  }
  
  .whatSubtle__list li::before{
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 900;
  }
  
  /* CTA */
  .whatSubtle__cta{
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
  }
  
  .whatSubtle__ctaText{
    margin: 0;
    color: var(--muted);
    font-size: 15px;
  }
  
  /* Desktop layout */
  @media (min-width: 900px){
    .whatSubtle__grid{
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
  }
  
  
  /* FAQ (clean accordion like screenshot) */
.faq{
    background: var(--soft);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  
  .faq__head{
    text-align: center;
    margin-bottom: 22px;
  }
  
  .faq__title{
    font-size: 34px;
    line-height: 1.1;
    margin: 0;
  }
  
  .faq__list{
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
  }
  
  .faqItem{
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
  }
  
  .faqItem__q{
    list-style: none;
    cursor: pointer;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    color: var(--text);
  }
  
  .faqItem__q::-webkit-details-marker{
    display: none;
  }
  
  .faqItem__chev{
    color: #111827;
    opacity: 0.7;
    transition: transform 160ms ease, opacity 160ms ease;
    flex-shrink: 0;
  }
  
  .faqItem[open] .faqItem__chev{
    transform: rotate(180deg);
    opacity: 1;
  }
  
  .faqItem__a{
    padding: 0 18px 18px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
  }
  
  
  /* Final CTA */
  .finalCTA{
    margin-top: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255,255,255,0.75);
    text-align:center;
  }
  .finalCTA h3{ margin: 0 0 6px; }
  .finalCTA p{ margin: 0 0 12px; }
  
  /* Footer */
  .footer{
    padding: 26px 0;
    border-top: 1px solid var(--border);
    background: #fff;
  }
  .footer__inner{
    display:grid;
    gap: 10px;
  }
  .footer__links{
    display:flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .brandSmall{
    font-weight: 900;
  }
  
  /* Responsive */
  @media (min-width: 900px){
    .nav{ display:flex; }
    .hero__grid{ grid-template-columns: 1.05fr 0.95fr; gap: 34px; }
    .trustRow{ grid-template-columns: repeat(3, 1fr); }
    .grid3{ grid-template-columns: repeat(3, 1fr); }
    .pricing{ grid-template-columns: 1fr 1fr; }
    .callout{ flex-direction: row; align-items:center; }
    .footer__inner{
      grid-template-columns: 1fr auto auto;
      align-items:center;
    }
  }

  /* Carfax-style primary CTA pill */
.ctaPill{
    width: 100%;
    max-width: 620px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
  
    padding: 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.04);
  }
  
  .ctaPill__left{
    flex: 1 1 auto;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
  }
  
  .ctaPill__label{
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
    line-height: 1.1;
    margin-bottom: 4px;
  }
  
  .ctaPill__input{
    border: 0;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    padding: 0;
    margin: 0;
  }
  
  .ctaPill__input::placeholder{
    color: rgba(107,114,128,0.75);
    font-weight: 700;
  }
  
  .ctaPill__btn{
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    background: #25D366;
    color: #fff;
    white-space: nowrap;
    justify-content: center;
  }
  
  .ctaPill__btn:hover{
    background:  #1fb85a;
  }
  
  .ctaPill__hint{
    margin: 0 0 0;
    font-size: 13px;
    color: var(--muted);
  }
  
  /* Mobile: stack nicely */
  @media (max-width: 520px){
    .ctaPill{
      border-radius: 22px;
      flex-direction: column;
      align-items: stretch;
    }
    .ctaPill__left{
      padding-left: 6px;
      height: 32px;
    }
    .ctaPill__btn{
      width: 100%;
    }
  }

  /* .whenHelpful__title{
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
  }
  
  .whenHelpful__list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .whenHelpful__item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
  }
  
  .whenHelpful__icon{
    font-size: 20px;
    line-height: 1;
  }
  
  .whenHelpful__text{
    font-size: 15px;
    color: var(--text);
  } */
  

  .recommendation {
    padding: 28px 0;
    background: transparent;
  }
  
  .recommendation__label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
  }
  
  .recommendation__list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--muted);
    font-size: 15px;
  }
  
  .recommendation__list li {
    white-space: nowrap;
  }
  

  @media (min-width: 768px){
    .whenHelpful__list{
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  
  .steps__title{
  font-size: 30px;
  margin-bottom: 6px;
}

.steps__subtitle{
  color: var(--muted);
  margin-bottom: 28px;
}

/* spacing between steps */
.steps__timeline{
    display: flex;
    flex-direction: column;
    gap: 18px; /* adjust: 16–28px */
  }
  


.step{
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 12px;
}

.step:last-child{
  padding-bottom: 0;
}

/* numbered marker */
.step__marker{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #111827;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.step__content h3{
  margin: 0 0 6px;
  font-size: 18px;
}

.step__content p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.step__eyebrow{
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 4px;
  }
  

  /* .phoneMock {
    position: relative;
    width: min(320px, 90vw);
    margin: 0 auto;
  }
  
  .phoneMock__frame {
    width: 100%;
    display: block;
  } */

  /* .phoneMock__screen {
    position: absolute;
    top: 6.5%;
    left: 7%;
    width: 86%;
    height: 87%;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
  } */
  
  #inspectoLottie {
    width: 80%;
    height: 100%;
  }

  .phoneMock {
    position: relative;
    width: 320px;
    margin: 0 auto;
  }
  
  .phoneMock__frame {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    display: block;
  }
  
  .phoneMock__animation {
    position: absolute;
    top: 55%;              /* adjust visually */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    z-index: 2;            /* behind the phone */
    pointer-events: none; /* animation is visual only */
  }

  .phoneMock__animation__three{
    position: absolute;
    top: 51%;              /* adjust visually */
    left: 50%;
    transform: translate(-50%, -50%);
    width:57%;
    z-index: 1;            /* behind the phone */
    pointer-events: none; /* animation is visual only */
    border-radius: 40px;
    overflow: hidden;
  }
  