/* Extracted from pricing.html */
/* === Kleanext "Easy Steps" cards ΓÇô upgraded styling === */
/* Palette:
       yellow:   #fee023
       white:    #ffffff
       green:    #4CAF50
       dark blue:#01244a
    */

.work-process-layout2 {
  position: relative;
  z-index: 1;
}

.work-process-layout2 .process-row {
  position: relative;
  margin-top: 10px;
}

/* Connecting line between steps on desktop */
@media (min-width: 992px) {
  .work-process-layout2 .process-row::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.32),
        rgba(255, 255, 255, 0));
    z-index: 0;
  }
}

.work-process-layout2 .process-item {
  position: relative;
  background: rgba(1, 36, 74, 0.92);
  /* dark blue glass */
  border-radius: 18px;
  padding: 30px 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  z-index: 1;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.work-process-layout2 .process-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(254, 224, 35, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.work-process-layout2 .process-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
  border-color: rgba(254, 224, 35, 0.65);
  /* yellow accent */
}

.work-process-layout2 .process-item:hover::before {
  opacity: 1;
}

/* Step number badge (kept for legacy HTML but visually hidden below) */
.work-process-layout2 .process__number {
  position: relative;
  top: 0;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fee023;
  /* yellow */
  border: 2px solid #ffffff;
  /* white ring */
  color: #01244a;
  /* dark blue text */
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Checkmark badge (appears on hover) */
.work-process-layout2 .check__icon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%) scale(0.6);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #4CAF50;
  /* green */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.work-process-layout2 .process-item:hover .check__icon {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.work-process-layout2 .process__title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
}

.work-process-layout2 .process__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

/* Bottom icon bubble */
.work-process-layout2 .process__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(1, 36, 74, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.work-process-layout2 .process__icon i {
  font-size: 28px;
  color: #ffffff;
  /* white */
  transition: color 0.2s ease, transform 0.2s ease;
}

.work-process-layout2 .process-item:hover .process__icon {
  background: #fee023;
  /* yellow */
  border-color: #fee023;
  /* yellow rim */
  transform: translateY(3px) rotate(-4deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.work-process-layout2 .process-item:hover .process__icon i {
  color: #01244a;
  transform: rotate(4deg);
}

@media (max-width: 767.98px) {
  .work-process-layout2 .process-item {
    margin-bottom: 20px;
  }
}

/* Modern step badges (Step ┬╖ tag) */
.work-process-layout2 .process__badge {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 7px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(1, 36, 74, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

.work-process-layout2 .process__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.3);
  flex-shrink: 0;
}

.work-process-layout2 .process__badge-label {
  font-weight: 700;
  opacity: 0.9;
  line-height: normal;
}

.work-process-layout2 .process__badge-tag {
  font-weight: 500;
  opacity: 0.85;
  line-height: normal;
}

.work-process-layout2 .process-item:hover .process__badge-dot {
  background: #fee023;
  box-shadow: 0 0 0 5px rgba(254, 224, 35, 0.45);
}

/* Hide old circular numbers visually if the HTML still contains them */
.work-process-layout2 .process__number {
  display: none !important;
}

/* Portfolio description text - limit to 2 lines by default, expand on click */
.portfolio-item .portfolio__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}

.portfolio-item.expanded .portfolio__desc {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

/* Pricing portfolio: keep title visible, show description only on hover/focus */
.portfolio-carousel.portfolio-layout1 .portfolio-item .portfolio__title {
  visibility: visible;
  opacity: 1;
}

.portfolio-carousel.portfolio-layout1 .portfolio-item .portfolio__desc {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.portfolio-carousel.portfolio-layout1 .portfolio-item:hover .portfolio__desc,
.portfolio-carousel.portfolio-layout1 .portfolio-item:focus-within .portfolio__desc,
.portfolio-carousel.portfolio-layout1 .portfolio-item.expanded .portfolio__desc {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* === Kleanext Pricing Packages â€“ modern cards (About Us design) === */

.pricing-layout2 .packages-wrapper {
  margin-top: 10px;
}

.pricing-layout2 .packages-wrapper>[class*="col-"] {
  margin-bottom: 30px;
}

/* Whole card */
.pricing-layout2 .pricing-package {
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

/* Thin accent line at the top */
.pricing-layout2 .pricing-package::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fee023, #4CAF50);
}

/* Inner body area */
.pricing-layout2 .package__body {
  padding: 30px 24px 24px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.98),
      rgba(1, 36, 74, 0.03));
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

/* Titles */
.pricing-layout2 .package__subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #01244a;
  opacity: 0.7;
  margin-bottom: 6px;
}

.pricing-layout2 .package__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #01244a;
  margin-bottom: 18px;
}

/* Description text */
.pricing-layout2 .package__desc {
  font-size: 0.95rem;
  color: rgba(1, 36, 74, 0.85);
  margin-bottom: 16px;
}

/* List with custom check bullets */
.pricing-layout2 .package__list {
  margin: 0;
  padding: 0;
}

.pricing-layout2 .package__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  color: rgba(1, 36, 74, 0.9);
  font-size: 0.95rem;
}

.pricing-layout2 .package__list li::before {
  content: "\f00c";
  /* fa-check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #01244a;
  color: #ffffff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure list-items-layout2 bullets use the same dark blue on this page */
.list-items-layout2 li:before {
  background-color: #01244a !important;
  border-color: #01244a !important;
}

/* Make the 3rd pricing card bullets match the other cards */
.packages-wrapper>[class*="col-"]:nth-of-type(3) .pricing-package .package__list li:before {
  width: 16px !important;
  height: 16px !important;
  background: #01244a !important;
  border-color: #01244a !important;
  color: #ffffff !important;
  font-size: 9px !important;
  left: 0 !important;
  top: 4px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Icon bubbles (optional, if you ever add them) */
.pricing-layout2 .package__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #01244a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.pricing-layout2 .package__icon i {
  font-size: 26px;
  color: #fee023;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Footer strip (price + button) */
.pricing-layout2 .package__footer {
  align-items: stretch;
}

.pricing-layout2 .package__footer .bg-img {
  opacity: 0.9;
}

.pricing-layout2 .package__price {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #01244a;
}

.pricing-layout2 .package__price span {
  color: #01244a;
}

.pricing-layout2 .package__price .price_from {
  font-size: 0.85rem;
  opacity: 0.75;
}

@media (max-width: 991.98px) {
  .pricing-layout2 .pricing-package .package__footer .package__price {
    font-size: 28px;
    padding: 0 10px;
  }

  .pricing-layout2 .pricing-package .package__footer .package__price .price_from,
  .pricing-layout2 .pricing-package .package__footer .package__price .package__period {
    font-size: 0.7rem;
  }
}

/* Hover states â€“ subtle lift + color shift */
.pricing-layout2 .pricing-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.pricing-layout2 .pricing-package:hover .package__body {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.99),
      rgba(254, 224, 35, 0.18));
}

.pricing-layout2 .pricing-package:hover .package__icon {
  background: #4CAF50;
  border-color: #fee023;
  transform: translateY(3px) rotate(-4deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.pricing-layout2 .pricing-package:hover .package__icon i {
  color: #ffffff;
  transform: rotate(4deg);
}

/* Make "Purchase Now" buttons consistent across pricing cards */
.pricing-layout2 .package__footer .btn__primary,
.pricing-layout2 .package__footer .btn__secondary,
.pricing-layout2 .package__footer .btn__accent {
  background-color: #2983FD !important;
  color: #ffffff !important;
  border-color: #2983FD !important;
}

.pricing-layout2 .package__footer .btn__primary:hover,
.pricing-layout2 .package__footer .btn__secondary:hover,
.pricing-layout2 .package__footer .btn__accent:hover {
  background-color: #063464 !important;
  border-color: #063464 !important;
  color: #ffffff !important;
}

/* Make Commercial (2nd) and Outdoor (3rd) "Purchase Now" hover exactly match the Traditional (1st) button hover */
.packages-wrapper>[class*="col-"]:nth-of-type(2) .package__footer .btn:before,
.packages-wrapper>[class*="col-"]:nth-of-type(3) .package__footer .btn:before {
  background-color: #063464 !important;
}

.packages-wrapper>[class*="col-"]:nth-of-type(2) .package__footer .btn:hover,
.packages-wrapper>[class*="col-"]:nth-of-type(3) .package__footer .btn:hover {
  color: #ffffff !important;
}

.packages-wrapper>[class*="col-"]:nth-of-type(2) .package__footer .btn:hover .icon-outlined,
.packages-wrapper>[class*="col-"]:nth-of-type(3) .package__footer .btn:hover .icon-outlined {
  color: #063464 !important;
  border-color: #ffffff !important;
  background-color: #ffffff !important;
}

/* Make the icon bubble on all pricing "Purchase Now" buttons match the primary button */
.pricing-layout2 .package__footer .btn .icon-outlined {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background-color: #2983fd !important;
}

/* And on hover behave exactly like primary: white bubble with dark-blue icon */
.pricing-layout2 .package__footer .btn:hover .icon-outlined {
  color: #063464 !important;
  border-color: #ffffff !important;
  background-color: #ffffff !important;
}

/* ================================================================
   Quote Request Modal  â€“  Kleanext palette
   Palette: dark-blue #01244a  |  yellow #fee023  |  green #4CAF50
================================================================ */

/* body lock while modal open */
.qr-no-scroll {
  overflow: hidden;
}

/* ---- Overlay ---- */
.qr-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(1, 25, 60, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.qr-overlay--open {
  opacity: 1;
  pointer-events: all;
}

/* ---- Modal card ---- */
.qr-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.88) translateY(28px);
  transition: transform 0.3s cubic-bezier(0.34, 1.48, 0.64, 1), opacity 0.28s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: #fee023 #f0f0f0;
}

.qr-overlay--open .qr-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* custom scrollbar */
.qr-modal::-webkit-scrollbar {
  width: 5px;
}

.qr-modal::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 999px;
}

.qr-modal::-webkit-scrollbar-thumb {
  background: #fee023;
  border-radius: 999px;
}

/* ---- Close button ---- */
.qr-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(1, 36, 74, 0.08);
  color: #01244a;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.qr-close:hover {
  background: #01244a;
  color: #fee023;
  transform: rotate(90deg);
}

/* ---- Header ---- */
.qr-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 32px 0;
  background: linear-gradient(135deg, #01244a 0%, #063464 100%);
  border-radius: 24px 24px 0 0;
  padding-bottom: 28px;
  position: relative;
  overflow: hidden;
}

/* no texture overlay */

/* yellowâ€“green bar at very top of header */
.qr-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fee023, #4CAF50);
  border-radius: 24px 24px 0 0;
}

.qr-header__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fee023;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01244a;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.qr-header__text {
  position: relative;
  z-index: 1;
}

.qr-header__eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4CAF50;
  font-weight: 700;
  margin-bottom: 4px;
}

.qr-header__title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.25;
}

.qr-header__sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.qr-header__sub strong {
  color: #fee023;
}

/* ---- Decorative dots ---- */
.qr-dots {
  display: flex;
  gap: 6px;
  padding: 10px 32px;
  background: #01244a;
}

.qr-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.qr-dots span:nth-child(1) {
  background: #fee023;
}

.qr-dots span:nth-child(2) {
  background: #4CAF50;
}

.qr-dots span:nth-child(3) {
  background: rgba(255, 255, 255, 0.3);
}

/* ---- Form body ---- */
.qr-form {
  padding: 28px 32px 32px;
}

.qr-form__row {
  margin-bottom: 16px;
}

.qr-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 540px) {
  .qr-form__row--2 {
    grid-template-columns: 1fr;
  }

  .qr-header {
    padding: 24px 20px 24px;
    gap: 14px;
  }

  .qr-form {
    padding: 20px 20px 24px;
  }

  .qr-dots {
    padding: 8px 20px;
  }
}

/* ---- Field ---- */
.qr-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qr-field__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #01244a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qr-field__label i {
  color: #4CAF50;
  margin-right: 5px;
}

.qr-required {
  color: #e84545;
  margin-left: 2px;
}

.qr-field__input,
.qr-field__select,
.qr-field__textarea {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1.5px solid rgba(1, 36, 74, 0.16);
  background: rgba(1, 36, 74, 0.03);
  color: #01244a;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.qr-field__textarea {
  height: auto;
  padding: 11px 14px;
  line-height: 1.5;
  resize: vertical;
  min-height: 90px;
}

.qr-input-group {
  display: flex;
}

.qr-date-btn {
  padding: 0 0.7rem;
}

/* select arrow */
.qr-field__select {
  height: 44px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 14px;
  padding-right: 36px;
  line-height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2301244a' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.qr-field__input--readonly {
  background: rgba(1, 36, 74, 0.06);
  cursor: default;
  color: rgba(1, 36, 74, 0.65);
}

.qr-field__input:focus,
.qr-field__select:focus,
.qr-field__textarea:focus {
  border-color: #4CAF50;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

/* Error state */
.qr-field--error .qr-field__input,
.qr-field--error .qr-field__select,
.qr-field--error .qr-field__textarea {
  border-color: #e84545;
  box-shadow: 0 0 0 3px rgba(232, 69, 69, 0.12);
}

.qr-field__err {
  display: none;
  font-size: 0.78rem;
  color: #e84545;
  font-weight: 500;
}

.qr-field--error .qr-field__err {
  display: block;
}

/* ---- Submit button â€“ matches project btn__primary (#2983FD â†’ #063464) ---- */
.qr-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  border-radius: 4px;
  border: 2px solid #2983fd;
  background-color: #2983fd;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.qr-submit:hover {
  background-color: #063464;
  border-color: #063464;
  color: #ffffff;
}

.qr-submit__text,
.qr-submit__icon {
  font-size: 0.95rem;
}

/* Loading spinner â€“ icon swap handled in JS */
@keyframes qr-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Success panel ---- */
.qr-success {
  padding: 48px 32px 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-success__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 20px;
}

.qr-success__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #01244a;
  margin-bottom: 10px;
}

.qr-success__msg {
  font-size: 0.95rem;
  color: rgba(1, 36, 74, 0.75);
  max-width: 380px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.qr-success__msg strong {
  color: #01244a;
}

.qr-success__close {
  padding: 12px 36px;
  border-radius: 4px;
  border: 2px solid #2983fd;
  background: transparent;
  color: #2983fd;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.qr-success__close:hover {
  background-color: #063464;
  border-color: #063464;
  color: #ffffff;
}

/* ================================================================
   Auth-wall  (shown when user is not signed in)
================================================================ */
.qr-auth-wall {
  padding: 44px 32px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-auth-wall__lock {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #01244a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fee023;
  font-size: 28px;
  margin-bottom: 20px;
}

.qr-auth-wall__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #01244a;
  margin-bottom: 10px;
}

.qr-auth-wall__msg {
  font-size: 0.93rem;
  color: rgba(1, 36, 74, 0.7);
  max-width: 360px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.qr-auth-wall__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Auth wall buttons â€“ same transitions as project btn__primary */
.qr-auth-wall__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.qr-auth-wall__btn--primary {
  background-color: #2983fd;
  border: 2px solid #2983fd;
  color: #ffffff;
}

.qr-auth-wall__btn--primary:hover {
  background-color: #063464;
  border-color: #063464;
  color: #ffffff;
}

.qr-auth-wall__btn--ghost {
  background-color: transparent;
  color: #2983fd;
  border: 2px solid #2983fd;
}

.qr-auth-wall__btn--ghost:hover {
  background-color: #063464;
  border-color: #063464;
  color: #ffffff;
}

/* ================================================================
   Loading spinner panel
================================================================ */
.qr-loading {
  padding: 52px 32px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.qr-loading__spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(1, 36, 74, 0.12);
  border-top-color: #01244a;
  border-radius: 50%;
  animation: qr-spin 0.7s linear infinite;
}

.qr-loading__text {
  font-size: 0.9rem;
  color: rgba(1, 36, 74, 0.6);
  margin: 0;
}

/* ================================================================
   Profile-locked field wrapper + badge
================================================================ */
.qr-field__input-wrap {
  position: relative;
}

.qr-field__input-wrap .qr-field__input {
  width: 100%;
  padding-right: 40px;
  /* room for badge */
}

.qr-field__input--profile {
  background: rgba(1, 36, 74, 0.04) !important;
  color: rgba(1, 36, 74, 0.75) !important;
  cursor: default;
  border-color: rgba(1, 36, 74, 0.12) !important;
}

.qr-field__profile-badge {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4CAF50;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  flex-shrink: 0;
}

/* Profile note below form fields */
.qr-profile-note {
  font-size: 0.78rem;
  color: rgba(1, 36, 74, 0.55);
  background: rgba(76, 175, 80, 0.06);
  border-left: 3px solid #4CAF50;
  border-radius: 0 6px 6px 0;
  padding: 8px 12px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.qr-profile-note i {
  color: #4CAF50;
  margin-right: 4px;
}

.qr-profile-note a {
  color: #01244a;
  font-weight: 600;
  text-decoration: underline;
}

/* ================================================================
   Mobile â€“ full overrides  â‰¤ 480 px
================================================================ */
@media (max-width: 480px) {
  .qr-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .qr-modal {
    max-height: 96vh;
    border-radius: 20px 20px 0 0;
    /* slide up from bottom on small screens */
    transform: scale(1) translateY(100%);
  }

  .qr-overlay--open .qr-modal {
    transform: scale(1) translateY(0);
  }

  .qr-header {
    padding: 22px 18px 22px;
    gap: 12px;
    border-radius: 20px 20px 0 0;
  }

  .qr-header__title {
    font-size: 1.15rem;
  }

  .qr-header__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .qr-dots {
    padding: 8px 18px;
  }

  .qr-form {
    padding: 18px 18px 24px;
  }

  .qr-form__row--2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .qr-field {
    margin-bottom: 14px;
  }

  .qr-auth-wall {
    padding: 32px 18px 40px;
  }

  .qr-auth-wall__lock {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .qr-auth-wall__title {
    font-size: 1.1rem;
  }

  .qr-auth-wall__btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .qr-loading {
    padding: 40px 18px 44px;
  }

  .qr-success {
    padding: 34px 18px 40px;
  }

  .qr-success__circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .qr-success__title {
    font-size: 1.15rem;
  }

  .qr-submit {
    font-size: 0.95rem;
    padding: 13px 20px;
  }

  .qr-close {
    top: 12px;
    right: 12px;
  }
}

/* Tablet  481â€“768 px */
@media (min-width: 481px) and (max-width: 768px) {
  .qr-overlay {
    padding: 12px;
  }

  .qr-header {
    padding: 24px 24px 24px;
  }

  .qr-form__row--2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .qr-field {
    margin-bottom: 14px;
  }
}

a.btn.btn__primary.btn__block.justify-content-between {
  margin-top: 0 !important;
}

.pricing-package{
  margin-bottom: 0 !important;
}