* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Open Sans", Arial, sans-serif;
  color: #222;
  background: #fff;
  font-size: 13px;
}

.container {
  width: 78%;
  max-width: 1180px;
  margin: 0 auto;
}

.flex {
  display: flex;
  align-items: center;
}

.between {
  justify-content: space-between;
}

h1,
h2,
h3,
h4 {
  font-family: "Chivo", Arial, sans-serif;
  font-weight: 400;
}

span,
.color,
h2 span {
  color: var(--primary-blue);
}

/* TOP BAR */
.topbar {
  height: 38px;
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 11px;
  color: #333;
}

.topbar .container {
  height: 100%;
}

.topbar span {
  margin-right: 28px;
  color: #222;
}

.topbar i {
  color: var(--primary-blue);
  margin-right: 5px;
}

/* NAVBAR */
:root {
  --primary-blue: #1f8bd6;
  --deep-blue: #2453c7;
  --navy: #071a3d;
  --purple: #3532a8;
  --black: #050505;
  --white: #ffffff;

  /* compatibility aliases used by your existing navbar CSS */
  --nx-blue: #1f8bd6;
  --nx-deep-blue: #2453c7;
  --nx-navy: #071a3d;
  --nx-purple: #3532a8;
}

/* NAVBAR */
.navbar {
  height: 78px;
  background: #fff;
  border-bottom: 1px solid #e9eef6;
  position: relative;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.nav-inner {
  height: 100%;
}

/* LOGO BLOCK */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* TEXT */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text h1,
.brand-text .brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--navy);
  margin: 0;
  font-family: "Chivo", sans-serif;
}

.brand-text p {
  font-size: 11px;
  color: #7a869a;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.brand-text strong {
  font-family: "Chivo", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--nx-blue);
  letter-spacing: 1px;
}

.brand-text span {
  font-family: "Chivo", sans-serif;
  font-size: 15px;
  color: var(--nx-purple);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-transform: uppercase;
  font-size: 14px;          
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 1.5px;    
  margin-left: 28px;       
  transition: all 0.25s ease;
}

.nav a:hover,
.nav a:first-child {
  color: var(--nx-blue);
}

.nav-btn {
  display: block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--nx-blue), var(--nx-purple));
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--nx-purple), var(--nx-blue));
}

.navbar.navbar-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: #fff;
  animation: navDrop .25s ease;
}

.navbar.navbar-scrolled .brand img {
  width: 48px;
  height: 48px;
}

@keyframes navDrop {
  from {
    transform: translateY(-12px);
    opacity: .7;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  border: none;
  border-radius: 30px;
  padding: 11px 28px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple), var(--primary-blue));
  transform: translateY(-2px);
}

/* HERO SLIDER */
.hero-slider {
  height: 640px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  margin-top: -35px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-content .subtitle {
  font-size: 34px;
  line-height: 1.1;
  color: #fff;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--primary-blue);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ACTION BOXES */
.action-section {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.action-grid {
  display: flex;
  justify-content: center;
  max-width: 760px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.action-card {
  width: 33.33%;
  min-height: 76px;
  background: #fff;
  border-right: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 0 20px;
  position: relative;
  /* overflow: hidden removed so the ::after speech-bubble tail can extend below */
  transition: all 0.35s ease;
  cursor: pointer;
}

.action-card:last-child {
  border-right: none;
}

/* Speech-bubble tail: downward-pointing triangle below each action card */
.action-card::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 12px solid var(--primary-blue);
  z-index: 3;
  transition: transform .3s ease, border-top-color .3s ease;
  /* tiny gap-fill so the tail blends seamlessly into the card's bottom edge */
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.08));
}
.action-card:hover::after {
  transform: translateX(-50%) translateY(4px);
  border-top-color: var(--purple, #3532a8);
}

.action-card i {
  font-size: 21px;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.action-card h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #222;
}

.action-text {
  display: flex;
  flex-direction: column;
}

.action-extra {
  font-size: 11px;
  line-height: 1.35;
  color: #666;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.action-card:hover {
  min-height: 118px;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.action-card:hover .action-extra {
  opacity: 1;
  max-height: 45px;
  margin-top: 5px;
}

.action-card:hover i {
  transform: scale(1.18);
}

/* SERVICES */
.services {
  padding: 58px 0 40px;
  text-align: center;
}

.services h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.services h2::after {
  content: "Get your device repaired in just three easy steps";
  display: block;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 12px;
  color: #555;
  margin-top: 6px;
}

.device-tabs {
  max-width: 1170px;
  height: 106px;
  margin: 38px auto 0;
  display: flex;
  background: #fff;
}

.device-tabs .tab {
  flex: 1;
  border: 1px solid #eee;
  background: #fff;
  color: #111;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
}

.device-tabs .tab i {
  font-size: 38px;
  color: #111;
}

.device-tabs .tab span {
  display: flex;
  flex-direction: column;
  color: #111;
}

.device-tabs .tab strong {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #111;
}

.device-tabs .tab small {
  font-size: 14px;
  color: #111;
}

.device-tabs .tab.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.device-tabs .tab.active i,
.device-tabs .tab.active strong,
.device-tabs .tab.active small {
  color: #fff;
}

.tab-wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.service-layout {
  height: 558px;
  display: flex;
  align-items: stretch;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}

.service-list {
  width: 290px;
  padding: 46px 0 0 48px;
  text-align: left;
  background: var(--navy);
  position: relative;
  z-index: 4;
}

.service-list ul {
  list-style: none;
}

.service-list li {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-list li i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.92);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Device mockups */
.phone-mockup {
  flex: 1;
  height: 100%;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right center, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.78) 62%);
  z-index: 1;
  pointer-events: none;
}

.phone-mockup img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95%;
  max-width: 92%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.38));
}

.device-mockup img {
  width: auto;
  height: 88%;
}

.tablet-device img {
  height: 82%;
}

.computer-device img {
  height: 84%;
}

.other-device img {
  height: 74%;
}

.repair-point {
  position: absolute;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.88);
  color: var(--primary-blue);
  font-size: 16px;
  cursor: pointer;
  transition: all .25s ease;
}

.repair-point:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 0 10px rgba(31, 139, 214, .2);
}

.repair-point.pulse {
  transform: scale(1.18);
  box-shadow: 0 0 0 14px rgba(31, 139, 214, .22);
}

.repair-tooltip {
  position: absolute;
  right: 78px;
  bottom: 135px;
  width: 265px;
  background: rgba(0, 0, 0, .92);
  color: #fff;
  padding: 18px 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(15px);
  transition: all .3s ease;
  z-index: 8;
}

.repair-tooltip.active {
  opacity: 1;
  transform: translateY(0);
}

.repair-tooltip h4 {
  color: var(--primary-blue);
  font-size: 15px;
  margin-bottom: 6px;
}

.repair-tooltip p {
  font-size: 12px;
  line-height: 1.5;
}

.select-device {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 6;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 35px;
  padding: 18px 28px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.select-device i {
  margin-left: 10px;
}

@media (max-width: 900px) {
  .device-tabs {
    height: auto;
    flex-direction: column;
  }

  .service-layout {
    height: auto;
    flex-direction: column;
  }

  .service-list {
    width: 100%;
    padding: 30px;
  }

  .phone-mockup {
    height: 460px;
  }

  .phone-mockup img,
  .device-mockup img,
  .tablet-device img,
  .computer-device img,
  .other-device img {
    max-width: 90%;
    height: 78%;
  }

  .repair-point {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .repair-tooltip {
    right: 24px;
    bottom: 92px;
    width: min(240px, calc(100% - 48px));
  }

  .select-device {
    right: 24px;
    bottom: 24px;
    padding: 14px 22px;
    font-size: 12px;
  }
}



/* HOW */
.how {
  padding: 72px 0 86px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.how .container {
  max-width: 1180px;
}

.how-heading {
  margin-bottom: 52px;
}

.how h2 {
  font-family: "Chivo", Arial, sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: #141821;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.how h2 .how-accent {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.how-heading p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  color: #1f2c44;
}

.how-heading p strong {
  color: var(--purple);
  font-weight: 700;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 48px;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 63px;
  left: 18%;
  right: 18%;
  border-top: 1px dotted rgba(31, 139, 214, 0.28);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #333;
}

.step-icon-wrap {
  width: 128px;
  height: 128px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.step-icon {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(31, 139, 214, 0.16);
  box-shadow: 0 12px 30px rgba(7, 26, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 38px;
  transition: all 0.3s ease;
}

.step.is-current .step-icon {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: 0 0 0 10px rgba(31, 139, 214, 0.08), 0 16px 34px rgba(36, 83, 199, 0.14);
}

.step:hover .step-icon {
  transform: translateY(-5px);
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: 0 18px 40px rgba(53, 50, 168, 0.14);
}

.you-are-here {
  position: absolute;
  top: -15px;
  left: calc(100% - 4px);
  min-width: 112px;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  padding: 12px 15px;
  z-index: 3;
  box-shadow: 0 12px 22px rgba(7, 26, 61, 0.18);
}

.you-are-here::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 9px solid var(--navy);
}

.step.is-current .step-icon-wrap::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 48px;
  right: -47px;
  top: 4px;
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
  border-radius: 100% 0 0 0;
  transform: rotate(-28deg);
  z-index: 2;
  pointer-events: none;
}

.step.is-current .step-icon-wrap::before {
  content: "";
  position: absolute;
  right: -33px;
  top: 50px;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-35deg);
  z-index: 2;
  pointer-events: none;
}

.step h3 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  color: #1d2740;
  margin-bottom: 12px;
}

.step h3 strong {
  color: var(--black);
  font-weight: 800;
}

.step p {
  font-size: 15px;
  line-height: 1.65;
  color: #44516b;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .how {
    padding: 56px 0 64px;
  }

  .how h2 {
    font-size: 32px;
  }

  .how-heading p {
    font-size: 15px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .how-steps::before {
    display: none;
  }

  .step-icon-wrap,
  .step-icon {
    width: 112px;
    height: 112px;
  }

  .step-icon {
    font-size: 32px;
  }

  .you-are-here,
  .step.is-current .step-icon-wrap::before,
  .step.is-current .step-icon-wrap::after {
    display: none;
  }

  .step h3 {
    font-size: 20px;
  }
}

/* OUR ADVANTAGES */
.advantages {
  position: relative;
  padding: 84px 0 94px;
  color: #fff;
  background:
    linear-gradient(rgba(4, 10, 26, 0.88), rgba(4, 10, 26, 0.88)),
    url("images/backlay.jpg") center / cover fixed no-repeat;
  overflow: hidden;
}

.advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(31,139,214,0.13), transparent 34%),
    linear-gradient(90deg, rgba(7,26,61,0.52), rgba(53,50,168,0.16), rgba(7,26,61,0.52));
  pointer-events: none;
}

.advantages .container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
}

.advantages-heading {
  text-align: center;
  margin-bottom: 44px;
}

.advantages-heading h2 {
  font-size: 46px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}

.advantages-heading p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.95);
}

.advantages-orbit-layout {
  position: relative;
}

.adv-orbit-stage {
  position: relative;
  min-height: 720px;
  max-width: 1220px;
  margin: 0 auto;
}

.adv-orbit-item {
  position: absolute;
  width: 350px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.orbit-top-left {
  top: 54px;
  left: calc(50% - 470px);
  text-align: right;
  flex-direction: row-reverse;
}

.orbit-top-right {
  top: 54px;
  right: calc(50% - 470px);
  text-align: left;
}

.orbit-bottom-left {
  bottom: 80px;
  left: calc(50% - 470px);
  text-align: right;
  flex-direction: row-reverse;
}

.orbit-bottom-right {
  bottom: 80px;
  right: calc(50% - 470px);
  text-align: left;
}

.adv-orbit-item .adv-number {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Chivo", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  box-shadow: 0 12px 28px rgba(31, 139, 214, 0.30);
}

.adv-orbit-item .adv-copy {
  max-width: 275px;
}

.adv-orbit-item .adv-copy h3 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
  margin-bottom: 10px;
}

.adv-orbit-item .adv-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.90);
}

.adv-device-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.adv-device-wrap::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,139,214,0.18) 0%, rgba(53,50,168,0.10) 44%, transparent 72%);
  filter: blur(4px);
}

.adv-device-image-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-device-image {
  width: 380px;
  max-width: 100%;
  height: 490px;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.34));
}

@media (max-width: 1150px) {
  .adv-orbit-stage {
    min-height: 980px;
    max-width: 860px;
  }

  .adv-device-wrap {
    top: 48%;
  }

  .adv-orbit-item {
    width: 320px;
  }

  .orbit-top-left {
    top: 10px;
    left: 18px;
  }

  .orbit-top-right {
    top: 10px;
    right: 18px;
  }

  .orbit-bottom-left {
    bottom: 24px;
    left: 18px;
  }

  .orbit-bottom-right {
    bottom: 24px;
    right: 18px;
  }
}

@media (max-width: 900px) {
  .advantages {
    padding: 68px 0 74px;
    background-attachment: scroll;
  }

  .advantages-heading {
    margin-bottom: 34px;
  }

  .advantages-heading h2 {
    font-size: 34px;
  }

  .advantages-heading p {
    font-size: 15px;
  }

  .adv-orbit-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .adv-device-wrap {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: -1;
    margin-bottom: 8px;
  }

  .adv-device-wrap::before {
    width: 320px;
    height: 320px;
  }

  .adv-orbit-item {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
  }

  .orbit-top-left,
  .orbit-top-right,
  .orbit-bottom-left,
  .orbit-bottom-right {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .adv-orbit-item .adv-copy {
    max-width: none;
  }

  .adv-device-image {
    width: 260px;
  }

  .repair-check {
    right: 28px;
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .adv-orbit-item .adv-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 20px;
  }

  .adv-orbit-item .adv-copy h3 {
    font-size: 20px;
  }

  .adv-orbit-item .adv-copy p {
    font-size: 14px;
  }

  .adv-device-image {
    width: 220px;
  }
}

/* FAQ */
.faq {
  padding: 78px 0 92px;
  background: #f5f5f5;
  text-align: center;
}

.faq .container {
  max-width: 1180px;
}

.faq-heading {
  margin-bottom: 42px;
}

.faq-heading h2 {
  font-family: "Chivo", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
  color: #1a2238;
  margin-bottom: 14px;
}

.faq-heading h2 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq-heading p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  color: #151515;
}

.faq-list {
  max-width: 1160px;
  margin: 0 auto;
  background: #f7f7f7;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  background: #f7f7f7;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ececec;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 24px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-question-text {
  font-size: 18px;
  line-height: 1.5;
  color: #16233c;
  padding-right: 12px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px 0 94px;
  text-align: left;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: #44516b;
  padding: 0 0 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--purple);
  border-color: rgba(31, 139, 214, 0.24);
  box-shadow: 0 8px 18px rgba(31, 139, 214, 0.14);
}

.faq-item.active .faq-question-text {
  color: #0f1e35;
}

.faq-actions {
  margin-top: 46px;
}

.faq-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(31, 139, 214, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(53, 50, 168, 0.28);
}

@media (max-width: 900px) {
  .faq {
    padding: 64px 0 76px;
  }

  .faq-heading h2 {
    font-size: 28px;
  }

  .faq-heading p {
    font-size: 15px;
  }

  .faq-question {
    grid-template-columns: 50px 1fr;
    padding: 12px 16px;
    gap: 14px;
  }

  .faq-icon {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .faq-question-text {
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 16px 0 80px;
  }
}

@media (max-width: 640px) {
  .faq-heading {
    margin-bottom: 30px;
  }

  .faq-heading h2 {
    font-size: 24px;
  }

  .faq-question-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .faq-answer {
    padding: 0 16px 0 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-more-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* USED PHONE MARKETPLACE */
.used-phone-marketplace {
  min-height: 520px;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.marketplace-image {
  position: relative;
  min-height: 560px;
  background: url("images/used-phone-marketplace.jpg") 74% 100% / cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.marketplace-image-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.marketplace-content {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px 8% 72px 3%;
  background:
    radial-gradient(circle at 85% 20%, rgba(31,139,214,0.08), transparent 28%),
    radial-gradient(circle at 70% 90%, rgba(53,50,168,0.08), transparent 30%),
    #fff;
}

.marketplace-content::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(45deg, var(--navy) 25%, transparent 25%),
    linear-gradient(-45deg, var(--navy) 25%, transparent 25%);
  background-size: 28px 28px;
  pointer-events: none;
}

.marketplace-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.marketplace-inner h2 {
  font-size: 42px;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 14px;
}

.marketplace-subtitle {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
  color: var(--purple);
  margin-bottom: 32px;
}

.marketplace-text {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.78;
  color: #34405a;
  margin-bottom: 32px;
}

.marketplace-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.marketplace-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #1f2c44;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 700;
}

.marketplace-list i {
  color: var(--primary-blue);
  font-size: 21px;
  margin-top: 2px;
}

.marketplace-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.marketplace-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 26px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.28s ease;
}

.marketplace-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  box-shadow: 0 14px 28px rgba(31, 139, 214, 0.22);
}

.marketplace-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(53, 50, 168, 0.28);
}

.marketplace-btn-light {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(7, 26, 61, 0.08);
  box-shadow: 0 12px 24px rgba(7, 26, 61, 0.10);
}

.marketplace-btn-light:hover {
  transform: translateY(-2px);
  color: var(--primary-blue);
}

@media (max-width: 1050px) {
  .used-phone-marketplace {
    grid-template-columns: 1fr;
  }

  .marketplace-image {
    min-height: 340px;
    background-position: center 82%;
    clip-path: none;
  }

  .marketplace-content {
    min-height: auto;
    padding: 58px 7%;
  }
}

@media (max-width: 700px) {
  .marketplace-image {
    min-height: 260px;
  }

  .marketplace-inner h2 {
    font-size: 32px;
  }

  .marketplace-subtitle {
    font-size: 16px;
  }

  .marketplace-text,
  .marketplace-list li {
    font-size: 15px;
  }

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

  .marketplace-btn {
    width: 100%;
  }
}


/* SUPPORT BANNER */
.support-banner {
  padding: 74px 0 70px;
  background:
    #ffffff;
  text-align: center;
}

.support-banner h2 {
  font-family: "Chivo", Arial, sans-serif;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 18px;
}

.support-banner h2 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.support-banner p {
  max-width: 980px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.55;
  font-style: italic;
  color: #14213d;
}

@media (max-width: 900px) {
  .support-banner {
    padding: 58px 0 56px;
  }

  .support-banner h2 {
    font-size: 32px;
  }

  .support-banner p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .support-banner h2 {
    font-size: 27px;
  }

  .support-banner p {
    font-size: 15px;
  }
}

/* TESTIMONIALS */
.testimonials {
  padding: 0;
  background: #f3f5f9;
}

.testimonials-wrap {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 12, 23, 0.86), rgba(7, 12, 23, 0.86)),
    url("images/feedback.jpg") center / cover no-repeat;
}

.testimonials .container {
  max-width: 1240px;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 0.66fr;
  min-height: 560px;
  align-items: stretch;
}

.testimonials-left {
  position: relative;
  z-index: 2;
  padding: 72px 56px 72px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.testimonials-heading,
.testimonial-slider-shell,
.testimonial-dots {
  position: relative;
  z-index: 1;
}

.testimonials-heading {
  margin-bottom: 34px;
}

.testimonials-heading h2 {
  font-size: 40px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
}

.testimonials-heading p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-slider-shell {
  position: relative;
  max-width: 720px;
  min-height: 260px;
}

.testimonial-card {
  display: none;
  align-items: flex-start;
  gap: 22px;
}

.testimonial-card.active {
  display: flex;
}

.testimonial-quote-mark {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-size: 24px;
  box-shadow: 0 14px 28px rgba(31, 139, 214, 0.22);
}

.testimonial-copy h4 {
  color: #fff;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 14px;
}

.testimonial-copy blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
  max-width: 670px;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonial-dot.active {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  transform: scale(1.08);
}

.testimonials-right {
  position: relative;
  min-height: 560px;
}

.testimonials-image-panel {
  position: absolute;
  inset: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.testimonials-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.testimonials-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 21, 0.18), rgba(5, 11, 21, 0.02));
}

@media (max-width: 1050px) {
  .testimonials-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .testimonials-right {
    min-height: 340px;
    order: -1;
  }

  .testimonials-image-panel {
    position: relative;
    min-height: 340px;
    clip-path: none;
  }

  .testimonials-left {
    padding: 54px 24px 60px;
  }
}

@media (max-width: 700px) {
  .testimonials-heading h2 {
    font-size: 32px;
  }

  .testimonials-heading p {
    font-size: 16px;
  }

  .testimonial-card {
    gap: 16px;
  }

  .testimonial-quote-mark {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 20px;
  }

  .testimonial-copy blockquote {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* BOTTOM CTA */
.bottom-cta-section {
  padding: 86px 0 0;
  background: #eef0f4;
}

.bottom-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(90deg, #030c20 0%, #051433 42%, #0d3158 100%);
  box-shadow: 0 22px 44px rgba(11, 20, 42, 0.18);
  padding: 64px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 42px;
  align-items: center;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-orb-left {
  width: 270px;
  height: 270px;
  left: -84px;
  bottom: -92px;
  background: rgba(255, 255, 255, 0.045);
}

.cta-orb-right {
  width: 280px;
  height: 280px;
  right: -58px;
  top: -68px;
  background: rgba(44, 156, 234, 0.16);
}

.bottom-cta-content,
.bottom-cta-actions {
  position: relative;
  z-index: 1;
}

.bottom-cta-content h2 {
  max-width: 640px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bottom-cta-content p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.bottom-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.bottom-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.28s ease;
}

.bottom-cta-btn-solid {
  background: #fff;
  color: #142038;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.bottom-cta-btn-solid:hover {
  transform: translateY(-2px);
  background: #f4f7fb;
}

.bottom-cta-btn-outline {
  color: #dbe8f8;
  border: 1px solid rgba(219, 232, 248, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.bottom-cta-btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 232, 248, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

/* FOOTER */
.footer-modern {
  margin-top: 48px;
  background: #010915;
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0 10px;
  position: relative;
}

.footer-modern::before,
.footer-modern::after {
  display: none;
}

.footer-modern .container {
  max-width: 1180px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 54px;
  align-items: start;
  padding: 0 0 26px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-brand-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand-text h3,
.footer-modern h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer-brand-text p,
.footer-modern p,
.footer-modern a,
.footer-modern span {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 6px 40px;
}

.footer-modern a {
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-modern a:hover {
  color: #6db8ff;
}

.footer-contact p strong {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-legal {
  font-size: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1050px) {
  .bottom-cta-card {
    grid-template-columns: 1fr;
    padding: 48px 34px;
    gap: 28px;
  }

  .bottom-cta-actions {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .bottom-cta-section {
    padding-top: 64px;
  }

  .bottom-cta-card {
    border-radius: 22px;
    padding: 40px 24px;
  }

  .bottom-cta-content h2 {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .bottom-cta-content p {
    font-size: 14px;
  }

  .bottom-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bottom-cta-btn {
    width: 100%;
  }

  .footer-modern {
    margin-top: 36px;
    padding-top: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    width: 92%;
  }

  .topbar {
    display: none;
  }

  .navbar {
    height: auto;
    padding: 12px 0;
  }

  .navbar .container {
    flex-direction: column;
  }

  .nav {
    margin-top: 10px;
  }

  .nav a {
    display: inline-block;
    margin: 5px 8px;
    font-size: 10px;
  }

  .hero-slider {
    height: 520px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content .subtitle {
    font-size: 24px;
  }

  .hero-dots {
    bottom: 145px;
  }

  .action-grid {
    flex-direction: column;
    box-shadow: none;
  }

  .action-card {
    width: 100%;
    max-width: 360px;
    min-height: 82px;
    margin: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .action-card:hover {
    min-height: 125px;
  }

  .tabs {
    flex-direction: column;
    height: auto;
  }

  .service-layout {
    height: auto;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .service-list {
    width: 100%;
  }

  .device-area img {
    width: 260px;
    height: 210px;
  }

  .how {
    padding-bottom: 220px;
  }

  .cta {
    background-size: 100% 210px;
    padding-top: 245px;
  }

  .testimonials {
    background-size: cover;
  }

  .footer {
    margin-top: 220px;
  }
}

/* FLOATING CHAT BUTTONS */
.floating-contact {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: rgba(5, 13, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.float-top {
  background: linear-gradient(135deg, var(--navy), var(--purple));
}

.float-whatsapp {
  background: linear-gradient(135deg, #20c764, #128c4a);
}

.float-chat {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
}

.float-btn i {
  font-size: 18px;
}

@media (max-width: 700px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}


/* MODAL FORMS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 9, 22, 0.42);
  backdrop-filter: blur(3px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.site-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(560px, calc(100% - 40px));
  max-height: min(82vh, 760px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  z-index: 1501;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -46%) scale(0.97);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.26);
  transition: all 0.25s ease;
}

.site-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(7, 26, 61, 0.06);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.22s ease;
  z-index: 2;
}

.modal-close:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 26px 18px;
  background: linear-gradient(135deg, rgba(31, 139, 214, 0.08), rgba(53, 50, 168, 0.05));
  border-bottom: 1px solid rgba(7, 26, 61, 0.08);
}

.modal-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(31, 139, 214, 0.20);
}

.modal-header h2 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.modal-header p {
  color: #52617a;
  font-size: 13px;
  line-height: 1.55;
  max-width: 430px;
}

.modal-form {
  padding: 22px 26px 26px;
}

.form-grid.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.modal-form label,
.full-field {
  display: block;
}

.modal-form label span,
.full-field span {
  display: block;
  color: #7f899b;
  font-size: 11px;
  font-style: italic;
  margin: 0 0 6px 10px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(7, 26, 61, 0.13);
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  padding: 0 13px;
  outline: none;
  transition: all 0.2s ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(31, 139, 214, 0.08);
}

.modal-form input[type="file"] {
  padding: 9px 12px;
  color: #6a7385;
}

.modal-form textarea {
  min-height: 96px;
  resize: vertical;
  padding-top: 12px;
  line-height: 1.55;
}

.form-divider {
  height: 1px;
  border-top: 1px dotted rgba(7, 26, 61, 0.18);
  margin: 16px 0 14px;
}

.full-field {
  margin-top: 14px;
}

.modal-submit {
  margin-top: 18px;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  box-shadow: 0 14px 26px rgba(31, 139, 214, 0.18);
  transition: all 0.25s ease;
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(53, 50, 168, 0.24);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .site-modal {
    width: calc(100% - 20px);
    max-height: 86vh;
    border-radius: 16px;
  }

  .modal-header {
    padding: 22px 18px 16px;
  }

  .modal-form {
    padding: 18px 18px 22px;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  .modal-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
  }

  .modal-submit {
    width: 100%;
  }
}


/* CONTACT PAGE REFERENCE STYLE */
.contact-reference-hero {
  background: #f4f7fb;
  padding: 0 0 92px;
}

.contact-reference-hero-inner {
  position: relative;
  min-height: 520px;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.contact-reference-copy {
  position: absolute;
  inset: 0 auto 0 0;
  width: 43%;
  z-index: 3;
  padding: 92px 56px 92px 7.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.contact-reference-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% + 220px);
  background: linear-gradient(135deg, var(--navy) 0%, #06153f 60%, #1f237c 100%);
  border-top-right-radius: 52% 100%;
  border-bottom-right-radius: 52% 100%;
  z-index: 0;
}

.contact-reference-copy > * {
  position: relative;
  z-index: 2;
}

.contact-reference-kicker {
  display: inline-block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #ffffff;
}

.contact-reference-copy h1 {
  font-size: 64px;
  line-height: 1.03;
  margin-bottom: 26px;
  color: #fff;
  max-width: 490px;
}

.contact-reference-copy p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
}

.contact-reference-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-reference-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 61, 0.18), transparent 38%);
  z-index: 1;
  pointer-events: none;
}

.contact-reference-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

/* cleaner accent circles */
.contact-accent-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.contact-accent-green {
  width: 52px;
  height: 52px;
  top: 72px;
  right: 94px;
  border: 2px solid rgba(53, 196, 143, 0.46);
  background: rgba(53, 196, 143, 0.07);
}

.contact-accent-orange {
  width: 126px;
  height: 126px;
  right: 16px;
  bottom: 54px;
  border: 2px solid rgba(255, 122, 33, 0.30);
  background: rgba(255, 122, 33, 0.07);
}

.contact-accent-purple {
  width: 90px;
  height: 90px;
  right: 152px;
  bottom: -8px;
  border: 2px solid rgba(142, 107, 255, 0.22);
  background: rgba(142, 107, 255, 0.08);
}

.contact-reference-cards {
  position: relative;
  z-index: 4;
  margin-top: -42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-ref-card {
  background: #ffffff;
  border: 1px solid rgba(7, 26, 61, 0.10);
  padding: 34px 24px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(7, 26, 61, 0.06);
}

.contact-ref-icon {
  background: transparent;
  border: none;
  color: #000000;
  box-shadow: none;
  width: auto;
  height: auto;
  margin: -14px auto 16px;
  font-size: 30px;
  line-height: 1;
}

.contact-ref-card h3 {
  font-size: 28px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}

.contact-ref-card p {
  color: #5c6880;
  line-height: 1.75;
  font-size: 15px;
  min-height: 78px;
  margin-bottom: 18px;
}

.contact-ref-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid rgba(7, 26, 61, 0.18);
  box-shadow: none;
}

.contact-ref-card a:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.contact-reference-form-section {
  padding: 36px 0 88px;
  background: #f4f7fb;
}

.contact-reference-form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.contact-reference-info {
  background: #ffffff;
  padding: 42px 34px;
  border: 1px solid rgba(31, 139, 214, 0.10);
}

.contact-reference-info h2 {
  color: var(--navy);
  font-size: 38px;
  line-height: 1.12;
  margin-bottom: 16px;
}

.contact-reference-info p {
  color: #5d687f;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-reference-points {
  display: grid;
  gap: 14px;
}

.contact-reference-point {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #243247;
  font-weight: 600;
}

.contact-reference-point i {
  color: var(--primary-blue);
  font-size: 18px;
}

.contact-reference-form-card {
  background: #ffffff;
  border: 1px solid rgba(31, 139, 214, 0.10);
  padding: 34px;
  box-shadow: 0 8px 20px rgba(7, 26, 61, 0.04);
}

.contact-page-form {
  display: grid;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-page-form label span,
.contact-full-field span {
  display: block;
  color: #6f7b8f;
  font-size: 12px;
  margin: 0 0 7px;
  font-style: italic;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(7, 26, 61, 0.14);
  background: #fff;
  color: var(--navy);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-form textarea {
  min-height: 140px;
  resize: vertical;
  padding-top: 14px;
  line-height: 1.65;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(31, 139, 214, 0.08);
}

.contact-submit {
  width: fit-content;
  min-height: 50px;
  padding: 0 22px;
  border: none;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .contact-reference-copy {
    width: 48%;
    padding: 74px 44px 74px 6.5%;
  }

  .contact-reference-copy::before {
    width: calc(100% + 180px);
  }

  .contact-reference-copy h1 {
    font-size: 54px;
  }
}

@media (max-width: 1024px) {
  .contact-reference-hero-inner {
    position: relative;
    min-height: auto;
    display: block;
  }

  .contact-reference-copy {
    position: relative;
    width: 100%;
    padding: 60px 36px;
  }

  .contact-reference-copy::before {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .contact-reference-image {
    position: relative;
  }

  .contact-reference-image img {
    min-height: 300px;
  }

  .contact-accent-green {
    right: 140px;
    top: 48px;
  }

  .contact-accent-orange {
    right: 30px;
    bottom: 30px;
  }

  .contact-accent-purple {
    right: 122px;
    bottom: -6px;
  }

  .contact-reference-cards {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .contact-ref-icon {
    margin: 0 auto 14px;
  }

  .contact-reference-form-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-reference-hero {
    padding: 0 0 60px;
  }

  .contact-reference-copy {
    padding: 42px 24px;
  }

  .contact-reference-kicker {
    font-size: 18px;
  }

  .contact-reference-copy h1 {
    font-size: 38px;
  }

  .contact-reference-copy p {
    font-size: 16px;
  }

  .contact-reference-image img {
    min-height: 240px;
  }

  .contact-accent-green {
    width: 38px;
    height: 38px;
    right: 98px;
    top: 34px;
  }

  .contact-accent-orange {
    width: 86px;
    height: 86px;
    right: 12px;
    bottom: 18px;
  }

  .contact-accent-purple {
    width: 54px;
    height: 54px;
    right: 82px;
    bottom: -4px;
  }

  .contact-reference-info,
  .contact-reference-form-card {
    padding: 26px 18px;
  }

  .contact-reference-info h2 {
    font-size: 29px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}



/* SHOP PAGE */
.shop-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background:
    linear-gradient(rgba(4, 10, 26, 0.84), rgba(4, 10, 26, 0.84)),
    url("images/support-team.jpg") center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.shop-hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: rgba(31,139,214,0.14);
}

.shop-hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  left: -90px;
  bottom: -120px;
  background: rgba(53,50,168,0.20);
}

.shop-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 44px;
  align-items: center;
}

.shop-hero-content {
  max-width: 760px;
}

.shop-eyebrow,
.shop-section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.shop-hero h1 {
  color: #fff;
  font-size: 58px;
  line-height: 1.06;
  max-width: 820px;
  margin-bottom: 22px;
}

.shop-hero p {
  max-width: 690px;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.8;
}

.shop-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.shop-hero-btn {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-hero-btn-light {
  background: #fff;
  color: var(--navy);
}

.shop-cart-summary {
  background: #fff;
  color: var(--navy);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
}

.shop-cart-summary i {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.shop-cart-summary span {
  color: #6b7488;
  font-size: 13px;
}

.shop-cart-summary strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  margin-top: 3px;
}

.shop-cart-summary button {
  grid-column: 1 / -1;
  border: 1px solid rgba(7,26,61,0.16);
  background: #fff;
  color: var(--navy);
  min-height: 46px;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}

.shop-category-strip {
  position: relative;
  z-index: 5;
  margin-top: -44px;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  box-shadow: 0 18px 40px rgba(7,26,61,0.12);
}

.shop-category-grid a {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--navy);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  border-right: 1px solid rgba(7,26,61,0.08);
  transition: all 0.25s ease;
}

.shop-category-grid a:last-child {
  border-right: none;
}

.shop-category-grid a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
}

.shop-category-grid i {
  font-size: 26px;
}

.shop-section {
  padding: 84px 0;
  background: #f6f9ff;
}

.shop-marketplace-section {
  background: #fff;
}

.shop-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.shop-section-heading span {
  color: #fff;
  margin-bottom: 16px;
}

.shop-section-heading h2 {
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.shop-section-heading p {
  color: #566278;
  font-size: 16px;
  line-height: 1.75;
}

.shop-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.shop-filter {
  min-height: 42px;
  padding: 0 18px;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(7,26,61,0.12);
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
}

.shop-filter.active,
.shop-filter:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.shop-product-card {
  background: #fff;
  border: 1px solid rgba(31,139,214,0.10);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  box-shadow: 0 12px 30px rgba(7,26,61,0.06);
  transition: all 0.25s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(7,26,61,0.10);
}

.shop-product-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.shop-product-tag {
  color: var(--primary-blue);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.shop-product-card h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
  margin: 8px 0;
}

.shop-product-model {
  color: var(--purple);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.shop-product-card p {
  color: #5b667a;
  line-height: 1.65;
}

.shop-product-bottom {
  margin-top: auto;
  padding-top: 20px;
}

.shop-product-bottom strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 14px;
}

.shop-add-to-cart,
.shop-marketplace-note button,
.shop-checkout-btn {
  width: 100%;
  min-height: 46px;
  border: none;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shop-marketplace-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--navy), #06112d 70%, var(--purple));
  color: #fff;
  margin-bottom: 32px;
}

.shop-marketplace-note h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
}

.shop-marketplace-note p {
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

.shop-marketplace-note button {
  width: auto;
  padding: 0 22px;
  background: #fff;
  color: var(--navy);
  white-space: nowrap;
}

.shop-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3,9,22,0.54);
  opacity: 0;
  visibility: hidden;
  z-index: 1700;
  transition: all 0.24s ease;
}

.shop-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.shop-cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 100%);
  height: 100vh;
  background: #fff;
  z-index: 1701;
  box-shadow: -20px 0 50px rgba(0,0,0,0.24);
  display: flex;
  flex-direction: column;
  transition: right 0.28s ease;
}

.shop-cart-drawer.active {
  right: 0;
}

.shop-cart-header {
  padding: 26px;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.shop-cart-header span {
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.shop-cart-header h2 {
  color: #fff;
  font-size: 28px;
  margin-top: 4px;
}

#shop-close-cart {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.shop-cart-items {
  padding: 22px;
  overflow-y: auto;
  flex: 1;
}

.shop-empty-cart {
  color: #667086;
  line-height: 1.6;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(7,26,61,0.10);
}

.shop-cart-item h4 {
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 5px;
}

.shop-cart-item p {
  color: #657086;
  font-size: 12px;
}

.shop-cart-item button {
  border: none;
  background: transparent;
  color: #b33434;
  cursor: pointer;
  font-size: 16px;
}

.shop-cart-footer {
  border-top: 1px solid rgba(7,26,61,0.10);
  padding: 22px;
}

.shop-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.shop-cart-total span {
  color: #687388;
}

.shop-cart-total strong {
  color: var(--navy);
  font-size: 22px;
}

.shop-cart-note {
  color: #7a8497;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 12px;
}

.nav a.active {
  color: var(--primary-blue);
}

@media (max-width: 1100px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-hero .container {
    grid-template-columns: 1fr;
  }

  .shop-cart-summary {
    max-width: 360px;
  }
}

@media (max-width: 780px) {
  .shop-hero {
    min-height: auto;
    padding: 76px 0 100px;
  }

  .shop-hero h1 {
    font-size: 38px;
  }

  .shop-hero p {
    font-size: 16px;
  }

  .shop-category-grid {
    grid-template-columns: 1fr;
  }

  .shop-category-grid a {
    min-height: 74px;
    border-right: none;
    border-bottom: 1px solid rgba(7,26,61,0.08);
  }

  .shop-products-grid {
    grid-template-columns: 1fr;
  }

  .shop-marketplace-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-marketplace-note button {
    width: 100%;
  }
}



/* SHOP PAGE REFINEMENTS */
.shop-eyebrow,
.shop-cart-summary {
  display: none !important;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7,26,61,0.12);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-cart-btn span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-hero {
  min-height: 500px;
  padding: 80px 0 118px;
}

.shop-hero .container {
  display: block;
}

.shop-hero-content {
  max-width: 760px;
}

.shop-hero h1 {
  margin-top: 0;
}

.shop-category-strip {
  display: none;
}

.shop-page-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.shop-page-heading h2 {
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.shop-page-heading p {
  color: #566278;
  font-size: 16px;
  line-height: 1.75;
}

.shop-catalog-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.shop-sidebar {
  background: #fff;
  border: 1px solid rgba(7,26,61,0.10);
  padding: 24px 22px;
  position: sticky;
  top: 92px;
}

.shop-sidebar h3 {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.shop-category-filter {
  width: 100%;
  min-height: 36px;
  border: none;
  background: transparent;
  color: #1f2c44;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  padding: 6px 0;
}

.shop-category-filter i {
  color: var(--primary-blue);
  font-size: 12px;
}

.shop-category-filter.active,
.shop-category-filter:hover {
  color: var(--primary-blue);
  font-weight: 800;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(7,26,61,0.12);
}

.shop-toolbar p {
  color: var(--navy);
  font-size: 15px;
}

.shop-sort {
  width: 260px;
  min-height: 44px;
  border: none;
  background: #eeeeef;
  color: #6a6f7b;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.shop-reference-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.shop-product-card {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  min-height: auto !important;
  text-align: center;
}

.shop-product-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.shop-product-image {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  background: #eef2f7;
  overflow: hidden;
  margin-bottom: 18px;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-product-icon,
.shop-product-tag,
.shop-product-model,
.shop-product-card p:not(.shop-product-model) {
  display: none !important;
}

.shop-product-card h3 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.shop-product-bottom {
  padding-top: 0 !important;
}

.shop-product-bottom strong {
  font-family: "Chivo", Arial, sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 18px;
}

.shop-add-to-cart {
  width: auto;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
}

.shop-marketplace-note {
  margin-bottom: 34px;
}

@media (max-width: 1100px) {
  .shop-reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-catalog-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 780px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-sort {
    width: 100%;
  }

  .shop-reference-grid {
    grid-template-columns: 1fr;
  }
}



/* SHOP SECTION TOGGLE */
.shop-view-toggle-section {
  background: #f6f9ff;
  padding: 34px 0 0;
}

.shop-view-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
  border: 1px solid rgba(7, 26, 61, 0.10);
  box-shadow: 0 12px 30px rgba(7, 26, 61, 0.06);
}

.shop-view-btn {
  min-height: 78px;
  border: none;
  background: #fff;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(7, 26, 61, 0.08);
  transition: all 0.24s ease;
}

.shop-view-btn:last-child {
  border-right: none;
}

.shop-view-btn i {
  font-size: 24px;
  color: var(--primary-blue);
}

.shop-view-btn.active,
.shop-view-btn:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
}

.shop-view-btn.active i,
.shop-view-btn:hover i {
  color: #fff;
}

.shop-section.is-hidden {
  display: none;
}

@media (max-width: 700px) {
  .shop-view-toggle {
    grid-template-columns: 1fr;
  }

  .shop-view-btn {
    border-right: none;
    border-bottom: 1px solid rgba(7, 26, 61, 0.08);
  }

  .shop-view-btn:last-child {
    border-bottom: none;
  }
}


/* HOMEPAGE DEVICE TAB CUSTOM IMAGES */
.tablet-device img {
  height: 92%;
  max-width: 98%;
}

.computer-device img {
  height: 92%;
  max-width: 98%;
}

.other-no-image {
  background:
    radial-gradient(circle at 70% 30%, rgba(31, 139, 214, 0.16), transparent 34%),
    linear-gradient(135deg, #050505 0%, #071a3d 62%, #111145 100%);
}

.other-no-image img {
  display: none;
}

.other-device-panel {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: min(560px, 76%);
  padding: 46px 42px;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.other-device-eyebrow {
  display: inline-block;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.other-device-panel h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.other-device-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.other-device-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.other-device-icons span {
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.other-device-icons i {
  color: var(--primary-blue);
  font-size: 18px;
}

.other-service-list li {
  margin-bottom: 17px;
}

@media (max-width: 900px) {
  .tablet-device img,
  .computer-device img {
    height: 82%;
    max-width: 96%;
  }

  .other-device-panel {
    width: calc(100% - 48px);
    padding: 30px 22px;
  }

  .other-device-panel h3 {
    font-size: 25px;
  }

  .other-device-icons {
    grid-template-columns: 1fr;
  }
}

/* Other device image update */
.other-device img {
  height: 84%;
  max-width: 92%;
}

@media (max-width: 900px) {
  .other-device img {
    height: 72%;
    max-width: 96%;
  }
}


/* Blend device images more softly into the dark background */
.phone-mockup img {
  opacity: 0.82;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 54%, rgba(0,0,0,0.92) 72%, rgba(0,0,0,0.55) 88%, transparent 100%);
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 54%, rgba(0,0,0,0.92) 72%, rgba(0,0,0,0.55) 88%, transparent 100%);
}

.tablet-device img,
.computer-device img,
.other-device img {
  opacity: 0.78;
}


/* Make supplied device images fill and blend with the section background better */
.tablet-device img,
.computer-device img,
.other-device img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
  transform: translate(-50%, -50%) scale(1.02);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.30));
}

.tablet-device::after,
.computer-device::after,
.other-device::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 52%, rgba(0, 0, 0, 0.12) 78%, rgba(0, 0, 0, 0.22) 100%);
  z-index: 3;
  pointer-events: none;
}



/* SELL DEVICE HOW IT WORKS PAGE */
.sell-how-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(4, 10, 26, 0.82), rgba(4, 10, 26, 0.86)),
    url("images/shopping.jpg") center / cover no-repeat;
  overflow: hidden;
}

.sell-how-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -150px;
  top: -140px;
  background: rgba(31, 139, 214, 0.16);
}

.sell-how-hero::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  left: -120px;
  bottom: -130px;
  background: rgba(53, 50, 168, 0.20);
}

.sell-how-hero .container {
  position: relative;
  z-index: 1;
}

.sell-how-hero-content {
  max-width: 760px;
}

.sell-how-hero-content span {
  display: inline-block;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 20px;
}

.sell-how-hero h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.sell-how-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.sell-how-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

.sell-how-link {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.sell-how-steps-section {
  padding: 84px 0;
  background: #f6f9ff;
}

.sell-how-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.sell-how-heading h2 {
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.sell-how-heading h2 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sell-how-heading p {
  color: #566278;
  font-size: 16px;
  line-height: 1.75;
}

.sell-how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sell-how-steps-grid article {
  position: relative;
  background: #fff;
  border: 1px solid rgba(31, 139, 214, 0.10);
  padding: 34px 26px 30px;
  box-shadow: 0 14px 34px rgba(7, 26, 61, 0.07);
}

.sell-step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(7, 26, 61, 0.10);
  font-family: "Chivo", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.sell-how-steps-grid article > i {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 22px;
}

.sell-how-steps-grid h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.24;
  margin-bottom: 12px;
}

.sell-how-steps-grid p {
  color: #5b667d;
  line-height: 1.7;
}

.sell-how-info {
  padding: 0 0 88px;
  background: #f6f9ff;
}

.sell-how-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sell-how-info-card {
  background: #fff;
  padding: 38px 34px;
  border: 1px solid rgba(31, 139, 214, 0.10);
  box-shadow: 0 14px 34px rgba(7, 26, 61, 0.06);
}

.sell-how-info-card h2 {
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 20px;
}

.sell-how-info-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
}

.sell-how-info-card li {
  color: #2b354a;
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sell-how-info-card li i {
  color: var(--primary-blue);
  margin-top: 3px;
}

.sell-how-dark-card {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #06112d 68%, var(--purple));
}

.sell-how-dark-card h2 {
  color: #fff;
}

.sell-how-dark-card p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 520px;
}

@media (max-width: 1100px) {
  .sell-how-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sell-how-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .sell-how-hero {
    min-height: auto;
    padding: 78px 0;
  }

  .sell-how-hero h1 {
    font-size: 36px;
  }

  .sell-how-hero p {
    font-size: 16px;
  }

  .sell-how-steps-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= SELL DEVICE HOW IT WORKS PAGE (REFERENCE STYLE) ================= */
.sellworks-intro {
  padding: 70px 0 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.sellworks-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #7c879b;
  margin-bottom: 34px;
}

.sellworks-breadcrumbs a {
  color: var(--primary-blue);
  text-decoration: none;
}

.sellworks-header {
  max-width: 820px;
  text-align: center;
  margin: 0 auto 42px;
}

.sellworks-header h1 {
  color: var(--navy);
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.sellworks-header h1 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sellworks-header p {
  color: #566278;
  font-size: 17px;
  line-height: 1.8;
}

.sellworks-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.sellworks-step-card {
  background: #fff;
  border: 1px solid rgba(31, 139, 214, 0.10);
  box-shadow: 0 16px 36px rgba(7, 26, 61, 0.06);
  padding: 30px 24px;
  text-align: center;
}

.sellworks-step-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31,139,214,0.10), rgba(53,50,168,0.12));
  border: 1px solid rgba(31, 139, 214, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 30px;
}

.sellworks-step-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 10px;
}

.sellworks-step-card p {
  color: #67738a;
  line-height: 1.7;
  font-size: 14px;
}

.sellworks-feature {
  padding: 48px 0 90px;
  background: #f7f9ff;
}

.sellworks-feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 520px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(7, 26, 61, 0.10);
}

.sellworks-feature-copy {
  position: relative;
  padding: 60px 58px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7,26,61,0.94), rgba(7,26,61,0.84)),
    radial-gradient(circle at top right, rgba(31,139,214,0.30), transparent 36%);
}

.sellworks-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
}

.sellworks-feature-copy h2,
.sellworks-market-content h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.sellworks-feature-copy h2 span,
.sellworks-market-content h2 span {
  color: #7dc4ff;
}

.sellworks-feature-copy p,
.sellworks-market-content p {
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 560px;
}

.sellworks-feature-copy ul,
.sellworks-market-content ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.sellworks-feature-copy li,
.sellworks-market-content li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}

.sellworks-feature-copy li i,
.sellworks-market-content li i {
  color: #7dc4ff;
  margin-top: 3px;
}

.sellworks-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.sellworks-actions.centered {
  justify-content: center;
}

.sellworks-feature-visual {
  position: relative;
  background:
    radial-gradient(circle at 25% 30%, rgba(31,139,214,0.22), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(53,50,168,0.22), transparent 32%),
    linear-gradient(135deg, #09142f 0%, #0a1e4c 45%, #15185e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
  overflow: hidden;
}

.sellworks-phone-card {
  width: 310px;
  height: 560px;
  border-radius: 42px;
  background: #0c1121;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  padding: 14px;
  position: relative;
  z-index: 2;
}

.sellworks-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background: #0a0f1e;
}

.sellworks-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
    linear-gradient(135deg, #0b1c52 0%, #102a6d 38%, #3a2ab0 100%);
  padding: 70px 24px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.sellworks-listing-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.sellworks-phone-screen h4 {
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sellworks-phone-screen p {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 24px;
}

.sellworks-phone-stats {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.sellworks-phone-stats span {
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.10);
  border-radius: 16px;
}

.sellworks-phone-stats span i {
  color: #9ae0ff;
}

.sellworks-visual-badge {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(7, 26, 61, 0.18);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
}

.sellworks-visual-badge i {
  color: var(--primary-blue);
}

.badge-one {
  top: 62px;
  left: 40px;
}
.badge-two {
  right: 28px;
  top: 170px;
}
.badge-three {
  left: 36px;
  bottom: 84px;
}

.sellworks-recycle {
  padding: 86px 0;
  background: #fff;
}

.sellworks-section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.sellworks-section-heading.centered {
  text-align: center;
  margin: 0 auto 34px;
}

.sellworks-section-heading h2 {
  font-size: 42px;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 14px;
}

.sellworks-section-heading h2 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sellworks-section-heading p {
  color: #5e6980;
  line-height: 1.8;
}

.sellworks-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 70px;
  max-width: 820px;
  margin: 0 auto;
}

.sellworks-check-grid ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.sellworks-check-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #39445a;
  line-height: 1.6;
  font-size: 15px;
}

.sellworks-check-grid i {
  color: var(--primary-blue);
  margin-top: 4px;
}

.sellworks-faq {
  padding-top: 88px;
  padding-bottom: 88px;
  background: #f7f9ff;
}

.sellworks-market-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #fff;
}

.sellworks-market-image {
  min-height: 500px;
  background:
    linear-gradient(120deg, rgba(7,26,61,0.12), rgba(7,26,61,0.10)),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    url('images/used-phone-marketplace.jpg') center / cover no-repeat;
  position: relative;
}

.sellworks-market-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 24%;
  height: 100%;
  background: #fff;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.sellworks-market-content {
  padding: 64px 60px;
  background:
    radial-gradient(circle at 90% 12%, rgba(31,139,214,0.08), transparent 26%),
    radial-gradient(circle at 10% 88%, rgba(53,50,168,0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sellworks-market-content .sellworks-kicker {
  width: fit-content;
}

.sellworks-market-content h2 {
  color: var(--navy);
}

.sellworks-market-content h2 span {
  color: var(--primary-blue);
}

.sellworks-market-content p {
  color: #5e6980;
}

.sellworks-market-content li {
  color: #2f3a4f;
}

.sellworks-market-content li i {
  color: var(--primary-blue);
}

.sellworks-question-cta {
  padding: 84px 0;
  text-align: center;
  background: #fff;
}

.sellworks-question-cta h2 {
  color: var(--navy);
  font-size: 42px;
  margin-bottom: 14px;
}

.sellworks-question-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #647189;
  line-height: 1.8;
  font-size: 16px;
}

@media (max-width: 1150px) {
  .sellworks-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sellworks-feature-grid,
  .sellworks-market-section {
    grid-template-columns: 1fr;
  }

  .sellworks-market-image {
    min-height: 360px;
  }

  .sellworks-feature-copy,
  .sellworks-market-content {
    padding: 44px 34px;
  }
}

@media (max-width: 850px) {
  .sellworks-check-grid {
    grid-template-columns: 1fr;
  }

  .sellworks-header h1,
  .sellworks-feature-copy h2,
  .sellworks-market-content h2,
  .sellworks-section-heading h2,
  .sellworks-question-cta h2 {
    font-size: 34px;
  }
}

@media (max-width: 700px) {
  .sellworks-intro {
    padding-top: 50px;
  }

  .sellworks-steps {
    grid-template-columns: 1fr;
  }

  .sellworks-feature-visual {
    padding: 28px 16px;
  }

  .sellworks-phone-card {
    width: 100%;
    max-width: 300px;
    height: 520px;
  }

  .sellworks-visual-badge {
    position: static;
    margin-bottom: 12px;
  }

  .sellworks-feature-visual {
    flex-direction: column;
    gap: 12px;
  }

  .sellworks-market-image {
    min-height: 280px;
  }

  .sellworks-market-content,
  .sellworks-feature-copy {
    padding: 34px 22px;
  }

  .sellworks-header h1 {
    font-size: 30px;
  }
}



/* SELL HOW PAGE BUTTON CLEANUP / PHONE PLACEHOLDER */
.sellworks-phone-upload-note {
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 4;
  color: rgba(255,255,255,0.78);
  border: 1px dashed rgba(255,255,255,0.22);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.sellworks-feature-copy .sellworks-actions:empty,
.nav-btn:empty {
  display: none;
}


/* ===== Sell device page - real phone visual ===== */
.sellworks-phone-upload-note {
  display: none;
}

.sellworks-phone-placeholder {
  padding: 36px 34px;
}

.sellworks-phone-image-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sellworks-phone-image-wrap img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,0.45));
}

.sellworks-feature-visual .badge-one {
  top: 34px;
  left: 26px;
}

.sellworks-feature-visual .badge-two {
  top: 148px;
  right: 18px;
}

.sellworks-feature-visual .badge-three {
  bottom: 70px;
  left: 24px;
}

@media (max-width: 991px) {
  .sellworks-phone-image-wrap img {
    max-width: 280px;
  }

  .sellworks-feature-visual .badge-one,
  .sellworks-feature-visual .badge-two,
  .sellworks-feature-visual .badge-three {
    position: static;
    margin: 10px 6px 0;
  }

  .sellworks-feature-visual {
    flex-direction: column;
    gap: 10px;
  }
}


/* ===== Sell device feature: bigger image + plain kicker ===== */
.sellworks-kicker {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #7dc4ff;
  box-shadow: none;
}

.sellworks-feature-visual,
.sellworks-phone-placeholder {
  padding: 0;
}

.sellworks-phone-placeholder {
  min-height: 100%;
}

.sellworks-phone-image-wrap {
  width: 100%;
  height: 100%;
  max-width: none;
}

.sellworks-phone-image-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  filter: none;
}

.sellworks-feature-visual .badge-one {
  top: 22px;
  left: 22px;
}

.sellworks-feature-visual .badge-two {
  top: 112px;
  right: 18px;
}

.sellworks-feature-visual .badge-three {
  bottom: 34px;
  left: 22px;
}

@media (max-width: 991px) {
  .sellworks-feature-visual,
  .sellworks-phone-placeholder {
    padding: 24px 20px;
  }

  .sellworks-phone-image-wrap {
    height: auto;
  }

  .sellworks-phone-image-wrap img {
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transform: none;
  }
}



/* SELL PAGE FOOTER + MODAL SAFETY FIX */
.nav-btn:empty {
  display: none;
}

.site-footer,
.footer {
  background: #050b16;
  color: #fff;
  padding: 42px 0 0;
}

.site-footer a,
.footer a {
  color: inherit;
  text-decoration: none;
}

.footer-grid,
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.footer-brand-wrap,
.footer-brand a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img,
.footer-logo,
.footer-brand-wrap img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-brand h3,
.footer h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p,
.footer p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4,
.site-footer h4 {
  color: #7dc4ff;
  font-size: 15px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 12px 22px;
}

.footer-links-grid a,
.footer-links a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

.footer-links-grid a:hover,
.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.nx-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.nx-modal.active,
.nx-modal[aria-hidden="false"] {
  display: block;
}

.nx-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 20, 0.72);
}

.nx-modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.nx-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: 2;
  border: none;
  background: transparent;
  font-size: 30px;
  color: var(--navy);
  cursor: pointer;
}

.nx-modal-body {
  padding: 36px;
}

.nx-modal-header h2 {
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 8px;
}

.nx-modal-header p {
  color: #667086;
  line-height: 1.6;
  margin-bottom: 24px;
}

.nx-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.nx-form-field label {
  display: block;
  color: #6f7b8f;
  font-size: 12px;
  font-style: italic;
  margin-bottom: 6px;
}

.nx-form-field input,
.nx-form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7,26,61,0.16);
  padding: 0 13px;
  outline: none;
}

.nx-form-field textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.nx-form-field-full,
.nx-form-submit {
  grid-column: 1 / -1;
}

.nx-form-submit {
  margin-top: 4px;
}

@media (max-width: 850px) {
  .footer-grid,
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: block;
  }

  .nx-form-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= SERVICES PAGE ================= */
.nav a.active { color: var(--primary-blue); }

.services-page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(rgba(4,10,26,.82), rgba(4,10,26,.86)), url("images/backlay.jpg") center / cover no-repeat;
  overflow: hidden;
}

.services-page-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  right: -160px;
  top: -170px;
  background: rgba(31,139,214,.14);
}

.services-page-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  left: -130px;
  bottom: -150px;
  background: rgba(53,50,168,.18);
}

.services-page-hero .container { position: relative; z-index: 2; }
.services-page-hero-content { max-width: 780px; }

.services-page-kicker {
  display: inline-block;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-page-hero h1 { color: #fff; font-size: 56px; line-height: 1.08; margin-bottom: 20px; }
.services-page-hero p { color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.8; max-width: 720px; }
.services-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

.services-page-btn {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.services-page-btn-light { background: #fff; color: var(--navy); }

.service-orbit-section { padding: 86px 0 68px; background: #fff; text-align: center; }
.service-page-title { text-align: center; margin-bottom: 44px; }
.service-page-title h2 { color: var(--navy); font-size: 44px; line-height: 1.1; margin-bottom: 10px; }
.service-page-title h2 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-page-title p { color: #566278; font-style: italic; font-size: 16px; }

.service-orbit-layout { position: relative; min-height: 480px; max-width: 1120px; margin: 0 auto; }
.service-orbit-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-orbit-dots { position: absolute; inset: -28px; border-radius: 50%; border: 3px dotted rgba(7,26,61,.28); }
.service-orbit-center::before, .service-orbit-center::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  background: #fff;
  z-index: 3;
}
.service-orbit-center::before { width: 16px; height: 16px; left: -34px; top: 18px; }
.service-orbit-center::after { width: 18px; height: 18px; right: -36px; bottom: 68px; border-color: var(--purple); }
.service-orbit-center img { width: 260px; height: 260px; object-fit: cover; border-radius: 50%; box-shadow: 0 20px 45px rgba(7,26,61,.16); }

.service-orbit-copy { position: absolute; width: 330px; }
.service-orbit-copy h3 { font-size: 28px; color: var(--navy); margin-bottom: 14px; }
.service-orbit-copy p { color: #566278; line-height: 1.75; font-size: 15px; }
.service-orbit-copy a {
  margin-top: 18px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--primary-blue);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.service-orbit-copy a:hover { color: #fff; background: linear-gradient(135deg, var(--primary-blue), var(--purple)); }
.orbit-copy-left { left: 0; text-align: right; }
.orbit-copy-right { right: 0; text-align: left; }
.orbit-copy-top { top: 46px; }
.orbit-copy-bottom { bottom: 38px; }

.service-overview { padding: 82px 0; background: #f6f9ff; }
.service-overview-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 40px; align-items: center; }
.service-overview-side {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #06112d 70%, var(--purple));
  padding: 44px 34px;
  min-height: 420px;
}
.service-overview-side h2 { color: #fff; font-size: 34px; line-height: 1.15; margin-bottom: 16px; }
.service-overview-side p { color: rgba(255,255,255,.82); line-height: 1.8; margin-bottom: 24px; }
.service-side-list { display: grid; gap: 14px; margin-bottom: 28px; }
.service-side-list span { color: #fff; display: flex; gap: 12px; align-items: center; font-weight: 700; }
.service-side-list i { color: #7dc4ff; }
.service-overview-image { min-height: 420px; overflow: hidden; background: #081226; }
.service-overview-image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; opacity: .9; }

.detailed-services { padding: 88px 0; background: #fff; }
.service-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-detail-card {
  background: #fff;
  border: 1px solid rgba(7,26,61,.10);
  padding: 34px 28px;
  box-shadow: 0 16px 38px rgba(7,26,61,.06);
  transition: all .24s ease;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(7,26,61,.10); }
.service-detail-icon {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, rgba(31,139,214,.10), rgba(53,50,168,.12));
  color: var(--primary-blue);
  border: 1px solid rgba(31,139,214,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}
.service-detail-card h3 { color: var(--navy); font-size: 25px; margin-bottom: 12px; }
.service-detail-card p { color: #5f6b82; line-height: 1.75; margin-bottom: 18px; }
.service-detail-card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.service-detail-card li { color: #2e394e; display: flex; gap: 10px; line-height: 1.55; }
.service-detail-card li::before { content: "✓"; color: var(--primary-blue); font-weight: 800; }
.service-detail-card button, .service-detail-card a {
  min-height: 42px;
  padding: 0 18px;
  border: none;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.service-also { padding: 84px 0; background: #f6f9ff; }
.service-also-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 70px; max-width: 850px; margin: 0 auto; }
.service-also-grid ul { list-style: none; display: grid; gap: 15px; }
.service-also-grid li { color: #354156; font-weight: 700; display: flex; gap: 12px; align-items: flex-start; }
.service-also-grid i { color: var(--primary-blue); margin-top: 2px; }

.service-category-section { padding: 82px 0; background: #fff; }
.service-category-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 26px; }
.service-mini-list, .service-quote-card { border: 1px solid rgba(7,26,61,.10); padding: 30px 26px; box-shadow: 0 12px 30px rgba(7,26,61,.05); }
.service-mini-list h3, .service-quote-card h3 { color: var(--navy); font-size: 24px; margin-bottom: 14px; }
.service-mini-list p { color: #657086; line-height: 1.6; margin-bottom: 18px; }
.service-mini-list a { display: block; padding: 12px 0; border-top: 1px solid rgba(7,26,61,.08); color: #2b354a; text-decoration: none; font-weight: 700; }
.service-mini-list a:hover { color: var(--primary-blue); }
.service-quote-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 22px; }
.service-quote-card li { display: flex; gap: 10px; color: #3d485d; font-weight: 700; }
.service-quote-card i { color: var(--primary-blue); }

.service-help-cta {
  padding: 70px 0;
  background: linear-gradient(rgba(4,10,26,.86), rgba(4,10,26,.86)), url("images/backlay.jpg") center / cover fixed no-repeat;
  text-align: center;
  color: #fff;
}
.service-help-cta h2 { color: #fff; font-size: 42px; margin-bottom: 12px; }
.service-help-cta p { color: rgba(255,255,255,.82); max-width: 720px; margin: 0 auto 24px; line-height: 1.8; }

@media (max-width: 1100px) {
  .service-detail-grid, .service-category-grid { grid-template-columns: repeat(2, 1fr); }
  .service-orbit-layout { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .service-orbit-center, .service-orbit-copy { position: relative; inset: auto; transform: none; width: auto; text-align: left; }
  .service-orbit-center { grid-column: 1 / -1; margin: 0 auto; order: -1; }
}

@media (max-width: 780px) {
  .services-page-hero { min-height: auto; padding: 76px 0; }
  .services-page-hero h1 { font-size: 38px; }
  .services-page-hero p { font-size: 16px; }
  .service-detail-grid, .service-category-grid, .service-overview-grid, .service-also-grid, .service-orbit-layout { grid-template-columns: 1fr; }
  .service-overview-side, .service-overview-image, .service-overview-image img { min-height: auto; }
  .service-overview-image img { height: auto; }
  .service-page-title h2, .service-help-cta h2 { font-size: 34px; }
  .service-orbit-center { width: 260px; height: 260px; }
  .service-orbit-center img { width: 205px; height: 205px; }
}


/* ================= SERVICES PAGE HOVER IMAGE + WHITE SUPPORT BOX ================= */
.service-orbit-center { overflow: hidden; background: #fff; }
.service-orbit-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 22px 55px rgba(7,26,61,.16);
  transition: opacity .28s ease, transform .35s ease;
}
.service-orbit-copy {
  padding: 18px 18px 14px;
  border-radius: 26px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.service-orbit-copy:hover,
.service-orbit-copy:focus,
.service-orbit-copy.is-active {
  background: linear-gradient(180deg, rgba(31,139,214,.08), rgba(53,50,168,.06));
  box-shadow: 0 16px 34px rgba(7,26,61,.08);
  transform: translateY(-4px);
  outline: none;
}
.service-orbit-copy:hover h3,
.service-orbit-copy:focus h3,
.service-orbit-copy.is-active h3 {
  color: var(--primary-blue);
}
.service-overview {
  padding: 86px 0;
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}
.service-overview-grid {
  grid-template-columns: minmax(320px, .96fr) minmax(360px, 1.04fr);
  gap: 34px;
  align-items: stretch;
}
.service-overview-card {
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(7,26,61,.08);
  border-radius: 28px;
  padding: 42px 36px;
  min-height: 100%;
  box-shadow: 0 20px 48px rgba(7,26,61,.08);
}
.service-overview-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(31,139,214,.08);
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.service-overview-card h2 {
  color: var(--navy);
  font-size: 36px;
  line-height: 1.14;
  margin-bottom: 16px;
}
.service-overview-card p {
  color: #5f6b82;
  line-height: 1.82;
  margin-bottom: 24px;
}
.service-overview-card .service-side-list span {
  color: #2f3a4f;
  align-items: flex-start;
  line-height: 1.5;
}
.service-overview-card .service-side-list i { color: var(--primary-blue); margin-top: 3px; }
.service-overview-photo {
  min-height: 420px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(7,26,61,.08);
}
.service-overview-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
@media (max-width: 1100px) {
  .service-overview-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .service-orbit-copy { text-align: left !important; }
  .service-overview-card { padding: 32px 24px; border-radius: 22px; }
  .service-overview-card h2 { font-size: 30px; }
  .service-overview-photo { min-height: auto; }
  .service-overview-photo img { min-height: auto; height: auto; }
}



/* ================= SERVICES PAGE REFINEMENTS ================= */

/* Keep Our Services section from feeling squeezed on medium screens */
@media (max-width: 1180px) {
  .service-orbit-layout {
    max-width: 820px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-height: auto;
  }

  .service-orbit-center,
  .service-orbit-copy {
    position: relative;
    inset: auto;
    transform: none;
    width: auto;
    text-align: center;
  }

  .service-orbit-center {
    grid-column: 1 / -1;
    margin: 0 auto 14px;
    order: -1;
  }

  .service-orbit-copy {
    min-height: 210px;
  }
}

@media (max-width: 760px) {
  .service-orbit-layout {
    grid-template-columns: 1fr;
  }

  .service-orbit-copy {
    min-height: auto;
  }
}

/* Remove visible box styling from Fast & Organized Support section */
.service-overview {
  background: #fff;
}

.service-overview-grid {
  align-items: center;
}

.service-overview-card,
.service-overview-side {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 18px !important;
  padding: 18px 10px !important;
  color: var(--navy);
}

.service-overview-card h2,
.service-overview-side h2 {
  color: var(--navy) !important;
}

.service-overview-card p,
.service-overview-side p {
  color: #5f6b82 !important;
}

.service-overview-card .service-side-list span,
.service-overview-side .service-side-list span {
  color: #2f3a4f !important;
}

.service-overview-photo,
.service-overview-image {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.service-overview-photo img,
.service-overview-image img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Service Details like the clean reference image */
.detailed-services {
  background: #fff;
  padding: 88px 0 76px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(7, 26, 61, 0.08);
  border-left: 1px solid rgba(7, 26, 61, 0.08);
}

.service-detail-card {
  min-height: 330px;
  padding: 52px 34px 44px;
  text-align: center;
  background: #fff !important;
  border: none !important;
  border-right: 1px solid rgba(7, 26, 61, 0.08) !important;
  border-bottom: 1px solid rgba(7, 26, 61, 0.08) !important;
  box-shadow: none !important;
  transform: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-detail-card:hover {
  transform: none !important;
  box-shadow: none !important;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%) !important;
}

.service-detail-icon {
  width: auto;
  height: auto;
  margin: 0 0 26px;
  background: transparent !important;
  border: none !important;
  color: var(--primary-blue);
  font-size: 58px;
}

.service-detail-card h3 {
  color: var(--navy);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.24;
  margin-bottom: 14px;
}

.service-detail-card p {
  color: #1f2938;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 16px;
  max-width: 330px;
}

.service-detail-card ul {
  display: none;
}

.service-detail-card button,
.service-detail-card a {
  min-height: auto;
  padding: 0;
  margin-top: auto;
  border-radius: 0;
  background: transparent !important;
  color: var(--primary-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  text-decoration: none;
}

.service-detail-card button:hover,
.service-detail-card a:hover {
  color: var(--purple);
}

.service-detail-card button::after,
.service-detail-card a::after {
  content: "";
}

@media (max-width: 1000px) {
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    min-height: auto;
  }
}


/* ================= SERVICE READ MORE DETAILS ================= */
.service-detail-card .service-detail-list {
  display: grid !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
}

.service-detail-card.is-expanded .service-detail-list {
  max-height: 380px;
  opacity: 1;
  margin: 6px 0 22px;
}

.service-detail-card .service-detail-list li {
  color: #334055;
  text-align: left;
  font-size: 15px;
  line-height: 1.55;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-detail-card .service-detail-list li::before {
  content: "✓";
  color: var(--primary-blue);
  font-weight: 800;
  flex: 0 0 auto;
}

.service-detail-card.is-expanded {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%) !important;
}

.service-read-more {
  cursor: pointer;
}

.service-detail-card.is-expanded .service-read-more {
  color: var(--purple);
}



/* ================= SERVICE BENEFITS STRIP + TILE HOVER ================= */
.service-benefits-strip {
  padding: 24px 0 72px;
  background: #fff;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-benefit-item,
.service-benefit-phone {
  background: #f8fbff;
  border: 1px solid rgba(7,26,61,0.08);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-benefit-item:hover,
.service-benefit-phone:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(7,26,61,0.10);
  border-color: rgba(31,139,214,0.22);
}

.service-benefit-item span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.service-benefit-item h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.service-benefit-item p {
  color: #5f6b82;
  font-size: 14px;
  line-height: 1.55;
}

.service-benefit-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.service-benefit-phone em {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.service-benefit-phone a {
  color: var(--navy);
  font-size: 24px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-benefit-phone a i {
  color: var(--primary-blue);
  margin-right: 8px;
}

/* Let only the expanded tile grow, not the full row */
.service-detail-grid {
  align-items: start !important;
}

.service-detail-card {
  align-self: start !important;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.service-detail-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 48px rgba(7,26,61,0.10) !important;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%) !important;
}

.service-detail-card:hover .service-detail-icon {
  transform: scale(1.08);
  color: var(--purple);
}

.service-detail-icon {
  transition: transform 0.25s ease, color 0.25s ease;
}

.service-detail-card:hover h3 {
  color: var(--primary-blue);
}

.service-detail-card.is-expanded:hover {
  transform: translateY(-4px) !important;
}

/* Keep each expanded list inside its own tile */
.service-detail-card.is-expanded {
  height: auto !important;
}

@media (max-width: 1000px) {
  .service-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .service-benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-benefit-phone a {
    font-size: 21px;
  }
}



/* ================= HERO SUPPORT TEXT ROW ================= */
.services-hero-support {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin-top: 28px;
  color: #fff;
}

.services-hero-support > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.services-hero-support i {
  color: #7dc4ff;
  font-size: 18px;
}

.services-hero-support span {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.services-hero-phone {
  flex-direction: column;
  align-items: flex-start !important;
  gap: 2px !important;
  margin-left: 4px;
}

.services-hero-phone em {
  color: rgba(255,255,255,0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.services-hero-phone a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

.services-hero-phone a i {
  margin-right: 8px;
}

.service-benefits-strip {
  display: none !important;
}

@media (max-width: 700px) {
  .services-hero-support {
    display: grid;
    gap: 14px;
  }

  .services-hero-phone {
    margin-left: 0;
  }
}



/* ================= SERVICES HERO RIGHT SUPPORT + CLEAN ORBIT LAYOUT ================= */
.services-page-hero .services-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: center;
}

.services-hero-support-panel {
  justify-self: end;
  width: 100%;
}

.services-hero-support-panel .services-hero-support {
  display: grid;
  gap: 18px;
  margin-top: 0;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(125, 196, 255, 0.75);
  backdrop-filter: blur(8px);
}

.services-hero-support-panel .services-hero-support > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-hero-support-panel .services-hero-support i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(125, 196, 255, 0.13);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7dc4ff;
  flex: 0 0 auto;
}

.services-hero-support-panel .services-hero-phone {
  align-items: flex-start !important;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 16px;
}

.services-hero-support-panel .services-hero-phone a i {
  width: auto;
  height: auto;
  background: transparent;
}

/* Our Services: give each item its own space and stop overlap/clutter */
.service-orbit-layout {
  display: grid !important;
  grid-template-columns: minmax(240px, 1fr) 360px minmax(240px, 1fr);
  grid-template-rows: auto auto;
  gap: 34px 54px;
  align-items: center;
  max-width: 1160px;
  min-height: auto;
}

.service-orbit-center {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0 auto;
  width: 330px;
  height: 330px;
}

.service-orbit-copy {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: auto !important;
  min-height: 210px;
  padding: 24px 22px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}

.service-orbit-copy:hover,
.service-orbit-copy:focus,
.service-orbit-copy.is-active {
  background: transparent;
  box-shadow: none;
  transform: translateY(-4px) !important;
}

.orbit-copy-left {
  text-align: right;
}

.orbit-copy-right {
  text-align: left;
}

.orbit-copy-left.orbit-copy-top {
  grid-column: 1;
  grid-row: 1;
}

.orbit-copy-left.orbit-copy-bottom {
  grid-column: 1;
  grid-row: 2;
}

.orbit-copy-right.orbit-copy-top {
  grid-column: 3;
  grid-row: 1;
}

.orbit-copy-right.orbit-copy-bottom {
  grid-column: 3;
  grid-row: 2;
}

.service-orbit-copy h3 {
  line-height: 1.2;
}

.service-orbit-copy a {
  margin-top: 18px;
  background: #fff;
}

@media (max-width: 1050px) {
  .services-page-hero .services-hero-layout {
    grid-template-columns: 1fr;
  }

  .services-hero-support-panel {
    justify-self: start;
    max-width: 520px;
  }

  .service-orbit-layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
  }

  .service-orbit-center {
    grid-column: 1 / -1;
    grid-row: auto;
    order: -1;
  }

  .orbit-copy-left.orbit-copy-top,
  .orbit-copy-left.orbit-copy-bottom,
  .orbit-copy-right.orbit-copy-top,
  .orbit-copy-right.orbit-copy-bottom {
    grid-column: auto;
    grid-row: auto;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .services-hero-support-panel .services-hero-support {
    padding: 22px 20px;
  }

  .service-orbit-layout {
    grid-template-columns: 1fr;
  }

  .service-orbit-center {
    width: 270px;
    height: 270px;
  }
}



/* SHOP ONLINE TAB/LINK CLEANUP */
a.form-tab,
a.contact-tab,
a.service-tab,
a.tab {
  text-decoration: none;
}

.repair-form-tabs a,
.device-tabs a {
  color: inherit;
}


/* ================= GLOBAL REFINEMENTS REQUESTED ================= */
a.action-card { text-decoration: none; color: inherit; }

/* Hide extra FAQ questions until View All Questions is clicked */
.faq-extra { display: none; }
.faq.show-extra .faq-extra { display: block; }

/* Remove hotspot icons on the Other Devices homepage tab */
.other-device .repair-point { display: none !important; }
.other-service-list li i { display: none !important; }

/* Small bottom CTA banner */
.bottom-cta-compact { padding: 34px 0 !important; }
.bottom-cta-compact .bottom-cta-card {
  min-height: auto !important;
  padding: 28px 36px !important;
  border-radius: 0 !important;
}
.bottom-cta-compact .bottom-cta-content h2 {
  font-size: 24px !important;
  margin-bottom: 8px !important;
}
.bottom-cta-compact .bottom-cta-content p {
  font-size: 14px !important;
  margin: 0 !important;
}
.bottom-cta-compact .bottom-cta-actions { flex-shrink: 0; }

/* Shop coming soon overlay */
.shop-coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(3, 8, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.shop-coming-soon-card {
  width: min(560px, 100%);
  background: #fff;
  color: var(--navy);
  padding: 44px 38px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.shop-coming-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-size: 28px;
}
.shop-coming-soon-card h1 {
  color: var(--navy);
  font-size: 38px;
  margin-bottom: 12px;
}
.shop-coming-soon-card p {
  color: #5e6980;
  line-height: 1.75;
  margin: 0 auto 24px;
  max-width: 450px;
}
.shop-coming-form {
  display: flex;
  gap: 10px;
  margin: 0 auto 18px;
  max-width: 440px;
}
.shop-coming-form input {
  flex: 1;
  min-height: 48px;
  border: 1px solid rgba(7,26,61,.16);
  padding: 0 14px;
  outline: none;
}
.shop-coming-form button {
  min-height: 48px;
  border: none;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.shop-coming-home {
  color: var(--primary-blue);
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 620px) {
  .shop-coming-form { flex-direction: column; }
  .shop-coming-soon-card { padding: 34px 22px; }
  .shop-coming-soon-card h1 { font-size: 30px; }
}

/* Remove icon on Other Devices service card as requested */
#other-devices .service-detail-icon { display: none !important; }



/* SHOP COMING SOON IMAGE CIRCLE */
.shop-coming-image {
  width: 118px;
  height: 118px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 7px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  box-shadow: 0 14px 34px rgba(7, 26, 61, 0.18);
}

.shop-coming-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 5px solid #fff;
}

.shop-coming-icon,
.shop-coming-soon-icon {
  display: none !important;
}



/* THINNER READY CTA BANNER */
.footer-cta,
.cta-section,
.ready-cta,
.footer-cta-section {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.footer-cta-box,
.cta-box,
.ready-cta-box {
  min-height: 0 !important;
  padding: 42px 54px !important;
}

.footer-cta-box .cta-content h2,
.cta-box h2,
.ready-cta-box h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
  margin-bottom: 14px !important;
}

.footer-cta-box .cta-content p,
.cta-box p,
.ready-cta-box p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

.footer-cta-box .cta-actions,
.cta-actions {
  gap: 14px !important;
}

/* Remove View Our Work button if old markup remains */
.footer-cta-box a:has(+ .remove-nothing),
.cta-actions .btn-outline-light[href*="work"],
.cta-actions a[href*="portfolio"] {
  display: none !important;
}

@media (max-width: 800px) {
  .footer-cta-box,
  .cta-box,
  .ready-cta-box {
    padding: 34px 24px !important;
  }

  .footer-cta-box .cta-content h2,
  .cta-box h2,
  .ready-cta-box h2 {
    font-size: 24px !important;
  }
}



/* RESTORE CTA BUBBLES + FLOATING BUTTONS */
.footer-cta-box,
.cta-box,
.ready-cta-box,
.bottom-cta-compact {
  position: relative;
  overflow: hidden;
}

.footer-cta-box::before,
.cta-box::before,
.ready-cta-box::before,
.bottom-cta-compact::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  left: -95px;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.footer-cta-box::after,
.cta-box::after,
.ready-cta-box::after,
.bottom-cta-compact::after {
  content: "";
  position: absolute;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  right: -60px;
  top: -95px;
  background: rgba(31, 139, 214, 0.18);
  pointer-events: none;
}

.footer-cta-box > *,
.cta-box > *,
.ready-cta-box > *,
.bottom-cta-compact > * {
  position: relative;
  z-index: 1;
}

/* Only two floating buttons: up + WhatsApp */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: grid;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(7,26,61,0.18);
}

.float-top {
  background: rgba(7, 26, 61, 0.92);
  color: #fff;
}

.float-whatsapp {
  background: #25D366;
  color: #fff;
}

.float-chat {
  display: none !important;
}

.float-btn i {
  font-size: 18px;
}



/* CTA ROUNDED EDGES + EXTRA BUBBLES */
.footer-cta-box,
.cta-box,
.ready-cta-box,
.bottom-cta-compact {
  border-radius: 18px !important;
}

.footer-cta-box .cta-content::before,
.cta-box .cta-content::before,
.ready-cta-box .cta-content::before,
.bottom-cta-compact .bottom-cta-content::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  left: 42%;
  top: -24px;
  border: 1px solid rgba(125, 196, 255, 0.18);
  background: rgba(31,139,214,0.08);
  pointer-events: none;
}

.footer-cta-box .cta-actions::before,
.cta-box .cta-actions::before,
.ready-cta-box .cta-actions::before,
.bottom-cta-compact .bottom-cta-actions::before {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  right: 19%;
  bottom: -48px;
  background: rgba(53,50,168,0.12);
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.footer-cta-box .cta-content,
.cta-box .cta-content,
.ready-cta-box .cta-content,
.bottom-cta-compact .bottom-cta-content,
.footer-cta-box .cta-actions,
.cta-box .cta-actions,
.ready-cta-box .cta-actions,
.bottom-cta-compact .bottom-cta-actions {
  position: relative;
}

/* DEVICE PICKER MODAL */
.device-picker-dialog {
  max-width: 620px;
}

.device-picker-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.device-picker-form select,
.device-picker-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7,26,61,0.16);
  padding: 0 13px;
  outline: none;
  background: #fff;
  color: var(--navy);
  font-family: inherit;
}

.device-picker-form select:focus,
.device-picker-form input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(31,139,214,0.10);
}

.device-picker-form .nx-form-field-full,
.device-picker-form .nx-form-submit {
  grid-column: 1 / -1;
}

@media (max-width: 680px) {
  .device-picker-form {
    grid-template-columns: 1fr;
  }
}



/* DEVICE PICKER FIXES */
.device-category-field[style*="display: none"] {
  display: none !important;
}

.device-picker-form select {
  cursor: pointer;
}

.device-picker-dialog .nx-modal-close {
  z-index: 10;
}



/* DEVICE PICKER FINAL FIX */
body:not(.modal-open) {
  overflow: auto !important;
}

.device-category-field[hidden] {
  display: none !important;
}



/* INLINE SELECT YOUR DEVICE DROPDOWN */
.select-device-dropdown-wrap {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 6;
  min-width: 235px;
}

.select-device-dropdown-wrap select {
  width: 100%;
  min-height: 54px;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 35px;
  padding: 0 48px 0 24px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  box-shadow: 0 14px 28px rgba(7, 26, 61, 0.20);
}

.select-device-dropdown-wrap select option {
  color: var(--navy);
  background: #fff;
  font-weight: 600;
  text-transform: none;
}

.select-device-dropdown-wrap i {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  pointer-events: none;
}

.select-device-dropdown-wrap:hover select {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 26, 61, 0.26);
}

@media (max-width: 900px) {
  .select-device-dropdown-wrap {
    right: 24px;
    bottom: 24px;
    min-width: 220px;
  }

  .select-device-dropdown-wrap select {
    min-height: 48px;
    font-size: 12px;
  }
}



/* ================= FINAL POLISH: CTA RADIUS, ADVANTAGE OVERLAY, PHONE LOADER ================= */

/* Force the ready CTA/card edges to be rounded */
.bottom-cta-card,
.bottom-cta-compact .bottom-cta-card,
.footer-cta-box,
.cta-box,
.ready-cta-box {
  border-radius: 22px !important;
  overflow: hidden !important;
}

/* Keep bubbles visible inside rounded card */
.bottom-cta-card::before,
.bottom-cta-card::after,
.bottom-cta-compact .bottom-cta-card::before,
.bottom-cta-compact .bottom-cta-card::after {
  border-radius: 50% !important;
}

/* Make the Our Advantages overlay/background a little more transparent */
.advantages,
.advantages-section,
#advantages,
.our-advantages,
.advantages-area {
  background-color: rgba(4, 10, 26, 0.70) !important;
}

.advantages::before,
.advantages-section::before,
#advantages::before,
.our-advantages::before,
.advantages-area::before {
  opacity: 0.62 !important;
}

.advantages::after,
.advantages-section::after,
#advantages::after,
.our-advantages::after,
.advantages-area::after {
  opacity: 0.55 !important;
}

/* Page loader with phone charging bar */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(31,139,214,0.18), transparent 32%),
    linear-gradient(135deg, #050b16 0%, #071a4a 62%, #11105a 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-phone {
  width: 148px;
  height: 246px;
  border: 4px solid rgba(255,255,255,0.88);
  border-radius: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.loader-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
}

.loader-battery {
  width: 78px;
  height: 32px;
  border: 3px solid #fff;
  border-radius: 8px;
  position: relative;
  overflow: visible;
}

.loader-battery::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 8px;
  width: 6px;
  height: 12px;
  border-radius: 0 4px 4px 0;
  background: #fff;
}

.loader-battery span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--purple));
  animation: phoneBatteryCharge 1.45s ease-in-out infinite;
}

.loader-phone p {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  text-align: center;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

@keyframes phoneBatteryCharge {
  0% { width: 0%; }
  60% { width: 100%; }
  100% { width: 100%; }
}



/* ================= LOADER REFINEMENT: WHITE BATTERY ONLY ================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader[hidden] {
  display: none !important;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-phone,
.loader-phone-notch {
  display: none !important;
}

.loader-battery-wrap {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: var(--navy);
  text-align: center;
}

.loader-battery {
  width: 132px;
  height: 54px;
  border: 4px solid var(--navy);
  border-radius: 12px;
  position: relative;
  overflow: visible;
  background: #fff;
}

.loader-battery::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 15px;
  width: 8px;
  height: 18px;
  border-radius: 0 5px 5px 0;
  background: var(--navy);
}

.loader-battery span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  transition: width 0.12s linear;
  animation: none !important;
}

#loader-percent {
  color: var(--navy);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 1px;
}

.loader-battery-wrap p {
  margin: 0;
  color: #5f6b82;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}



/* ================= SHOP COMING SOON OVERLAY RESTORE ================= */
.shop-coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background:
    radial-gradient(circle at 50% 35%, rgba(31,139,214,0.14), transparent 32%),
    rgba(3, 8, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.shop-coming-soon-card {
  width: min(700px, 100%);
  background: #fff;
  text-align: center;
  padding: 54px 48px 44px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.shop-coming-image {
  width: 118px;
  height: 118px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 7px;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  box-shadow: 0 14px 34px rgba(7, 26, 61, 0.18);
}

.shop-coming-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 5px solid #fff;
}

.shop-coming-soon-card h1 {
  color: var(--navy);
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.shop-coming-soon-card p {
  color: #5f6b82;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.shop-coming-form {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 22px;
}

.shop-coming-form input {
  min-height: 54px;
  border: 1px solid rgba(7,26,61,0.16);
  padding: 0 16px;
  outline: none;
}

.shop-coming-form button {
  min-height: 54px;
  border: none;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-coming-home {
  color: var(--primary-blue);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 620px) {
  .shop-coming-soon-card {
    padding: 40px 22px 34px;
  }

  .shop-coming-form {
    grid-template-columns: 1fr;
  }

  .shop-coming-soon-card h1 {
    font-size: 32px;
  }
}



/* ================= CONTEXTUAL FORM + SELL COMING SOON POPUP ================= */
.sell-coming-soon-modal {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 0;
  background: #fff;
}

.sell-coming-card {
  text-align: center;
  padding: 50px 44px 42px;
}

.sell-coming-card h2 {
  color: var(--navy);
  font-size: 42px;
  letter-spacing: 2px;
  margin: 0 0 14px;
}

.sell-coming-card p {
  color: #5f6b82;
  max-width: 510px;
  margin: 0 auto 26px;
  line-height: 1.8;
}

.sell-coming-soon-modal .shop-coming-form {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto 20px;
}

.sell-coming-soon-modal .shop-coming-form input {
  min-height: 54px;
  border: 1px solid rgba(7,26,61,0.16);
  padding: 0 16px;
  outline: none;
}

.sell-coming-soon-modal .shop-coming-form button {
  min-height: 54px;
  border: none;
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.sell-coming-soon-modal .shop-coming-home {
  color: var(--primary-blue);
  font-weight: 800;
  text-decoration: none;
}

.appointment-context-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 620px) {
  .sell-coming-card {
    padding: 40px 22px 34px;
  }

  .sell-coming-card h2 {
    font-size: 32px;
  }

  .sell-coming-soon-modal .shop-coming-form {
    grid-template-columns: 1fr;
  }
}



/* FORM EMAIL NOTE */
.form-email-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: #5f6b82;
  font-size: 13px;
  line-height: 1.5;
}



/* FORM BUTTON CONSISTENCY */
.modal-submit,
.contact-submit,
.shop-coming-form button {
  min-width: 130px;
  text-align: center;
}



/* LIVE EMAIL BACKEND HONEYPOT */
.website-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}



/* ================= PRICING PAGE ================= */
.nav a.active { color: var(--primary-blue); }
.pricing-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,rgba(5,11,22,.92),rgba(7,26,74,.94)),url("images/backlay.jpg") center/cover no-repeat;color:#fff;padding:120px 0 92px}.pricing-hero:before{content:"";position:absolute;width:460px;height:460px;border-radius:50%;right:-130px;top:-160px;background:rgba(31,139,214,.16)}.pricing-hero:after{content:"";position:absolute;width:260px;height:260px;border-radius:50%;left:-90px;bottom:-90px;background:rgba(53,50,168,.18)}.pricing-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 390px;gap:52px;align-items:center}.pricing-kicker{display:inline-block;background:linear-gradient(135deg,var(--primary-blue),var(--purple));padding:10px 15px;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:22px}.pricing-hero h1{font-size:58px;line-height:1.05;color:#fff;margin:0 0 18px}.pricing-hero h1 span{color:#7dc4ff}.pricing-hero p{font-size:18px;line-height:1.8;color:rgba(255,255,255,.86);max-width:760px}.pricing-hero-actions{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-top:30px}.pricing-light-btn{min-height:50px;padding:0 24px;background:#fff;color:var(--navy);border-radius:999px;display:inline-flex;align-items:center;text-decoration:none;font-weight:800;font-size:12px;text-transform:uppercase}.pricing-formula-card{background:#fff;color:var(--navy);padding:30px;border-radius:24px;box-shadow:0 24px 70px rgba(0,0,0,.22)}.pricing-formula-card h3{font-size:24px;margin-bottom:18px}.formula-row{display:flex;justify-content:space-between;gap:16px;border-bottom:1px solid rgba(7,26,61,.08);padding:12px 0;color:#4f5d74}.formula-row strong{color:var(--navy)}.formula-total{margin-top:18px;background:linear-gradient(135deg,var(--primary-blue),var(--purple));color:#fff;border-radius:16px;padding:14px 16px;font-weight:800;text-align:center}.pricing-method{padding:56px 0;background:#fff}.pricing-method-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.pricing-method article{border:1px solid rgba(7,26,61,.08);padding:28px 24px;background:#f8fbff;transition:.25s ease}.pricing-method article:hover{transform:translateY(-5px);box-shadow:0 18px 38px rgba(7,26,61,.08)}.pricing-method i{font-size:34px;color:var(--primary-blue);margin-bottom:18px}.pricing-method h3{font-size:22px;color:var(--navy);margin-bottom:10px}.pricing-method p{color:#5f6b82;line-height:1.7}.pricing-main{background:#fff;padding:76px 0}.pricing-section-title{text-align:center;max-width:800px;margin:0 auto 36px}.pricing-section-title h2{font-size:44px;color:var(--navy);margin-bottom:10px}.pricing-section-title h2 span{background:linear-gradient(135deg,var(--primary-blue),var(--purple));-webkit-background-clip:text;background-clip:text;color:transparent}.pricing-section-title p{color:#5f6b82;line-height:1.7}.pricing-tabs{display:grid;grid-template-columns:repeat(4,1fr);max-width:1040px;margin:0 auto 0;border:1px solid rgba(7,26,61,.08);box-shadow:0 14px 38px rgba(7,26,61,.06)}.pricing-tab{min-height:98px;background:#fff;border:none;border-right:1px solid rgba(7,26,61,.08);display:flex;align-items:center;justify-content:center;gap:12px;color:var(--navy);font-size:18px;font-weight:800;cursor:pointer}.pricing-tab:last-child{border-right:none}.pricing-tab i{font-size:28px;color:var(--primary-blue)}.pricing-tab.active{background:linear-gradient(135deg,var(--primary-blue),var(--purple));color:#fff}.pricing-tab.active i{color:#fff}.pricing-panel{display:none;max-width:1040px;margin:0 auto}.pricing-panel.active{display:block}.pricing-table-wrap{overflow-x:auto;box-shadow:0 16px 42px rgba(7,26,61,.08);border:1px solid rgba(7,26,61,.08);border-top:none}.pricing-table{width:100%;border-collapse:collapse;background:#fff;min-width:760px}.pricing-table th{background:#071a4a;color:#fff;text-align:left;padding:18px 18px;font-size:13px;text-transform:uppercase;letter-spacing:.7px}.pricing-table td{padding:18px;border-bottom:1px solid rgba(7,26,61,.08);color:#354156;line-height:1.55;vertical-align:top}.pricing-table td:nth-child(3){font-weight:800;color:var(--primary-blue);white-space:nowrap}.pricing-table tr:hover td{background:#f8fbff}.pricing-note-box{max-width:1040px;margin:28px auto 0;background:#f8fbff;border-left:4px solid var(--primary-blue);padding:24px 26px}.pricing-note-box h3{color:var(--navy);font-size:22px;margin-bottom:8px}.pricing-note-box p{color:#5f6b82;line-height:1.75}.pricing-cta{padding:42px 0 78px;background:#fff}.pricing-cta-box{background:linear-gradient(135deg,var(--navy),#06112d 70%,var(--purple));border-radius:22px;color:#fff;padding:36px 44px;display:flex;align-items:center;justify-content:space-between;gap:28px;position:relative;overflow:hidden}.pricing-cta-box:before{content:"";position:absolute;width:230px;height:230px;border-radius:50%;right:-70px;top:-110px;background:rgba(31,139,214,.18)}.pricing-cta-box:after{content:"";position:absolute;width:160px;height:160px;border-radius:50%;left:-60px;bottom:-80px;background:rgba(255,255,255,.05)}.pricing-cta-box>*{position:relative;z-index:1}.pricing-cta h2{color:#fff;font-size:32px;margin-bottom:8px}.pricing-cta p{color:rgba(255,255,255,.82);line-height:1.7;max-width:760px}@media(max-width:900px){.pricing-hero-grid,.pricing-method-grid{grid-template-columns:1fr}.pricing-hero h1{font-size:42px}.pricing-tabs{grid-template-columns:repeat(2,1fr)}.pricing-cta-box{display:block}.pricing-cta-box .btn-primary{margin-top:20px}}@media(max-width:560px){.pricing-tabs{grid-template-columns:1fr}.pricing-tab{min-height:78px}.pricing-hero{padding:88px 0 70px}.pricing-section-title h2{font-size:34px}}



/* ================= BASIC PRICING PAGE ================= */
.basic-pricing-page {
  background: #fff;
  padding: 28px 0 0;
}

.basic-pricing-page .container {
  max-width: 1060px;
}

.basic-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  margin-bottom: 70px;
}

.basic-breadcrumb a {
  color: #29354a;
  text-decoration: none;
}

.basic-pricing-intro {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 70px;
}

.basic-pricing-intro h1 {
  color: var(--navy);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.basic-pricing-intro h1 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.basic-pricing-subtitle {
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 30px;
}

.basic-pricing-copy {
  color: #424b5e;
  font-size: 15px;
  line-height: 1.85;
  max-width: 820px;
  margin: 0 auto;
}

.basic-pricing-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(7, 26, 61, 0.08);
  border-bottom: 3px solid #2d3748;
  background: #fff;
  box-shadow: 0 12px 36px rgba(7, 26, 61, 0.06);
}

.basic-pricing-tab {
  min-height: 112px;
  border: 0;
  border-right: 1px solid rgba(7, 26, 61, 0.08);
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
}

.basic-pricing-tab:last-child {
  border-right: 0;
}

.basic-pricing-tab i {
  font-size: 32px;
  color: #1d2637;
}

.basic-pricing-tab strong {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.basic-pricing-tab small {
  font-size: 13px;
  color: #1f2937;
}

.basic-pricing-tab.active,
.basic-pricing-tab:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  color: #fff;
}

.basic-pricing-tab.active i,
.basic-pricing-tab.active small,
.basic-pricing-tab:hover i,
.basic-pricing-tab:hover small {
  color: #fff;
}

.basic-pricing-panel {
  display: none;
}

.basic-pricing-panel.active {
  display: block;
}

.basic-table-wrap {
  overflow-x: auto;
  box-shadow: 0 16px 40px rgba(7, 26, 61, 0.08);
  margin-bottom: 24px;
}

.basic-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  background: #fff;
}

.basic-price-table th {
  background: #f5f6f8;
  color: #172033;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 20px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(7, 26, 61, 0.08);
}

.basic-price-table th:first-child {
  text-align: left;
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #2a3344;
}

.basic-price-table td {
  padding: 17px 18px;
  color: #354156;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid rgba(7, 26, 61, 0.06);
}

.basic-price-table td:first-child {
  text-align: left;
  text-transform: uppercase;
  color: #29354a;
  font-size: 13px;
  letter-spacing: .3px;
}

.basic-price-table tr:last-child td {
  border-bottom: 0;
}

.basic-price-table td:not(:first-child) {
  color: #1f2937;
}


.basic-pricing-note {
  color: #566278;
  background: #f7f9ff;
  border-left: 4px solid var(--primary-blue);
  padding: 18px 22px;
  line-height: 1.7;
  margin: 30px 0 68px;
}

.basic-pricing-cta {
  text-align: center;
  padding: 0 0 82px;
}

.basic-pricing-cta h2 {
  color: var(--navy);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 8px;
}

.basic-pricing-cta h2 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.basic-price-phone {
  display: inline-block;
  color: #151b28;
  text-decoration: none;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.basic-pricing-cta p {
  font-family: Georgia, "Times New Roman", serif;
  color: #222;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 28px;
}

.basic-pricing-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.basic-dark-btn {
  min-height: 48px;
  padding: 0 28px;
  background: #2f3339;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 820px) {
  .basic-pricing-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .basic-pricing-intro h1 {
    font-size: 32px;
  }
}

@media (max-width: 520px) {
  .basic-pricing-tabs {
    grid-template-columns: 1fr;
  }

  .basic-breadcrumb {
    margin-bottom: 42px;
  }

  .basic-price-phone {
    font-size: 25px;
  }
}



/* BASIC DIAGNOSTIC FEE STRIP */
.basic-diagnostic-fee {
  max-width: 760px;
  margin: -34px auto 42px;
  padding: 22px 28px;
  text-align: center;
  background: #f7f9ff;
  border-top: 3px solid var(--primary-blue);
  box-shadow: 0 14px 34px rgba(7, 26, 61, 0.06);
}

.basic-diagnostic-fee span {
  display: block;
  color: #5f6b82;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 4px;
}

.basic-diagnostic-fee strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.basic-diagnostic-fee p {
  color: #5f6b82;
  line-height: 1.6;
  margin: 0;
}

/* ================= NXTEDGE RESPONSIVE FLOW POLISH ================= */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
}

section,
.action-card,
.step,
.service-card,
.service-detail-card,
.shop-product-card,
.basic-diagnostic-fee,
.basic-pricing-note,
.basic-pricing-cta,
.testimonial-card,
.faq-item {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, opacity .55s ease;
}

.action-card:hover,
.step:hover,
.service-card:hover,
.service-detail-card:hover,
.shop-product-card:hover,
.basic-pricing-tab:hover,
.faq-item:hover {
  transform: translateY(-6px);
}

.flow-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.flow-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content,
.services-page-hero-copy,
.basic-pricing-intro,
.contact-reference-hero-content,
.sell-hero-content {
  animation: softRise .75s ease both;
}

@keyframes softRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary,
.basic-dark-btn,
.services-page-btn,
.modal-submit,
.shop-add-btn {
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn-primary:hover,
.basic-dark-btn:hover,
.services-page-btn:hover,
.modal-submit:hover,
.shop-add-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.hero-slide,
.services-page-hero,
.basic-pricing-page,
.contact-reference-hero,
.sell-hero {
  background-attachment: scroll !important;
}

@media (max-width: 1100px) {
  .container { width: 90%; }
  .nav-inner { gap: 18px; }
  .nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px; }
  .nav a { margin: 0; }
  .nav-btn { margin-left: 0; }
  .service-layout,
  .testimonials-layout,
  .footer-main,
  .contact-reference-grid,
  .sell-explainer-grid,
  .services-page-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .testimonials-right,
  .service-layout .device-area { order: -1; }
}

@media (max-width: 820px) {
  .navbar {
    position: sticky;
    top: 0;
  }
  .nav-inner,
  .navbar .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .brand {
    justify-content: center;
    text-align: center;
  }
  .brand-text h1,
  .brand-text .brand-name { font-size: 18px; letter-spacing: 2px; }
  .brand-text p { font-size: 10px; }
  .nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 8px 2px 2px;
    -webkit-overflow-scrolling: touch;
  }
  .nav a {
    flex: 0 0 auto;
    font-size: 12px !important;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(31,139,214,.07);
  }
  .nav-btn .btn-primary,
  .nav-btn button {
    width: 100%;
    margin-top: 8px;
  }
  .hero-slider { min-height: 560px; height: auto; }
  .hero-content { padding: 132px 0 90px; text-align: center; }
  .hero-content h1 { font-size: clamp(34px, 10vw, 52px); line-height: 1.05; }
  .hero-content .subtitle { font-size: clamp(18px, 6vw, 28px); }
  .action-grid,
  .steps-grid,
  .service-grid,
  .services-cards-grid,
  .shop-product-grid,
  .basic-pricing-tabs,
  .pricing-method-grid,
  .footer-links-grid {
    grid-template-columns: 1fr !important;
  }
  .tabs,
  .device-tabs,
  .basic-pricing-tabs {
    display: flex !important;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }
  .tab,
  .basic-pricing-tab {
    min-width: 220px;
    scroll-snap-align: start;
  }
  .service-list ul,
  .service-detail-list,
  .pricing-method-grid,
  .services-overview-grid {
    grid-template-columns: 1fr !important;
  }
  .modal-form .form-grid.two,
  .form-grid.two,
  .contact-form-row {
    grid-template-columns: 1fr !important;
  }
  .site-modal {
    width: min(94vw, 620px) !important;
    max-height: 88vh;
    overflow-y: auto;
  }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .container { width: 92%; }
  .brand img { width: 42px; height: 42px; }
  h1, .basic-pricing-intro h1, .services-page-hero h1, .contact-reference-hero h1 { font-size: clamp(30px, 9vw, 42px) !important; }
  h2, .section-heading h2, .faq-heading h2, .testimonials-heading h2 { font-size: clamp(26px, 8vw, 36px) !important; }
  .hero-content { padding-top: 118px; }
  .hero-dots { bottom: 40px !important; }
  .service-list,
  .device-area,
  .testimonials-left,
  .testimonials-image-panel,
  .basic-pricing-intro,
  .basic-diagnostic-fee,
  .basic-pricing-note,
  .basic-pricing-cta {
    border-radius: 18px !important;
  }
  .basic-table-wrap,
  .pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .basic-price-table,
  .pricing-table {
    min-width: 620px;
  }
  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
  .float-btn { width: 44px; height: 44px; }
}


/* =========================================================
   MOBILE NAV HAMBURGER + SLIDE-OUT DRAWER (added for mobile UX)
   ========================================================= */

/* The hamburger button is hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  position: relative;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy, #1c2b4a);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile drawer behavior */
@media (max-width: 820px) {
  .nav-toggle { display: block; }

  /* Restructure nav row: brand left, hamburger right */
  .navbar .container,
  .nav-inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }
  .brand {
    justify-content: flex-start !important;
    text-align: left !important;
    flex: 1 1 auto;
    min-width: 0;
  }
  .brand-text { min-width: 0; }
  .brand-text .brand-name { font-size: 16px; letter-spacing: 1.5px; }
  .brand-text p { font-size: 9px; }

  /* The nav becomes a slide-down drawer below the header */
  .nav#primary-nav,
  .nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 16px 5% 18px !important;
    margin: 0 !important;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    border-top: 1px solid rgba(0,0,0,.06);
    z-index: 1050;
    overflow: visible;
  }
  .nav.nav-open,
  .nav#primary-nav.nav-open {
    display: flex !important;
  }
  .nav a {
    width: 100%;
    text-align: left;
    padding: 12px 8px !important;
    margin: 0 !important;
    font-size: 15px !important;
    border-radius: 8px;
    background: transparent !important;
    border-bottom: 1px solid rgba(0,0,0,.05);
  }
  .nav a:last-child { border-bottom: none; }

  /* Keep the Get-Repair button visible — render it inline next to the hamburger
     on the smallest screens, OR inside the drawer */
  .nav-btn {
    display: none;
  }
  .nav.nav-open + .nav-btn,
  .nav-open ~ .nav-btn {
    display: block;
  }
  /* simpler: always show the button below the drawer when open via JS */

  .navbar {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
  }
}

/* Prevent body scroll when the mobile menu is open */
body.nav-open-lock {
  overflow: hidden;
}


/* =================================================================
   MOBILE FIXES + RICHER ANIMATIONS + THANK-YOU MODAL
   ----------------------------------------------------------------- */

/* -----------------------------------------------------------------
   1. "We Fix All Devices" — device preview on mobile
   -----------------------------------------------------------------
   Keep the SAME experience as desktop (image + repair-point icons
   overlaid). The trick: make the container match the image's aspect
   ratio so percentage-positioned icons land on the right features.
   ----------------------------------------------------------------- */
@media (max-width: 900px) {
  /* Default phone mockup container (Mockup.jpg is ~3:2) */
  .device-area.phone-mockup,
  .phone-mockup {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 3 / 2;
    width: 92% !important;
    max-width: 460px !important;
    margin: 18px auto !important;
    padding: 0 !important;
    background: var(--black, #0d1424);
    border-radius: 16px;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
  }

  /* Variant aspect ratios (must come after .phone-mockup) */
  .device-area.tablet-device,
  .device-area.computer-device { aspect-ratio: 4 / 3 !important; }
  .device-area.other-device    { aspect-ratio: 16 / 9 !important; }

  /* Hide the radial vignette — it dimmed the image edges */
  .phone-mockup::before,
  .device-area::before {
    display: none !important;
  }

  /* Image FILLS the container exactly. Now the percentage icon
     positions overlay onto the same image features as desktop. */
  .phone-mockup img,
  .device-area img,
  .device-mockup img,
  .tablet-device img,
  .computer-device img,
  .other-device img {
    position: absolute !important;
    inset: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 0 !important;
    background: transparent !important;
    /* Kill desktop-only blend/mask effects */
    mix-blend-mode: normal !important;
    -webkit-mask-image: none !important;
            mask-image: none !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: 1;
  }

  /* Repair-points: keep absolute positioning from inline styles,
     just resize for mobile so they fit nicely on the smaller image */
  .repair-point {
    width: 34px !important;
    height: 34px !important;
    font-size: 13px !important;
    z-index: 5 !important;
    /* DON'T override top/left/right/bottom — they're inline % styles
       that we WANT to keep so icons land on image features */
  }
  .repair-point.pulse {
    box-shadow: 0 0 0 3px rgba(31,139,214,.35);
  }

  /* Tooltip and Select Device — show inline below the image, in the
     normal .service-layout flow (which is already column on mobile) */
  .service-layout {
    display: flex !important;
    flex-direction: column !important;
  }

  .repair-tooltip {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto 14px !important;
    width: 92% !important;
    max-width: 460px !important;
    text-align: left;
  }

  .select-device,
  .select-device-dropdown-wrap {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin: 0 auto 18px !important;
    display: block;
    width: 92%;
    max-width: 460px;
  }
}

@media (max-width: 560px) {
  .repair-point {
    width: 30px !important;
    height: 30px !important;
    font-size: 11px !important;
  }
}

/* -----------------------------------------------------------------
   2. Advantages: stop the phone image from stretching
   ----------------------------------------------------------------- */
.adv-device-image {
  height: auto !important;   /* override the desktop 490px fixed height */
}
@media (max-width: 900px) {
  .adv-device-image {
    width: 240px !important;
    max-width: 80%;
    height: auto !important;
  }
  .adv-device-wrap {
    margin: 0 auto 8px;
  }
}


/* Desktop fix: the service preview images are only for mobile cards.
   Keep desktop as the clean orbit layout with one center preview image. */
.service-orbit-copy .orbit-card-image {
  display: none;
}

/* -----------------------------------------------------------------
   3. Services page: per-card image on mobile
   ----------------------------------------------------------------- */
@media (max-width: 780px) {
  .service-orbit-section .service-orbit-dots,
  .service-orbit-section .service-orbit-center { display: none !important; }

  .service-orbit-layout {
    display: flex !important;
    flex-direction: column;
    gap: 22px;
  }
  .service-orbit-copy {
    position: relative;
    width: 100% !important;
    text-align: left !important;
    background: #fff;
    border: 1px solid rgba(7,26,61,.08);
    border-radius: 16px;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(7,26,61,.06);
  }
  .service-orbit-copy .orbit-card-image {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .service-orbit-copy .orbit-card-body { padding: 18px 20px 20px; }
  .service-orbit-copy h3 { font-size: 22px !important; margin: 0 0 8px; }
  .service-orbit-copy p  { font-size: 14px; margin: 0 0 12px; }
  .service-orbit-copy a  { display: inline-block; }
}


/* =================================================================
   RICHER SCROLL ANIMATIONS
   -----------------------------------------------------------------
   The existing .flow-reveal class fades + slides items up as they
   enter the viewport. We upgrade this with a smoother cubic-bezier
   easing and add per-element variants: scale-in for images, slide-
   from-left/right for alternating cards, and a subtle parallax
   "rise" for hero sections.
   ----------------------------------------------------------------- */

.flow-reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition:
    opacity .85s cubic-bezier(.22,.61,.36,1),
    transform .85s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.flow-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger when multiple cards reveal together */
.flow-reveal.is-visible:nth-child(2) { transition-delay: .08s; }
.flow-reveal.is-visible:nth-child(3) { transition-delay: .16s; }
.flow-reveal.is-visible:nth-child(4) { transition-delay: .24s; }
.flow-reveal.is-visible:nth-child(5) { transition-delay: .32s; }

/* Slide-from-side reveal for alternating items (services overview, advantages) */
[data-anim="slide-left"] {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1),
              transform .9s cubic-bezier(.22,.61,.36,1);
}
[data-anim="slide-right"] {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1),
              transform .9s cubic-bezier(.22,.61,.36,1);
}
[data-anim="slide-left"].is-visible,
[data-anim="slide-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom-in for images as they enter the viewport */
[data-anim="zoom-in"] {
  opacity: 0;
  transform: scale(.92);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.22,.61,.36,1);
}
[data-anim="zoom-in"].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Subtle parallax-style "rise" for sections */
[data-anim="rise"] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.22,.61,.36,1);
}
[data-anim="rise"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Float-in cards (used for service cards, pricing cards, FAQ) */
.float-card {
  opacity: 0;
  transform: translateY(40px) rotate(-1.5deg);
  transition: opacity .8s ease, transform .9s cubic-bezier(.22,.61,.36,1);
}
.float-card.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* Subtle continuous hover lift for cards (extra polish on desktop) */
@media (hover: hover) {
  .service-card,
  .service-detail-card,
  .shop-product-card,
  .action-card,
  .step {
    transition: transform .35s cubic-bezier(.22,.61,.36,1),
                box-shadow .35s ease;
  }
  .service-card:hover,
  .service-detail-card:hover,
  .shop-product-card:hover,
  .action-card:hover,
  .step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(7,26,61,.13);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .flow-reveal,
  [data-anim="slide-left"],
  [data-anim="slide-right"],
  [data-anim="zoom-in"],
  [data-anim="rise"],
  .float-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* =================================================================
   THANK-YOU MODAL (form submission confirmation)
   ----------------------------------------------------------------- */
.thanks-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 61, .65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.thanks-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.thanks-modal {
  background: #ffffff;
  border-radius: 22px;
  max-width: 440px;
  width: 100%;
  padding: 38px 32px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 28px 80px rgba(7, 26, 61, .35);
  transform: scale(.9) translateY(20px);
  transition: transform .45s cubic-bezier(.22, 1.5, .36, 1);
  font-family: "Chivo", sans-serif;
}
.thanks-modal-backdrop.is-open .thanks-modal {
  transform: scale(1) translateY(0);
}

.thanks-modal-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f8bd6, #3532a8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(31, 139, 214, .35);
  position: relative;
  overflow: hidden;
}
.thanks-modal-logo img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
}

.thanks-modal-check {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #1cc88a;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(28, 200, 138, .4);
  border: 3px solid #fff;
  animation: thanksCheckPop .6s cubic-bezier(.22, 1.5, .36, 1) .2s both;
}
@keyframes thanksCheckPop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

.thanks-modal h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #1c2b4a;
  letter-spacing: .5px;
  line-height: 1.25;
}
.thanks-modal .thanks-modal-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1f8bd6;
  margin-bottom: 6px;
}
.thanks-modal p {
  color: #56627a;
  font-size: 15px;
  line-height: 1.55;
  margin: 8px 0 22px;
}

.thanks-modal-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1f8bd6, #3532a8);
  color: #ffffff !important;
  border: 0;
  padding: 13px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 999px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease;
  box-shadow: 0 8px 20px rgba(31, 139, 214, .35);
  font-family: inherit;
}
.thanks-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 139, 214, .45);
}

.thanks-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: rgba(7, 26, 61, .06);
  color: #56627a;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-modal-close:hover {
  background: rgba(7, 26, 61, .12);
  color: #1c2b4a;
}

/* Error variant */
.thanks-modal.thanks-error .thanks-modal-logo {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.thanks-modal.thanks-error .thanks-modal-check {
  background: #e74c3c;
}
.thanks-modal.thanks-error .thanks-modal-eyebrow {
  color: #e74c3c;
}

@media (max-width: 480px) {
  .thanks-modal {
    padding: 32px 24px 26px;
  }
  .thanks-modal h2 { font-size: 21px; }
}
