/* =====================================================
   SECTION 1 — ROOT VARIABLES & GLOBAL BASE
===================================================== */
:root {
  --obsidian: #0A0B0D;
  --surface: #15181C;
  --surface-2: #1D2126;
  --hairline: #2C3238;
  --steel: #9AA6AE;
  --white: #F3F6F7;
  --red: #D91C1C;
  --red-dim: #a01515;
  --font: 'Barlow', sans-serif;
}
.top-img img{
    width:10% !important;
}

.desktop{
    display: block;
}
.phone{
    display: none;
}
@media (max-width: 576px) {

     .phone{
    display: block;
}
.desktop{
    display: none;
}
}

body.ug-dark {
  background: var(--obsidian) !important;
  color: #F3F6F7 !important;
  font-family: var(--font) !important;
  line-height: 1.6;
}

body.ug-dark ::selection {
  background: var(--red);
  color: #fff;
}

.ug-dark h1,
.ug-dark h2,
.ug-dark h3,
.ug-dark h4 {
  font-family: var(--font) !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
  margin: 0;
  color: #fff !important;
  /*-webkit-text-fill-color: #fff !important;*/
}

.ug-dark p,
.ug-dark li {
  color: #c0c8ce !important;
  -webkit-text-fill-color: #c0c8ce !important;
}

.ug-dark .eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: capitalize;
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
}

.ug-dark .eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.ug-dark section {
  position: relative;
  padding: 40px 0px;
}

@media(max-width:768px) {
  .ug-dark section {
    padding: 4rem 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}
/* ===== END SECTION 1 — ROOT VARIABLES & GLOBAL BASE ===== */


/* =====================================================
   SECTION 2 — MAIN HERO (.ug-hero)
===================================================== */
.ug-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.ug-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*z-index: 0;*/
  /*opacity: .22;*/
  /*filter: brightness(.55) saturate(1.05) contrast(1.05);*/
  transform: scale(1.04);
  animation: ugHeroPan 26s ease-in-out infinite alternate;
}

@keyframes ugHeroPan {
  from {
    transform: scale(1.04) translateX(0);
  }

  to {
    transform: scale(1.12) translateX(-1.5%);
  }
}

.ug-hero__content {
  position: relative;
  z-index: 2;
}

.ug-hero__content::before {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.6rem;
}

.ug-hero h1 {
  font-size: 40px;
  line-height: .96;
  text-transform: capitalize;
  max-width: 100%;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .55);
}

.ug-hero h1 em {
  font-style: normal;
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
}

.ug-hero p.lead {
  max-width: 100%;
  color: var(--steel) !important;
  -webkit-text-fill-color: var(--steel) !important;
  font-size: 1.05rem;
  margin-top: 1.4rem;
}

@media(prefers-reduced-motion:reduce) {
  .ug-hero__media {
    animation: none;
  }
}

.ug-crumb {
  display: flex;
  gap: .4rem;
  font-size: .78rem;
  color: var(--steel) !important;
  margin-bottom: 1.4rem;
}

.ug-crumb a {
  color: var(--steel) !important;
  -webkit-text-fill-color: var(--steel) !important;
  text-decoration: none;
}

.ug-crumb a:hover {
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
}

.ug-crumb .cur {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 600;
}

.hero-tags {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-tags span {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: .32rem .9rem;
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .82) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .82) !important;
}

@media(max-width:768px){
    .ug-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .22;
  filter: brightness(1.55) saturate(1.05) contrast(1.05);
  transform: scale(1.04);
  animation: ugHeroPan 26s ease-in-out infinite alternate;
}
.top-img img {
    width: 50% !important;
}
}
/* ===== END SECTION 2 — MAIN HERO (.ug-hero) ===== */


/* =====================================================
   SECTION 3 — BUTTONS (.ug-btn-red / .ug-btn-ghost)
===================================================== */
.ug-btn-red {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  border: 1.5px solid var(--red);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: capitalize;
  padding: .82rem 1.7rem;
  border-radius: 4px;
  transition: .2s;
  text-decoration: none;
  cursor: pointer;
}

.ug-btn-red:hover {
  background: var(--red-dim);
  border-color: var(--red-dim);
}

.ug-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .85) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .85) !important;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: capitalize;
  padding: .82rem 1.7rem;
  border-radius: 4px;
  transition: .2s;
  text-decoration: none;
}

.ug-btn-ghost:hover {
  border-color: rgba(255, 255, 255, .55);
  color: #fff !important;
}
/* ===== END SECTION 3 — BUTTONS ===== */


/* =====================================================
   SECTION 4 — WARRANTY CENTER TABS
===================================================== */
.wc-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
  background: #fff;
  border: 1px solid #E3E6E9;
  border-radius: 12px;
  padding: .5rem;
  box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

.wc-tab {
  background: transparent;
  border: 1px solid transparent;
  color: #5b6470;
  font-family: var(--font);
  font-weight: 700;
  font-size: .82rem;
  text-transform: capitalize;
  letter-spacing: .02em;
  padding: .8rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex: 1 1 auto;
  justify-content: center;
}

.wc-tab i {
  color: var(--red);
  transition: .2s;
}

.wc-tab:hover {
  background: var(--uwz-off, #F9FAFB);
  color: #101214;
}

.wc-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(217, 28, 28, .28);
}

.wc-tab.active i {
  color: #fff;
}

.wc-panel {
  display: none;
}

.wc-panel.active {
  display: block;
}

/* embed frame */
.wc-embed-frame {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 2.5rem;
  box-shadow: none;
}

.wc-embed-slot {
  min-height: 260px;
}

.wc-embed-placeholder {
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border: 1.5px dashed #d7dbe0;
  border-radius: 8px;
}

.wc-embed-placeholder i {
  font-size: 2rem;
  color: var(--red);
  display: block;
  margin-bottom: .8rem;
}

.wc-embed-placeholder strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  text-transform: capitalize;
  color: #101214;
  margin-bottom: .5rem;
}

.wc-embed-placeholder p {
  font-size: .84rem;
  color: #5b6470;
  margin: 0;
}

.wc-embed-placeholder code {
  background: #F3F5F7;
  padding: .1rem .4rem;
  border-radius: 3px;
  font-size: .78rem;
  color: var(--red);
}
/* ===== END SECTION 4 — WARRANTY CENTER TABS ===== */


/* =====================================================
   SECTION 5 — WARRANTY CENTER FORMS & RESULTS
===================================================== */
.wc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.wc-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .86rem;
  color: #5b6470;
}

.wc-list i {
  color: var(--red);
}

.wc-form {
  background: #fff;
  border: 1px solid #E3E6E9;
  border-radius: 12px;
  padding: 1.9rem;
  box-shadow: 0 10px 30px rgba(16, 18, 20, .06);
}

.wc-form-row {
  margin-bottom: 1.2rem;
}

.wc-form-row label {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .04em;
  color: #101214;
  margin-bottom: .5rem;
}

.wc-form-row input {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid #d7dbe0;
  border-radius: 6px;
  font-family: var(--font);
  font-size: .92rem;
  color: #101214;
  background: #F9FAFB;
}

.wc-form-row input:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}

.wc-result {
  margin-top: 1.5rem;
  border-radius: 8px;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.wc-result.ok {
  background: rgba(26, 156, 74, .08);
  border: 1px solid rgba(26, 156, 74, .3);
}

.wc-result.bad {
  background: rgba(194, 52, 52, .08);
  border: 1px solid rgba(194, 52, 52, .3);
}

.wc-result i {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.wc-result.ok i {
  color: #1a9c4a;
}

.wc-result.bad i {
  color: #c23434;
}

.wc-result strong {
  display: block;
  font-size: .92rem;
  text-transform: capitalize;
  margin-bottom: .3rem;
  color: #101214;
}

.wc-result p {
  margin: 0;
  font-size: .84rem;
  color: #5b6470;
}

.wc-result .wc-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem 1.5rem;
  margin-top: .7rem;
  font-size: .82rem;
}

.wc-result .wc-result-grid span {
  color: #5b6470;
}

.wc-result .wc-result-grid strong {
  display: inline;
  font-size: .82rem;
  text-transform: none;
  margin: 0;
  color: #101214;
}
/* ===== END SECTION 5 — WARRANTY CENTER FORMS & RESULTS ===== */


/* =====================================================
   SECTION 6 — DIGITAL WARRANTY CARD
===================================================== */
.wc-warranty-card {
  background: linear-gradient(135deg, #15181c 0%, #0a0b0d 100%);
  border-radius: 12px;
  padding: 1.8rem 1.9rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 18, 20, .25);
}

.wc-warranty-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(217, 28, 28, .18), transparent 65%);
}

.wc-warranty-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 1.4rem;
}

.wc-warranty-card__badge {
  background: rgba(26, 156, 74, .18);
  border: 1px solid rgba(26, 156, 74, .4);
  color: #3ddc84;
  font-size: .66rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .06em;
  padding: .28rem .7rem;
  border-radius: 20px;
}

.wc-warranty-card__id {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--red);
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}

.wc-warranty-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.4rem;
  position: relative;
  z-index: 1;
}

.wc-warranty-card__grid span {
  display: block;
  font-size: .64rem;
  text-transform: capitalize;
  letter-spacing: .06em;
  color: #9AA6AE;
  margin-bottom: .2rem;
}

.wc-warranty-card__grid strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}
/* ===== END SECTION 6 — DIGITAL WARRANTY CARD ===== */


/* =====================================================
   SECTION 7 — STEP LIST (.step-line)
===================================================== */
.step-line {
  display: flex;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left .25s ease;
}

.step-line:last-child {
  border-bottom: none;
}

.step-line:hover {
  padding-left: .35rem;
}

.step-num {
  width: 42px;
  height: 42px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease;
}

.step-line:hover .step-num {
  background: var(--red);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.step-line strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .02em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: .25rem;
}

.step-line p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.55;
}
/* ===== END SECTION 7 — STEP LIST ===== */


/* =====================================================
   SECTION 8 — BENEFIT GRID (.benefit-card)
===================================================== */
.benefit-card {
  background: var(--surface) !important;
  border: 1px solid var(--hairline) !important;
  border-radius: 10px;
  padding: 1.9rem 1.6rem;
  height: 100%;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.benefit-card:hover {
  border-color: rgba(217, 28, 28, .35) !important;
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .45);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card__icon {
        padding: 10px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(217, 28, 28, .1);
  border: 1px solid rgba(217, 28, 28, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red) !important;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
}

.toppp{
        align-content: center;
}

.benefit-card h3 {
  font-size: 1rem !important;
  text-transform: capitalize;
}

.benefit-card p {
  font-size: .84rem;
  margin: .55rem 0 0;
  line-height: 1.6;
}

.sec-light .benefit-card::before {
  background: var(--red);
}
/* ===== END SECTION 8 — BENEFIT GRID ===== */


/* =====================================================
   SECTION 9 — DEALER PANEL BROWSER MOCKUP
===================================================== */
.browser-mock {
  background: #1c1f24;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .55);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.browser-mock:hover {
  transform: translateY(-4px);
}

.browser-mock__bar {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem 1rem;
  background: #22262b;
  border-bottom: 1px solid var(--hairline);
}

.browser-mock__dots {
  display: flex;
  gap: 6px;
}

.browser-mock__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.browser-mock__dots span:nth-child(1) {
  background: #ff5f57;
}

.browser-mock__dots span:nth-child(2) {
  background: #febc2e;
}

.browser-mock__dots span:nth-child(3) {
  background: #28c840;
}

.browser-mock__url {
  flex: 1;
  background: #15181c;
  border-radius: 14px;
  padding: .4rem 1rem;
  font-size: .72rem;
  color: var(--steel) !important;
  -webkit-text-fill-color: var(--steel) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-mock__body {
  padding: 2rem 1.6rem;
  background: radial-gradient(circle at 70% 30%, rgba(217, 28, 28, .14), transparent 60%), #0d0f12;
  min-height: 300px;
}
/* ===== END SECTION 9 — DEALER PANEL BROWSER MOCKUP ===== */


/* =====================================================
   SECTION 10 — LOGIN CARD (inside browser mockup)
===================================================== */
.login-card {
  max-width: 280px;
  background: rgba(21, 24, 28, .9);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 1.6rem 1.4rem;
}

.login-card img {
  height: 22px;
  margin-bottom: .9rem;
}

.login-card .lc-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .05em;
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
  margin-bottom: .15rem;
}

.login-card .lc-sub {
  font-size: .68rem;
  color: var(--steel) !important;
  -webkit-text-fill-color: var(--steel) !important;
  margin-bottom: 1.1rem;
  line-height: 1.4;
}

.login-card label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: .05em;
  color: var(--steel) !important;
  -webkit-text-fill-color: var(--steel) !important;
  margin-bottom: .9rem;
}

.login-card input {
  display: block;
  width: 100%;
  margin-top: .3rem;
  background: #0d0f12;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: #fff;
  font-size: .78rem;
  padding: .5rem .7rem;
}

.login-card button {
  width: 100%;
  background: var(--red);
  border: none;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .05em;
  padding: .6rem;
  border-radius: 4px;
  margin-top: .3rem;
}
/* ===== END SECTION 10 — LOGIN CARD ===== */


/* =====================================================
   SECTION 11 — DASHBOARD STATS (.dash-stats)
===================================================== */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  margin-top: 1.4rem;
}

@media(max-width:576px) {
  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dash-stat {
  background: rgba(21, 24, 28, .9);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  padding: .95rem 1rem;
  transition: transform .25s ease, background .25s ease;
}

.dash-stat:hover {
  transform: translateY(-3px);
  background: rgba(217, 28, 28, .08);
}

.dash-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.dash-stat span {
  font-size: .62rem;
  text-transform: capitalize;
  letter-spacing: .04em;
  color: var(--steel) !important;
  -webkit-text-fill-color: var(--steel) !important;
}
/* ===== END SECTION 11 — DASHBOARD STATS ===== */


/* =====================================================
   SECTION 12 — PANEL CTA (.panel-cta)
===================================================== */
.panel-cta {
  margin-top: 2rem;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.panel-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 40%;
  height: 220%;
  background: radial-gradient(circle, rgba(217, 28, 28, .14), transparent 65%);
  pointer-events: none;
}

.panel-cta h3 {
  font-size: .98rem !important;
  text-transform: capitalize;
  margin: 0 0 .3rem;
}

.panel-cta p {
  margin: 0;
  font-size: .82rem;
  max-width: 45ch;
}
/* ===== END SECTION 12 — PANEL CTA ===== */


/* =====================================================
   SECTION 13 — TERMS & CONDITIONS ACCORDION (.tnc-*)
===================================================== */
.tnc-item {
  border-bottom: 1px solid var(--hairline);
  transition: background .2s;
}

.tnc-item:last-child {
  border-bottom: none;
}

.tnc-item:hover {
  background: rgba(255, 255, 255, .02);
}

.tnc-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem .4rem;
  cursor: pointer;
  text-align: left;
}

.tnc-q span {
  font-size: .95rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .02em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.tnc-q i {
  color: var(--red) !important;
  transition: transform .25s;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

.tnc-item.open .tnc-q i {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: #fff !important;
}

.tnc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.tnc-item.open .tnc-a {
  max-height: 600px;
}

.tnc-a-inner {
  padding-bottom: 1.3rem;
  font-size: .86rem;
  line-height: 1.75;
  color: #c0c8ce !important;
  -webkit-text-fill-color: #c0c8ce !important;
}

.tnc-a-inner ul {
  margin: .6rem 0 0;
  padding-left: 1.2rem;
}

.tnc-a-inner li {
  margin-bottom: .4rem;
}
/* ===== END SECTION 13 — TERMS & CONDITIONS ACCORDION ===== */


/* =====================================================
   SECTION 14 — BOTTOM CTA BOX (.ug-cta-box)
===================================================== */
.ug-cta-box {
  background: linear-gradient(135deg, var(--red) 0%, #8f0f0f 100%);
  border-radius: 14px;
  padding: 3.6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(217, 28, 28, .22);
}

.ug-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%);
  pointer-events: none;
}

.ug-cta-box::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -8%;
  width: 45%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 0, 0, .18), transparent 65%);
  pointer-events: none;
}

.ug-cta-box>* {
  position: relative;
  z-index: 1;
}

.ug-cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  text-transform: capitalize;
}

.ug-cta-box p {
  color: rgba(255, 255, 255, .82) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .82) !important;
  max-width: 55ch;
  margin: .8rem auto 1.8rem;
}

.ug-cta-box .btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1.5px solid #fff;
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: capitalize;
  padding: .82rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: .2s;
}

.ug-cta-box .btn-white:hover {
  background: transparent;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.ug-cta-box .ug-btn-ghost {
  border-color: rgba(255, 255, 255, .5);
}
/* ===== END SECTION 14 — BOTTOM CTA BOX ===== */


/* =====================================================
   SECTION 15 — LIGHT SECTION UTILITY (.sec-light)
===================================================== */
.sec-light {
  background: #F3F5F7 !important;
  border-color: #E3E6E9 !important;
}

.sec-light .eyebrow {
  color: var(--red) !important;
  -webkit-text-fill-color: var(--red) !important;
}

.sec-light h1,
.sec-light h2,
.sec-light h3,
.sec-light h4 {
  color: #101214 !important;
  -webkit-text-fill-color: #101214 !important;
}

.sec-light p,
.sec-light li {
  color: #5b6470 !important;
  -webkit-text-fill-color: #5b6470 !important;
}

.sec-light .step-line {
  border-color: #E3E6E9 !important;
}

.sec-light .step-line strong {
  color: #101214 !important;
  -webkit-text-fill-color: #101214 !important;
}

.sec-light .benefit-card {
  background: #fff !important;
  border-color: #E3E6E9 !important;
  box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

.sec-light .benefit-card p {
  color: #5b6470 !important;
  -webkit-text-fill-color: #5b6470 !important;
}
/* ===== END SECTION 15 — LIGHT SECTION UTILITY ===== */


/* =====================================================
   SECTION 16 — SELF WARRANTY REGISTRATION WIZARD (.uwz-*)
   Ported from customer portal, recoloured to the Ultraguard
   site theme. Scoped under .uwz-scope so nothing leaks out.
===================================================== */
.uwz-scope {
  --uwz-red: var(--red);
  --uwz-red-dim: rgba(217, 28, 28, .10);
  --uwz-ink: #101214;
  --uwz-gray: #5b6470;
  --uwz-gray-dim: #8a929c;
  --uwz-line: #E3E6E9;
  --uwz-off: #F9FAFB;
  --uwz-off-2: #F3F5F7;
  --uwz-green: #1a9c4a;
  --uwz-green-dim: rgba(26, 156, 74, .12);
  --uwz-radius-lg: 16px;
  --uwz-radius-md: 12px;
  --uwz-radius-sm: 8px;
  --uwz-shadow: 0 20px 50px rgba(16, 18, 20, .10);
  --uwz-transition: .25s cubic-bezier(.4, 0, .2, 1);
  font-family: var(--font);
  position: relative;
}

.uwz-scope * {
  box-sizing: border-box;
}

/* progress tracker */
.uwz-progress-wrap {
  padding: 0 0 2.2rem;
}

.uwz-progress-track {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.uwz-progress-track::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: var(--uwz-line);
}

.uwz-progress-fill {
  position: absolute;
  top: 17px;
  left: 4%;
  height: 2px;
  width: 0%;
  background: var(--uwz-green);
  transition: width var(--uwz-transition);
}

.uwz-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.uwz-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  opacity: .45;
  transition: opacity var(--uwz-transition);
}

.uwz-step.active,
.uwz-step.completed {
  opacity: 1;
}

.uwz-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--uwz-line);
  font-size: .82rem;
  font-weight: 700;
  color: var(--uwz-gray);
  transition: all var(--uwz-transition);
}

.uwz-step.active>.uwz-step-circle {
  background-color: var(--uwz-red) !important;
  border-color: var(--uwz-red) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.uwz-step.completed .uwz-step-circle {
  background: var(--uwz-green-dim);
  border-color: var(--uwz-green);
  color: var(--uwz-green);
}

.uwz-step-label {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: capitalize;
  color: var(--uwz-gray);
  text-align: center;
  display: none;
}

.uwz-step.completed .uwz-step-label {
  color: var(--uwz-green);
}

@media(min-width:768px) {
  .uwz-step-label {
    display: inline;
  }
}

/* main card */
.uwz-card {
  background: #fff;
  border: 1px solid var(--uwz-line);
  border-radius: var(--uwz-radius-lg);
  box-shadow: var(--uwz-shadow);
  padding: clamp(20px, 4vw, 42px);
  position: relative;
  overflow: hidden;
}

.uwz-step-panel {
  display: none;
  animation: uwzFadeSlide .4s ease;
}

.uwz-step-panel.active {
  display: block;
}

@keyframes uwzFadeSlide {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.uwz-step-panel.slide-back {
  animation: uwzFadeSlideBack .4s ease;
}

@keyframes uwzFadeSlideBack {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.uwz-step-heading {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--uwz-ink);
  margin: 0 0 .4rem;
}

.uwz-step-sub {
  color: var(--uwz-gray);
  font-size: .88rem;
  margin-bottom: 1.7rem;
}

.uwz-section-mini-heading {
  font-size: 1rem;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--uwz-ink);
}

.uwz-divider {
  border-color: var(--uwz-line);
  margin: 1.8rem 0;
}

/* category cards */
.uwz-category-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--uwz-line);
  border-radius: var(--uwz-radius-md);
  padding: 1.7rem .9rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--uwz-ink);
  cursor: pointer;
  transition: all var(--uwz-transition);
  text-align: center;
  min-height: 158px;
}

.uwz-category-card i {
  font-size: 1.9rem;
  color: var(--uwz-gray);
  transition: all var(--uwz-transition);
}

.uwz-category-card span {
  font-weight: 800;
  font-size: .88rem;
  text-transform: capitalize;
}

.uwz-category-card small {
  color: var(--uwz-gray-dim);
  font-size: .7rem;
}

.uwz-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 28, 28, .4);
  box-shadow: 0 12px 28px rgba(16, 18, 20, .1);
}

.uwz-category-card:hover i {
  color: var(--uwz-red);
}

.uwz-category-card.selected {
  border-color: var(--uwz-red);
  background: var(--uwz-red-dim);
  box-shadow: 0 0 0 1px var(--uwz-red);
}

.uwz-category-card.selected i {
  color: var(--uwz-red);
}

/* form elements */
.uwz-label {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .03em;
  color: var(--uwz-gray);
  margin-bottom: .5rem;
}

.uwz-optional {
  color: var(--uwz-gray-dim);
  font-weight: 400;
  text-transform: none;
}

.uwz-input {
  width: 100%;
  background: var(--uwz-off);
  border: 1px solid var(--uwz-line);
  border-radius: var(--uwz-radius-sm);
  padding: .85rem 1rem;
  color: var(--uwz-ink);
  font-family: var(--font);
  font-size: .92rem;
  transition: all var(--uwz-transition);
}

.uwz-input::placeholder {
  color: var(--uwz-gray-dim);
}

.uwz-input:focus {
  outline: none;
  border-color: var(--uwz-red);
  box-shadow: 0 0 0 4px var(--uwz-red-dim);
  background: #fff;
}

.uwz-input.is-invalid {
  border-color: #c23434;
}

.uwz-input.is-valid {
  border-color: var(--uwz-green);
}

select.uwz-input {
  appearance: none;
}

.uwz-error {
  display: none;
  color: #c23434;
  font-size: .76rem;
  margin-top: .45rem;
}

.uwz-input.is-invalid~.uwz-error {
  display: block;
}

.uwz-error.force-show {
  display: block;
}

.uwz-readonly-box {
  background: var(--uwz-off-2);
  border: 1px dashed var(--uwz-line);
  border-radius: var(--uwz-radius-sm);
  padding: .85rem 1rem;
  font-size: .88rem;
  color: var(--uwz-gray);
  display: flex;
  align-items: center;
  gap: .6rem;
}

.uwz-readonly-box i {
  color: var(--uwz-red);
}

.uwz-input-group {
  display: flex;
  gap: .6rem;
}

.uwz-input-group .uwz-input {
  flex: 1;
}

.uwz-scan-btn {
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--uwz-line);
  color: var(--uwz-ink);
  border-radius: var(--uwz-radius-sm);
  padding: 0 1rem;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all var(--uwz-transition);
  cursor: pointer;
}

.uwz-scan-btn:hover {
  border-color: var(--uwz-red);
  color: var(--uwz-red);
}

.uwz-barcode-status {
  margin-top: .7rem;
  font-size: .8rem;
  font-weight: 700;
  display: none;
  align-items: center;
  gap: .5rem;
  border-radius: var(--uwz-radius-sm);
  padding: .6rem .8rem;
}

.uwz-barcode-status.show {
  display: flex;
}

.uwz-barcode-status.valid {
  background: var(--uwz-green-dim);
  color: var(--uwz-green);
}

.uwz-barcode-status.invalid {
  background: rgba(194, 52, 52, .1);
  color: #c23434;
}

.uwz-barcode-status.registered {
  background: rgba(194, 52, 52, .1);
  color: #c23434;
}

.uwz-barcode-status.checking {
  background: var(--uwz-off-2);
  color: var(--uwz-gray);
}

.uwz-note-box {
  background: var(--uwz-red-dim);
  border: 1px solid rgba(217, 28, 28, .22);
  border-radius: var(--uwz-radius-sm);
  padding: 1rem;
  font-size: .82rem;
  color: var(--uwz-gray);
  line-height: 1.6;
  display: flex;
  gap: .6rem;
}

.uwz-note-box i {
  color: var(--uwz-red);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* radio pills */
.uwz-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.uwz-radio-pill {
  flex: 1 1 170px;
  position: relative;
  cursor: pointer;
}

.uwz-radio-pill input {
  position: absolute;
  opacity: 0;
}

.uwz-radio-pill span {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  background: var(--uwz-off);
  border: 1px solid var(--uwz-line);
  border-radius: var(--uwz-radius-sm);
  padding: .8rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--uwz-gray);
  transition: all var(--uwz-transition);
}

.uwz-radio-pill input:checked+span {
  border-color: var(--uwz-red);
  color: var(--uwz-red);
  background: var(--uwz-red-dim);
}

.uwz-conditional-field {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--uwz-line);
  animation: uwzFadeSlide .3s ease;
}

/* upload zones */
.uwz-upload-zone {
  border: 1.5px dashed var(--uwz-line);
  border-radius: var(--uwz-radius-md);
  background: var(--uwz-off);
  padding: 1.8rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--uwz-transition);
  position: relative;
}

.uwz-upload-zone:hover,
.uwz-upload-zone.dragover {
  border-color: var(--uwz-red);
  background: var(--uwz-red-dim);
}

.uwz-upload-prompt i {
  font-size: 1.8rem;
  color: var(--uwz-gray);
  margin-bottom: .5rem;
  display: block;
}

.uwz-upload-prompt p {
  margin: 0;
  color: var(--uwz-gray);
  font-size: .86rem;
}

.uwz-upload-prompt p span {
  color: var(--uwz-red);
  font-weight: 700;
  text-decoration: underline;
}

.uwz-upload-prompt small {
  color: var(--uwz-gray-dim);
  font-size: .72rem;
}

.uwz-single-preview {
  margin-top: 1rem;
}

.uwz-single-preview img {
  max-height: 150px;
  border-radius: var(--uwz-radius-sm);
  border: 1px solid var(--uwz-line);
}

.uwz-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: .7rem;
  margin-top: 1.1rem;
}

.uwz-photo-thumb {
  position: relative;
  border-radius: var(--uwz-radius-sm);
  overflow: hidden;
  border: 1px solid var(--uwz-line);
  aspect-ratio: 1/1;
  animation: uwzPopIn .3s ease;
}

@keyframes uwzPopIn {
  from {
    opacity: 0;
    transform: scale(.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.uwz-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uwz-photo-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 18, 20, .65);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  cursor: pointer;
  transition: background var(--uwz-transition);
}

.uwz-photo-remove:hover {
  background: var(--uwz-red);
}

.uwz-photo-counter {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--uwz-gray);
}

.uwz-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--uwz-off);
  border: 1px solid var(--uwz-line);
  border-radius: 30px;
  padding: .5rem 1rem;
  font-size: .76rem;
  color: var(--uwz-gray);
  width: 100%;
  justify-content: center;
  font-weight: 700;
}

.uwz-tag-pill i {
  color: var(--uwz-red);
}

/* summary / terms */
.uwz-summary-box {
  background: var(--uwz-off-2);
  border: 1px solid var(--uwz-line);
  border-radius: var(--uwz-radius-md);
  padding: 1.2rem;
  margin-bottom: 1.6rem;
  font-size: .86rem;
  color: var(--uwz-gray);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .9rem;
}

.uwz-summary-box .uwz-summary-item strong {
  display: block;
  color: var(--uwz-ink);
  font-weight: 800;
  font-size: .86rem;
  margin-bottom: .1rem;
}

.uwz-checkbox-row {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: .6rem;
}

.uwz-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  cursor: pointer;
  font-size: .84rem;
  color: var(--uwz-gray);
}

.uwz-checkbox input {
  position: absolute;
  opacity: 0;
}

.uwz-checkbox-box {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1.5px solid var(--uwz-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all var(--uwz-transition);
  margin-top: 1px;
}

.uwz-checkbox input:checked+.uwz-checkbox-box {
  background: var(--uwz-red);
  border-color: var(--uwz-red);
  color: #fff;
}

.uwz-submit-btn {
  width: 100%;
  background: var(--uwz-red);
  border: none;
  color: #fff;
  padding: .95rem;
  border-radius: var(--uwz-radius-sm);
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .03em;
  margin-top: .8rem;
  cursor: pointer;
  transition: all var(--uwz-transition);
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.uwz-submit-btn:hover {
  background: var(--red-dim);
  transform: translateY(-2px);
}

/* nav buttons */
.uwz-nav-row {
  display: flex;
  justify-content: space-between;
  margin-top: 2.2rem;
  gap: .8rem;
}

.uwz-btn {
  border-radius: var(--uwz-radius-sm);
  padding: .8rem 1.5rem;
  font-family: var(--font);
  font-size: .84rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: all var(--uwz-transition);
  border: 1px solid transparent;
}

.uwz-btn--primary {
  background: var(--uwz-red);
  color: #fff;
  margin-left: auto;
}

.uwz-btn--primary:hover {
  background: var(--red-dim);
  transform: translateY(-2px);
}

.uwz-btn--ghost {
  background: transparent;
  border-color: var(--uwz-line);
  color: var(--uwz-gray);
}

.uwz-btn--ghost:hover {
  border-color: var(--uwz-red);
  color: var(--uwz-red);
}

.uwz-btn--outline {
  background: transparent;
  border-color: var(--uwz-line);
  color: var(--uwz-ink);
}

.uwz-btn--outline:hover {
  border-color: var(--uwz-red);
  color: var(--uwz-red);
}

/* loading overlay */
.uwz-loading-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .94);
  border-radius: var(--uwz-radius-lg);
  z-index: 20;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  text-align: center;
}

.uwz-loading-overlay.show {
  display: flex;
  animation: uwzFadeSlide .3s ease;
}

.uwz-loading-overlay p {
  color: var(--uwz-gray);
  font-size: .88rem;
  max-width: 250px;
}

.uwz-loading-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--uwz-line);
  border-top-color: var(--uwz-red);
  animation: uwzSpin .9s linear infinite;
}

@keyframes uwzSpin {
  to {
    transform: rotate(360deg);
  }
}

/* success screen */
.uwz-success-screen {
  display: none;
  text-align: center;
  padding: 1.2rem 0 .5rem;
  animation: uwzFadeSlide .5s ease;
}

.uwz-success-screen.show {
  display: block;
}

.uwz-success-check {
  width: 110px;
  margin: 0 auto 1.2rem;
}

.uwz-success-circle {
  fill: none;
  stroke: var(--uwz-green);
  stroke-width: 4;
  stroke-dasharray: 290;
  stroke-dashoffset: 290;
  animation: uwzDrawCircle .6s ease forwards;
}

.uwz-success-tick {
  fill: none;
  stroke: var(--uwz-green);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: uwzDrawTick .4s ease forwards .55s;
}

@keyframes uwzDrawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes uwzDrawTick {
  to {
    stroke-dashoffset: 0;
  }
}

.uwz-success-screen h2 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: .8rem;
  max-width: 440px;
  margin-inline: auto;
  color: var(--uwz-ink);
}

.uwz-success-status,
.uwz-success-number {
  color: var(--uwz-gray);
  font-size: .9rem;
  margin: .25rem 0;
}

.uwz-success-status i {
  color: var(--uwz-green);
}

.uwz-success-status strong {
  color: var(--uwz-green);
}

.uwz-success-number strong {
  color: var(--uwz-ink);
  letter-spacing: .03em;
}

.uwz-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: 1.8rem;
}

/* toast */
.uwz-toast {
  color: black !important;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #fff;
  border: 1px solid var(--uwz-red);
  color: var(--uwz-ink);
  padding: .8rem 1.3rem;
  border-radius: var(--uwz-radius-sm);
  font-size: .84rem;
  box-shadow: var(--uwz-shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--uwz-transition);
  z-index: 999;
  max-width: 90vw;
}

.uwz-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media(max-width:575.98px) {
  .uwz-card {
    padding: 1.3rem 1.1rem;
  }

  .uwz-btn {
    padding: .75rem 1.1rem;
    flex: 1;
    justify-content: center;
  }
}
/* ===== END SECTION 16 — SELF WARRANTY REGISTRATION WIZARD ===== */


/* =====================================================
   SECTION 17 — WARRANTY CLAIM WIZARD (.ucz-*)
   Shares the .uwz-scope tokens above; adds components unique
   to the claim flow (lookup tabs, found-warranty card, issue
   checklist, severity picker, upload tiles, next-steps timeline,
   dealer locate box).
===================================================== */
.ucz-lookup-tabs {
  display: flex;
  gap: .6rem;
  background: var(--uwz-off);
  padding: 5px;
  border-radius: var(--uwz-radius-sm);
  margin-bottom: 1.4rem;
}

.ucz-lookup-tab {
  flex: 1;
  padding: .7rem;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--uwz-gray);
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--uwz-transition);
}

.ucz-lookup-tab.active {
  background: var(--uwz-red);
  color: #fff;
}

.ucz-wcard {
  background: #fff;
  border: 1px solid var(--uwz-line);
  border-radius: var(--uwz-radius-md);
  overflow: hidden;
  margin-bottom: 1.6rem;
  box-shadow: var(--uwz-shadow);
}

.ucz-wcard-top {
  background: linear-gradient(135deg, var(--uwz-red), #8f0f0f);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.ucz-wcard-top .ucz-lbl {
  font-size: .62rem;
  letter-spacing: .16em;
  font-weight: 700;
  opacity: .85;
}

.ucz-wcard-top .ucz-id {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.ucz-wcard-top .ucz-badge {
  background: rgba(255, 255, 255, .22);
  padding: .35rem .8rem;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.ucz-wcard-body {
  padding: 1.1rem 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.3rem;
}

.ucz-wcard-body .k {
  font-size: .62rem;
  color: var(--uwz-gray-dim);
  letter-spacing: .1em;
  font-weight: 700;
  text-transform: capitalize;
}

.ucz-wcard-body .v {
  font-size: .88rem;
  font-weight: 800;
  color: var(--uwz-ink);
  margin-top: .15rem;
}

.ucz-wcard-body .v.g {
  color: var(--uwz-green);
}

.ucz-wcard-foot {
  padding: .9rem 1.3rem;
  border-top: 1px solid var(--uwz-line);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  color: var(--uwz-gray);
  flex-wrap: wrap;
}

.ucz-status-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  background: var(--uwz-green-dim);
  color: var(--uwz-green);
}

.ucz-issue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}

.ucz-issue-ck {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1rem;
  border-radius: var(--uwz-radius-sm);
  background: var(--uwz-off);
  border: 1px solid var(--uwz-line);
  cursor: pointer;
  transition: all var(--uwz-transition);
  font-size: .86rem;
  font-weight: 700;
  color: var(--uwz-ink);
}

.ucz-issue-ck:hover {
  border-color: rgba(217, 28, 28, .35);
}

.ucz-issue-ck.on {
  border-color: var(--uwz-red);
  background: var(--uwz-red-dim);
}

.ucz-issue-ck .cb {
  width: 19px;
  height: 19px;
  border-radius: 5px;
  border: 1.5px solid var(--uwz-line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.ucz-issue-ck.on .cb {
  background: var(--uwz-red);
  border-color: var(--uwz-red);
  color: #fff;
  font-size: .68rem;
}

.ucz-sev-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}

.ucz-sev-btn {
  padding: .9rem;
  border-radius: var(--uwz-radius-sm);
  border: 1px solid var(--uwz-line);
  background: var(--uwz-off);
  color: var(--uwz-gray);
  cursor: pointer;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  transition: all var(--uwz-transition);
}

.ucz-sev-btn .sdot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 auto .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
}

.ucz-sev-btn.mn .sdot {
  background: var(--uwz-green);
  color: #fff;
}

.ucz-sev-btn.md .sdot {
  background: #ffb020;
  color: #101214;
}

.ucz-sev-btn.sv .sdot {
  background: var(--uwz-red);
  color: #fff;
}

.ucz-sev-btn.mn.on {
  border-color: var(--uwz-green);
  background: var(--uwz-green-dim);
  color: var(--uwz-ink);
}

.ucz-sev-btn.md.on {
  border-color: #ffb020;
  background: rgba(255, 176, 32, .1);
  color: var(--uwz-ink);
}

.ucz-sev-btn.sv.on {
  border-color: var(--uwz-red);
  background: var(--uwz-red-dim);
  color: var(--uwz-ink);
}

.ucz-upload-big {
  border: 1.5px dashed var(--uwz-red);
  border-radius: var(--uwz-radius-md);
  background: var(--uwz-red-dim);
  padding: 1.6rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--uwz-transition);
}

.ucz-upload-big:hover {
  background: rgba(217, 28, 28, .14);
}

.ucz-upload-big.done {
  border-style: solid;
  border-color: var(--uwz-green);
  background: var(--uwz-green-dim);
}

.ucz-upload-big .uicon {
  font-size: 1.9rem;
  margin-bottom: .4rem;
  color: var(--uwz-red);
}

.ucz-upload-big.done .uicon {
  color: var(--uwz-green);
}

.ucz-upload-big strong {
  display: block;
  font-size: .9rem;
  margin-bottom: .2rem;
  color: var(--uwz-ink);
}

.ucz-upload-big span {
  font-size: .76rem;
  color: var(--uwz-gray);
}

.ucz-upload-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: .8rem;
}

.ucz-upz {
  aspect-ratio: 1.1;
  border: 1.5px dashed var(--uwz-line);
  border-radius: var(--uwz-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .76rem;
  color: var(--uwz-gray);
  cursor: pointer;
  background: var(--uwz-off);
  transition: all var(--uwz-transition);
  text-align: center;
  padding: .6rem;
}

.ucz-upz:hover {
  border-color: var(--uwz-red);
  color: var(--uwz-ink);
}

.ucz-upz.done {
  border-style: solid;
  border-color: var(--uwz-green);
  background: var(--uwz-green-dim);
  color: var(--uwz-green);
}

.ucz-upz .ui {
  font-size: 1.4rem;
}

.ucz-next-steps {
  text-align: left;
  background: var(--uwz-off-2);
  border: 1px solid var(--uwz-line);
  border-radius: var(--uwz-radius-md);
  padding: 1.3rem;
  margin-top: 1.6rem;
}

.ucz-next-steps h4 {
  font-size: .84rem;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: .04em;
  margin-bottom: 1rem;
  color: var(--uwz-ink);
}

.ucz-ns-item {
  display: flex;
  gap: .9rem;
  padding-bottom: 1.1rem;
  position: relative;
}

.ucz-ns-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--uwz-line);
}

.ucz-ns-item:last-child {
  padding-bottom: 0;
}

.ucz-ns-item:last-child::before {
  display: none;
}

.ucz-ns-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--uwz-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
  z-index: 1;
  color: var(--uwz-gray);
}

.ucz-ns-item.active .ucz-ns-num {
  background: var(--uwz-red);
  border-color: var(--uwz-red);
  color: #fff;
}

.ucz-ns-txt strong {
  font-size: .84rem;
  display: block;
  margin-bottom: .15rem;
  color: var(--uwz-ink);
}

.ucz-ns-txt span {
  font-size: .78rem;
  color: var(--uwz-gray);
  line-height: 1.5;
}

.ucz-dealer-locate {
  background: var(--uwz-red-dim);
  border: 1px solid rgba(217, 28, 28, .25);
  border-radius: var(--uwz-radius-md);
  padding: 1.1rem 1.2rem;
  margin-top: 1.2rem;
  display: flex;
  gap: .9rem;
  align-items: center;
}

.ucz-dealer-locate .dl-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--uwz-radius-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--uwz-red);
  flex-shrink: 0;
}

.ucz-dealer-locate .dl-txt strong {
  display: block;
  font-size: .84rem;
  margin-bottom: .15rem;
  color: var(--uwz-ink);
}

.ucz-dealer-locate .dl-txt span {
  font-size: .78rem;
  color: var(--uwz-gray);
  line-height: 1.5;
}

@media(max-width:575.98px) {

  .ucz-wcard-body,
  .ucz-issue-grid {
    grid-template-columns: 1fr;
  }

  .ucz-upload-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ===== END SECTION 17 — WARRANTY CLAIM WIZARD ===== */


/* =====================================================
   SECTION 18 — APP-LIKE MOBILE OPTIMIZATION (global, max-width:768px / 480px)
===================================================== */
@media(max-width:768px) {
  .ug-hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 2.6rem;
  }

  .ug-hero h1 {
    max-width: 100%;
    font-size: 30px;
  }

  .br {
    display: none;
  }

  .hero-tags span {
    font-size: .7rem;
    padding: .28rem .75rem;
  }

  .d-flex.gap-3.flex-wrap.mt-4 {
    flex-direction: column;
  }

  .d-flex.gap-3.flex-wrap.mt-4 .ug-btn-red,
  .d-flex.gap-3.flex-wrap.mt-4 .ug-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* warranty center tab row -> horizontal chip scroller */
  .wc-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: .3rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    scrollbar-width: none;
  }

  .wc-tabs::-webkit-scrollbar {
    display: none;
  }

  .wc-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: .76rem;
    padding: .7rem 1.1rem;
  }

  .wc-form-row input,
  .wc-form input {
    font-size: 16px;
  }

  .wc-form .ug-btn-red {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .wc-warranty-card {
    padding: 1.4rem 1.3rem;
  }

  .wc-warranty-card__grid {
    gap: .8rem 1rem;
  }

  .browser-mock__body {
    padding: 1.4rem 1.1rem;
  }

  .login-card {
    max-width: 100%;
  }

  .panel-cta {
    padding: 1.3rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .panel-cta .ug-btn-red {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .tnc-q {
    padding: 1.1rem 0;
  }

  .tnc-q span {
    font-size: .86rem;
  }

  .step-line {
    padding: 1.1rem 0;
    gap: .9rem;
  }

  .step-num {
    width: 38px;
    height: 38px;
    font-size: .9rem;
  }

  .ug-cta-box {
    padding: 2.4rem 1.6rem;
  }

  .ug-cta-box .d-flex {
    flex-direction: column;
  }

  .ug-cta-box .btn-white,
  .ug-cta-box .ug-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* self-registration wizard */
  .uwz-input,
  select.uwz-input {
    font-size: 16px;
  }

  .uwz-step-heading {
    font-size: 1.12rem;
  }

  .uwz-category-card {
    min-height: 130px;
    padding: 1.3rem .6rem 1rem;
  }

  .uwz-category-card i {
    font-size: 1.5rem;
  }

  .uwz-input-group {
    flex-direction: column;
  }

  .uwz-scan-btn {
    padding: .75rem 1rem;
    justify-content: center;
  }

  .uwz-radio-pill {
    flex: 1 1 100%;
  }

  .uwz-summary-box {
    grid-template-columns: 1fr;
  }

  .uwz-success-actions .uwz-btn {
    width: 100%;
    justify-content: center;
  }

  .wc-tab,
  .tnc-q,
  .step-line,
  .uwz-category-card,
  .uwz-radio-pill span,
  .wc-warranty-card {
    -webkit-tap-highlight-color: transparent;
  }
}

@media(max-width:480px) {
  .wc-warranty-card__grid {
    grid-template-columns: 1fr;
  }

  .ug-hero h1 {
    font-size: 27px;
  }
}
/* ===== END SECTION 18 — APP-LIKE MOBILE OPTIMIZATION ===== */


/* =====================================================
   SECTION 19 — MISC (hero background image, logo blocks)
===================================================== */
.ug-heroo {
  background: url(https://www.ultraguardindia.com/warranties/img/hero-banner/hero-banner-jpg), #000000d6;
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo {
  width: 15%;
}

.logo img {
  width: 100%;
}

@media(max-width:500px) {
  .logo {
    width: 40%;
  }
}

.logoo {
  margin: auto;
  margin-bottom: 10px;
  background: black;
  padding: 10px;
  border-radius: 10px;
}
/* ===== END SECTION 19 — MISC ===== */


/* =====================================================
   SECTION 20 — PRODUCT / ABOUT PAGE HERO (.pg-hero)
   Premium hero banner: bg image + dark gradient overlay,
   breadcrumb bar, bordered eyebrow badge, two-line title
   (white + red accent line), uppercase tagline, feature
   pill row with icons, and red/ghost CTA buttons.
===================================================== */
.pg-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    background: var(--obsidian);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* background image + legibility gradient (dark on the left where
   the text sits, fading out toward the right where the product
   photo shows through) */
.pg-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.pg-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 11, 13, .97) 0%, rgba(10, 11, 13, .88) 32%, rgba(10, 11, 13, .45) 60%, rgba(10, 11, 13, .18) 100%),
        linear-gradient(0deg, rgba(10, 11, 13, .55) 0%, rgba(10, 11, 13, 0) 30%);
}

/* breadcrumb bar */
.pg-hero .hero-crumb-bar {
    position: relative;
    z-index: 2;
    padding-top: 2.2rem;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--steel);
}

.hero-breadcrumb a {
    color: var(--steel);
    text-decoration: none;
    transition: color .2s;
}

.hero-breadcrumb a:hover {
    color: var(--red);
}

.hero-breadcrumb .sep {
    color: rgba(255, 255, 255, .22);
    font-size: 20px;
}

.hero-breadcrumb .current {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    font-size: 17px;
}

/* main content block */
.pg-hero .hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1rem 0 0rem;
}

/* bordered eyebrow badge — e.g. "INDIA'S TRUSTED PPF" */
.pg-hero .hero-label {
    display: inline-block;
    border: 1.5px solid var(--red);
    background: rgba(217, 28, 28, .1);
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 4px;
    margin-bottom: 1.1rem;
}

.pg-hero .hero-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.08;
}

.pg-hero .hero-title .accent {
    color: var(--red);
}

/* H1 (.pg-hero .hero-title): 40px desktop / 32px tablet / 25px phone */
@media (max-width: 768px) {
    .pg-hero .hero-title {
        font-size: 32px;
    }
}

.pg-hero .hero-tagline {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--steel);
    margin: .9rem 0 1.3rem;
}

.pg-hero .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    max-width: 58ch;
    margin: 0 0 1.8rem;
}

/* feature pill row — icon + short label */
.pg-hero .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.8rem;
}

.pg-hero .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 30px;
    padding: .5rem 1rem;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.pg-hero .badge-pill i {
    color: var(--red);
    font-size: 14px;
}

/* CTA buttons */
.pg-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.btn-red-ug {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
    font-family: var(--font);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .85rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    transition: .2s;
    cursor: pointer;
}

.btn-red-ug:hover {
    background: var(--red-dim);
    border-color: var(--red-dim);
}

.btn-ghost-ug {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .04);
    border: 1.5px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-family: var(--font);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .85rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    transition: .2s;
}

.btn-ghost-ug:hover {
    border-color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .08);
}

/* Hero — tablet & mobile */
@media (max-width: 768px) {

    .pg-hero,
    .pg-hero .hero-body {
        min-height: auto;
    }

    .pg-hero .hero-body {
        padding: 2rem 0 3rem;
    }

    .pg-hero .hero-crumb-bar {
        padding-top: 1.6rem;
    }

    .hero-breadcrumb {
        font-size: 12px;
    }

    .pg-hero .hero-label {
        font-size: 11px;
        padding: .35rem .75rem;
    }

    .pg-hero .hero-tagline {
        font-size: 15px;
    }

    .pg-hero .hero-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .pg-hero .hero-badges {
        gap: .45rem;
        margin-bottom: 1.5rem;
    }

    .pg-hero .badge-pill {
        font-size: 12px;
        padding: .42rem .8rem;
    }

    .pg-hero .hero-actions {
        gap: .55rem;
        flex-direction: column;
    }

    .pg-hero .hero-actions a {
        width: 100%;
        justify-content: center;
        padding: .78rem 1.15rem;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pg-hero .hero-title {
        font-size: 25px;
    }
}
/* ===== END SECTION 20 — PRODUCT / ABOUT PAGE HERO ===== */