:root {
  --bg: #edf5ff;
  --bg-2: #f8fbff;
  --text: #16314f;
  --muted: #5f7491;
  --line: rgba(255, 255, 255, 0.55);
  --glass: rgba(255, 255, 255, 0.45);
  --glass-strong: rgba(255, 255, 255, 0.68);
  --shadow: 0 24px 60px rgba(54, 92, 143, 0.16);
  --shadow-soft: 0 16px 32px rgba(63, 94, 140, 0.1);
  --primary: #4f8cff;
  --primary-2: #7b9fff;
  --accent: #8be0ff;
  --success: #3aa878;
  --warning: #e7a645;
  --radius: 28px;
  --radius-sm: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #ffffff 0%, rgba(255,255,255,0.65) 26%, transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.btn {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.7;
}

.orb-1 {
  width: 440px;
  height: 440px;
  left: -100px;
  top: 90px;
  background: radial-gradient(circle, rgba(160,205,255,0.85), rgba(160,205,255,0));
}

.orb-2 {
  width: 360px;
  height: 360px;
  right: -60px;
  top: 240px;
  background: radial-gradient(circle, rgba(185,243,255,0.9), rgba(185,243,255,0));
}

.orb-3 {
  width: 460px;
  height: 460px;
  left: 45%;
  bottom: -180px;
  background: radial-gradient(circle, rgba(182,196,255,0.65), rgba(182,196,255,0));
}

.noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .18;
  mix-blend-mode: soft-light;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255,255,255,0.28));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--shadow-soft);
}

.glass-border {
  border: 1px solid var(--line);
}

.inline-glass {
  display: inline-flex;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(var(--container), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 14px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav a,
.mobile-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color .2s ease, transform .2s ease;
}

.nav a:hover,
.mobile-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  top: 84px;
  left: 16px;
  right: 16px;
  z-index: 19;
  border-radius: 24px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 16px;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.45);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 34px;
  min-height: calc(100vh - 120px);
  padding: 56px 0 32px;
}

.eyebrow {
  width: max-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.6);
  margin-bottom: 18px;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  max-width: 680px;
}

.hero h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #417eff, #73b5ff 55%, #59d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading p,
.content-card p,
.info-card p,
.shot-card p,
.important-card p,
.faq-answer p,
.footer-card p,
.hero-points span,
.contact-note,
.signal-card span,
.signal-card strong {
  color: var(--muted);
}

.hero-text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  margin: 20px 0 0;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(79, 140, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.56), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 10px 24px rgba(79, 140, 255, 0.08), inset 0 1px 0 rgba(255,255,255,0.46);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.btn-glass:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.66), rgba(255,255,255,0.4));
  box-shadow: 0 14px 28px rgba(79, 140, 255, 0.12), inset 0 1px 0 rgba(255,255,255,0.56);
}

.btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.72;
}

.hero-points {
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-points div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.25);
}

.hero-points strong {
  font-size: 24px;
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: calc(var(--radius) + 8px);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.status-pill,
.device-pill,
.server-pill,
.variant-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.status-pill {
  background: rgba(255,255,255,0.62);
  color: var(--text);
}

.variant-tag {
  background: rgba(139, 224, 255, 0.18);
  color: #2476a2;
}

.device-pill {
  background: rgba(79, 140, 255, 0.12);
  color: var(--primary);
}

.variant-tag.alt,
.server-pill {
  background: rgba(139, 224, 255, 0.18);
  color: #2476a2;
}

.hero-phone {
  position: relative;
  max-width: 370px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.4));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), 0 20px 60px rgba(76, 97, 131, 0.16);
}

.phone-notch {
  width: 32%;
  height: 22px;
  background: rgba(222, 231, 243, 0.95);
  border-radius: 999px;
  margin: 0 auto 16px;
}

.phone-screen {
  min-height: 560px;
  border-radius: 30px;
  padding: 24px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(245,250,255,0.8)),
    radial-gradient(circle at top right, rgba(139,224,255,0.35), transparent 35%);
  border: 1px solid rgba(255,255,255,0.65);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.phone-header small {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
}

.phone-header strong {
  font-size: 26px;
}

.signal-card {
  border-radius: 24px;
  padding: 16px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.62);
}

.signal-card strong {
  display: block;
  color: var(--text);
  margin-top: 6px;
  font-size: 20px;
}

.mock-btn {
  margin-top: 22px;
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #4f8cff, #7aa4ff);
  color: white;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 18px 40px rgba(79, 140, 255, 0.25);
}

.section {
  padding: 70px 0;
}

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

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  margin-bottom: 14px;
}

.section-heading p {
  margin: 0;
  line-height: 1.75;
  font-size: 17px;
}

.info-grid,
.important-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.important-card,
.content-card,
.variant-card,
.shot-card,
.faq-item,
.footer-card {
  border-radius: var(--radius);
}

.info-card,
.important-card {
  padding: 24px;
}

.info-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255,255,255,0.52);
  font-size: 24px;
  margin-bottom: 14px;
}

.info-card h3,
.variant-card h3,
.content-card h3,
.important-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.info-card p,
.important-card p,
.shot-card p,
.faq-answer p,
.footer-card p,
.contact-note {
  margin: 0;
  line-height: 1.7;
}

.content-grid,
.status-layout,
.troubleshoot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.content-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.content-card,
.variant-card {
  padding: 28px;
}

.check-list,
.step-list {
  margin: 0;
  padding-left: 22px;
}

.check-list li,
.step-list li {
  margin-bottom: 14px;
  line-height: 1.75;
}

.step-list.spaced li {
  margin-bottom: 18px;
}

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

.shot-card {
  padding: 18px;
}

.shot-card.wide {
  grid-column: 1 / -1;
}

.shot-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.65), rgba(232,243,255,0.65)),
    repeating-linear-gradient(45deg, rgba(79,140,255,0.08) 0 12px, rgba(255,255,255,0.25) 12px 24px);
  border: 1px dashed rgba(79,140,255,0.24);
  color: #5a86d8;
  font-weight: 700;
  margin-bottom: 14px;
}

.shot-placeholder.small {
  min-height: 160px;
}

.variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.variant-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.mini-shots {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-shots.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.success-banner,
.contact-note,
.ping-box {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.55);
}

.success-banner {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.success-banner strong,
.ping-item strong,
.contact-note {
  color: var(--text);
}

.ping-box {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.ping-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ping-dot {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 8px;
}

.ping-item.success .ping-dot {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(58,168,120,0.12);
}

.ping-item.warning .ping-dot {
  background: var(--warning);
  box-shadow: 0 0 0 6px rgba(231,166,69,0.12);
}

.ping-item p {
  margin: 5px 0 0;
  color: var(--muted);
}

.status-layout-custom {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
  align-items: start;
}

.status-visual {
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.status-shot-card {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.status-shot-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-shot-image {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}


.variant-card,
.content-card,
.step-three-visual,
.status-visual {
  min-width: 0;
}

.important-num {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .04em;
}

.refresh-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  color: var(--primary);
  vertical-align: middle;
}

.refresh-icon svg {
  width: 1.05em;
  height: 1.05em;
  stroke: currentColor;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.52);
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(0.22, 1, 0.36, 1), opacity .24s ease;
  will-change: max-height, opacity;
}

.faq-answer > div,
.faq-answer > p {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 22px;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-icon {
  transition: transform .28s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.footer {
  padding: 0 0 34px;
}

.footer-card {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}



.step-three-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr) !important;
  gap: 22px;
  align-items: stretch;
}

.step-three-layout > * {
  min-width: 0;
}

.step-three-visual {
  min-width: 0;
  height: 100%;
}

.step-three-shot-card {
  height: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-three-media-single {
  min-height: 100%;
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.step-three-server {
  display: block;
  width: 90%;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .hero,
  .content-grid,
  .content-grid.reverse,
  .status-layout,
  .status-layout-custom,
  .troubleshoot-grid,
  .variant-grid,
  .info-grid,
  .important-grid,
  .step-three-layout,
  .step-one-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-card {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

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

  .mini-shots,
  .shots-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .topbar {
    padding: 12px 14px;
  }

  .container,
  .topbar {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero {
    padding-top: 28px;
  }

  .section {
    padding: 54px 0;
  }

  .content-card,
  .variant-card,
  .info-card,
  .important-card,
  .hero-card,
  .shot-card,
  .faq-question,
  .footer-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-text,
  .section-heading p {
    font-size: 16px;
  }

  .hero-phone {
    max-width: 100%;
  }

  .phone-screen {
    min-height: 510px;
  }

  .faq-question {
    font-size: 16px;
  }
}


.hero-logo-card {
  display: grid;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 32px;
  background: radial-gradient(circle at center, rgba(139,224,255,0.3), rgba(79,140,255,0.12) 42%, rgba(255,255,255,0) 72%);
  filter: blur(10px);
}

.hero-logo-image {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(90, 124, 179, 0.18));
}

@media (max-width: 720px) {
  .hero-logo-card {
    min-height: 340px;
  }

  .hero-logo-wrap {
    padding: 10px;
  }

  .hero-logo-image {
    width: min(100%, 320px);
  }
}


.shots-grid.single {
  grid-template-columns: minmax(0, 420px);
}

.shot-media {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.65), rgba(232,243,255,0.65)),
    repeating-linear-gradient(45deg, rgba(79,140,255,0.08) 0 12px, rgba(255,255,255,0.25) 12px 24px);
  border: 1px dashed rgba(79,140,255,0.24);
  margin-bottom: 14px;
  overflow: hidden;
}

.shot-image {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.happ-logo {
  max-height: 152px;
}

@media (max-width: 920px) {
  .shots-grid.single {
    grid-template-columns: 1fr;
  }
}


.step-one-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
  align-items: stretch;
}

.step-one-card,
.step-one-shot-grid,
.step-one-shot-card {
  height: 100%;
}

.step-one-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.download-row .btn {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  text-align: center;
}

.step-one-shot-grid {
  grid-template-columns: 1fr;
}

.step-one-shot-card {
  display: flex;
  align-items: stretch;
}

.step-one-media {
  min-height: 100%;
  height: 100%;
  margin-bottom: 0;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
}

.step-one-media .shot-image {
  max-height: 190px;
}

.step-one-shot-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-one-shot-card .shot-media {
  width: 100%;
}

.step-one-shot-card .happ-logo {
  max-height: 176px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .step-one-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .download-row {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1100px) {
  .step-three-shot-card,
  .status-shot-card {
    padding: 20px;
  }

  .step-three-server {
      width: 88%;
      max-width: 100%;
  }

  .status-shot-image {
      max-width: 300px;
  }
}

@media (max-width: 720px) {
  .step-three-shot-card,
  .status-shot-card {
    padding: 16px;
  }

  .step-three-server {
      width: 86%;
      max-width: 100%;
  }

  .status-shot-image {
      max-width: 240px;
  }
}

@media (max-width: 1100px) {
  .variant-grid,
  .step-three-layout,
  .troubleshoot-grid-custom {
    grid-template-columns: 1fr;
  }
}


.troubleshoot-grid-custom {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
  align-items: stretch;
}

.troubleshoot-visual {
  min-width: 0;
  height: 100%;
}

.troubleshoot-shot-card {
  height: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.troubleshoot-shot-media {
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
}

.troubleshoot-shot-image {
  display: block;
  max-width: 90%;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}


/* Transparent visual cards for HAPP / server / connected / lighthouse images */
.step-one-shot-card,
.step-three-shot-card,
.status-shot-card,
.troubleshoot-shot-card {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.step-one-media,
.step-three-media-single,
.status-shot-media,
.troubleshoot-shot-media {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
