* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #111827;
}

.page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 18px 32px;
}

.hero {
  width: 100%;
  max-width: 1180px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.heroGrid > div {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e6edf7;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.sub {
  margin: 0 0 22px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

.ctaRow {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.billSelect {
  flex: 1 1 280px;
  min-width: 240px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #d8e3f0;
  background: #fff;
  padding: 0 14px;
  font-size: 1rem;
  outline: none;
}

.btn {
  border: none;
  border-radius: 14px;
  height: 52px;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn.go,
.btn:not(.secondary) {
  background: #1d4ed8;
  color: #fff;
}

.btn.secondary {
  background: #e8eefc;
  color: #1d4ed8;
}

.heroCard {
  background: linear-gradient(
    180deg,
    #0f172a,
    #16233b
  ) !important;

  color: #fff;
}

.k {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
}

.v {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini,
.mini-link .mini {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 16px;
  min-height: 108px;
}

.mini b {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.mini span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.mini-link {
  color: inherit;
  text-decoration: none;
}

.footer {
  text-align: center;
  padding: 16px 12px 24px;
  color: #64748b;
  font-size: 0.95rem;
}

.hamburger {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1200;

  width: 46px;
  height: 46px;

  border: none;
  border-radius: 14px;

  background: #111827;
  color: #fff;

  font-size: 1.3rem;
  cursor: pointer;
}

.navMenu {
  position: fixed;
  top: 70px;
  left: 16px;
  z-index: 1199;

  min-width: 240px;

  background: #fff;
  border-radius: 18px;

  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.16);

  border: 1px solid #e6edf7;

  display: none;
  overflow: hidden;
}

.navMenu.show {
  display: block;
}

.navMenu a {
  display: block;
  padding: 16px 18px;
  color: #111827;
  font-weight: 700;
  text-decoration: none;
}

.modalBg {
  display: none;

  position: fixed;
  inset: 0;
  z-index: 2000;

  background: rgba(2, 6, 23, 0.68);

  padding: 16px;

  align-items: center;
  justify-content: center;
}

.modal {
  width: 100%;
  max-width: 760px;

  background: #fff;

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.24);
}

.mhd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;

  padding: 22px 22px 16px;

  border-bottom: 1px solid #edf2f7;
}

.headerWrap h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
}

.stepTag {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.x {
  border: none;

  background: #f1f5f9;
  color: #111827;

  width: 42px;
  height: 42px;

  border-radius: 12px;

  font-size: 1.4rem;

  cursor: pointer;
}

.mbd {
  padding: 22px;
  min-height: 280px;

  display: flex;
  align-items: center;
}

.questionStep {
  width: 100%;
}

.singleQuestion {
  display: flex;
  flex-direction: column;
  gap: 12px;

  width: 100%;
}

.singleQuestion span {
  font-size: 1.05rem;
  font-weight: 700;
}

.singleQuestion input,
.singleQuestion select,
.singleQuestion textarea {
  width: 100%;

  border: 1px solid #d8e3f0;
  background: #fff;

  border-radius: 16px;

  padding: 14px 16px;

  font-size: 1rem;
  outline: none;
}

.singleQuestion textarea {
  resize: vertical;
  min-height: 150px;
}
.reviewCard {
  width: 100%;
  background: #f8fbff;
  border: 1px solid #d9e7ff;
  border-radius: 20px;
  padding: 18px;
}

.reviewCard h4 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.reviewLine {
  padding: 11px 0;
  border-bottom: 1px solid #e7eefc;
  line-height: 1.5;
  word-break: break-word;
}

.reviewLine:last-child {
  border-bottom: none;
}

.mft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 18px 22px 22px;

  border-top: 1px solid #edf2f7;

  flex-wrap: wrap;
}

.summary {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.summary small {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  font-size: 0.85rem;
}

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

.loadingHeader {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.loadingHeader h3 {
  margin: 8px 0 6px;
  font-size: 1.35rem;
  color: #1e3a8a;
}

.loadingHeader p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.spinnerArrow {
  width: 68px;
  height: 68px;

  margin: 0 auto 10px;

  border: 6px solid #dbeafe;
  border-top: 6px solid #2563eb;
  border-right: 6px solid #2563eb;

  border-radius: 50%;

  animation: spinArrow 0.9s linear infinite;

  position: relative;
}

.spinnerArrow::after {
  content: "";

  position: absolute;

  top: -6px;
  right: -6px;

  width: 14px;
  height: 14px;

  background: #2563eb;

  transform: rotate(45deg);
}

@keyframes spinArrow {
  to {
    transform: rotate(360deg);
  }
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 900px) {

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

}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

  .page {
    padding-top: 82px;
  }

  .ctaRow {
    flex-direction: column;
    align-items: stretch;
  }

  .billSelect {
    min-height: 62px;
    height: 62px;
    font-size: 1rem;
  }

  .ctaRow .btn {
    width: 100%;
  }

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

  .mft {
    flex-direction: column;
    align-items: stretch;
  }

  .actions {
    width: 100%;
  }

  .actions .btn {
    width: 100%;
  }
}

/* ===========================
   TEXT FIXES
=========================== */

.hero h1 {
  order: -2;
}

.hero .sub {
  order: -1;
}

/* ===========================
   MOBILE IMPROVEMENTS
=========================== */

@media (max-width: 768px) {

  .ctaRow {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }



  #goBtn {
    height: 50px !important;
    width: 100% !important;
    font-size: .95rem !important;
  }

}

/* ===========================
   WELCOME TEXT
=========================== */

#welcomeTextFix {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #1d4ed8;
}

.hero h1 {
  margin-top: 6px;
}
/* ===========================
   LEFT CARD BACKGROUND IMAGE
=========================== */

.heroGrid > div:first-child {
  position: relative;
  overflow: hidden;
  background: none !important;
}

/* Background image layer */
.heroGrid > div:first-child::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    url("tech-bg.jpg")
    center / cover
    no-repeat;

  opacity: 0.25;

  z-index: 0;
}

/* Dark overlay */
.heroGrid > div:first-child::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.6)
    );

  z-index: 0;
}

/* Keep content above the image */
.heroGrid > div:first-child * {
  position: relative;
  z-index: 1;
}

/* White text over image */
.heroGrid > div:first-child h1,
.heroGrid > div:first-child .sub {
  color: #fff !important;
}

/* Dropdown contrast */
#serviceSelect {
  background: #fff !important;
  border: 2px solid #22c55e !important;
  border-radius: 14px;
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}

/* Go button */
#goBtn {
  background: #2563eb !important;
}


}


/* ===========================
   DEVICE SELECT ARROWS
=========================== */

.device-arrow-wrap {
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 0 12px;

  pointer-events: none;
}

.device-arrow-stack {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 2px;

  animation:
    floatDown 1.4s ease-in-out infinite;
}

.device-arrow-stack span {
  display: block;

  width: 18px;
  height: 18px;

  border-right: 4px solid #1d4ed8;
  border-bottom: 4px solid #1d4ed8;

  transform: rotate(45deg);

  opacity: 0;

  animation:
    arrowPulse 1.4s infinite;
}

.device-arrow-stack span:nth-child(1) {
  animation-delay: 0s;
}

.device-arrow-stack span:nth-child(2) {
  animation-delay: 0.18s;
}

.device-arrow-stack span:nth-child(3) {
  animation-delay: 0.36s;
}


/* Arrow pulse animation */

@keyframes arrowPulse {

  0% {
    opacity: 0;

    transform:
      rotate(45deg)
      translate(-4px, -4px);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    transform:
      rotate(45deg)
      translate(4px, 4px);
  }

}


/* Floating arrow animation */

@keyframes floatDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }

}


/* White arrows over dark image */

.heroGrid > div:first-child
.device-arrow-stack span {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}


/* Mobile arrow sizing */

@media (max-width: 768px) {

  .device-arrow-wrap {
    margin: 0 0 10px;
  }

  .device-arrow-stack span {
    width: 16px;
    height: 16px;
  }

}
/* ===========================
   TWO-STEP REPAIR FLOW
=========================== */

.fieldLabel {
  display: block;
  margin-top: 4px;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 800;
}

.fieldMessage {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.4;
}

.fieldMessage.valid {
  color: #15803d;
}

.singleQuestion input,
.singleQuestion select {
  min-height: 54px;
}

#step1 .singleQuestion,
#step2 .singleQuestion {
  gap: 10px;
}

#step1 input + .fieldLabel,
#step2 select + .fieldLabel {
  margin-top: 8px;
}

#nextBtn {
  min-width: 165px;
}

@media (max-width: 768px) {

  .singleQuestion input,
  .singleQuestion select {
    min-height: 58px;
    font-size: 1rem;
  }

  #nextBtn {
    width: 100%;
  }

  #step1 .singleQuestion,
  #step2 .singleQuestion {
    gap: 11px;
  }
}
.problemImageBox {
  width: 100%;
  margin-top: 18px;
  padding: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border: 1px solid #dce6f5;
  border-radius: 16px;
  overflow: hidden;
}

.problemImageBox img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
}
/* GREEN OUTLINE — DEVICE SELECT */
select#serviceSelect.billSelect {
  width: 100% !important;
  background-color: #ffffff !important;
  border: 3px solid #22c55e !important;
  border-radius: 14px !important;
  outline: none !important;
  box-shadow: none !important;
  appearance: auto !important;
  -webkit-appearance: menulist !important;
}

@media screen and (max-width: 768px) {
  select#serviceSelect.billSelect {
    display: block !important;
    width: 100% !important;
    height: 68px !important;
    min-height: 68px !important;
    background-color: #ffffff !important;
    border: 3px solid #22c55e !important;
    border-radius: 14px !important;
  }
}
/* GREEN OUTLINE AROUND DEVICE SELECT AREA */
.ctaRow {
  background: #ffffff !important;
  border: 3px solid #22c55e !important;
  border-radius: 16px !important;
  padding: 6px !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15) !important;
}

/* Remove the select's own border */
#serviceSelect {
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

@media screen and (max-width: 768px) {
  .ctaRow {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 6px !important;
    background: #ffffff !important;
    border: 3px solid #22c55e !important;
    border-radius: 16px !important;
  }

  #serviceSelect {
    width: 100% !important;
    height: 62px !important;
    min-height: 62px !important;
    border: none !important;
    background: #ffffff !important;
  }

  #goBtn {
    width: 100% !important;
  }
}
/* MOBILE DEVICE SELECT FIX */
@media screen and (max-width: 768px) {

  .ctaRow {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;

    /* Remove border from the entire container */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  select#serviceSelect.billSelect {
    flex: 0 0 62px !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;

    padding: 0 16px !important;

    background: #ffffff !important;
    border: 3px solid #22c55e !important;
    border-radius: 14px !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18) !important;

    color: #111827 !important;
    font-size: 1rem !important;

    appearance: auto !important;
    -webkit-appearance: menulist !important;
  }

  #goBtn {
    width: 100% !important;
    height: 52px !important;
  }
}