:root {
  --branch-accent: #4ea1ff;
  --branch-accent-rgb: 78, 161, 255;
}

.branches-hero.accent-red,
.branch-lookup-shell.accent-red {
  --branch-accent: #fb7185;
  --branch-accent-rgb: 251, 113, 133;
}

.branches-hero.accent-green,
.branch-lookup-shell.accent-green {
  --branch-accent: #34d399;
  --branch-accent-rgb: 52, 211, 153;
}

.branches-hero.accent-purple,
.branch-lookup-shell.accent-purple {
  --branch-accent: #a78bfa;
  --branch-accent-rgb: 167, 139, 250;
}

.branches-hero.accent-amber,
.branch-lookup-shell.accent-amber {
  --branch-accent: #f59e0b;
  --branch-accent-rgb: 245, 158, 11;
}

.branches-hero {
  position: relative;
  min-height: 590px;
  padding: 5.2rem 0 6.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(var(--branch-accent-rgb), 0.2), transparent 25%),
    linear-gradient(125deg, #05162c, #082b56 57%, #0b3fa8);
  overflow: hidden;
}

.branches-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 35%, transparent 92%);
}

.branches-hero-glow {
  position: absolute;
  right: -190px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(var(--branch-accent-rgb), 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(var(--branch-accent-rgb), 0.025),
    0 0 0 150px rgba(var(--branch-accent-rgb), 0.018);
}

.branches-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 3.6rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
}

.branches-breadcrumb a {
  color: rgba(255, 255, 255, 0.68);
}

.branches-breadcrumb a:hover,
.branches-breadcrumb strong {
  color: #fff;
}

.branches-breadcrumb i {
  font-size: 0.55rem;
}

.branches-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--branch-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.branches-kicker > i {
  width: 30px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
}

.branches-hero h1 {
  max-width: 750px;
  margin: 1rem 0 1.2rem;
  font-size: clamp(3rem, 6vw, 5.15rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.branches-hero h1::after {
  display: block;
  width: min(520px, 75%);
  height: 4px;
  margin-top: 1.25rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--branch-accent), transparent);
  content: "";
}

.branches-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.75;
}

.branches-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.branches-text-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
}

.branches-text-link:hover {
  color: #fff;
}

.branches-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: 2rem;
}

.branches-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 650;
}

.branches-trust-row i {
  color: var(--branch-accent);
}

.branches-registry-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.registry-ring {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(var(--branch-accent-rgb), 0.22);
  border-radius: 50%;
  animation: branch-ring-spin 20s linear infinite;
}

.registry-ring::before {
  position: absolute;
  top: 18%;
  left: 4%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--branch-accent);
  box-shadow: 0 0 20px var(--branch-accent);
  content: "";
}

.registry-ring.ring-two {
  inset: 22%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 14s;
}

.registry-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--branch-accent-rgb), 0.5), transparent);
  transform-origin: left center;
}

.registry-path.path-one {
  transform: rotate(32deg) translateX(-50%);
}

.registry-path.path-two {
  transform: rotate(145deg) translateX(-50%);
}

.registry-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: #0a2d5a;
  box-shadow: 0 0 0 7px rgba(var(--branch-accent-rgb), 0.08);
  animation: branch-node-pulse 3s ease-in-out infinite;
}

.registry-node.node-one { top: 14%; left: 30%; }
.registry-node.node-two { top: 33%; right: 7%; animation-delay: 0.7s; }
.registry-node.node-three { right: 19%; bottom: 12%; animation-delay: 1.2s; }
.registry-node.node-four { bottom: 19%; left: 9%; animation-delay: 1.8s; }

.registry-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 210px;
  height: 210px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(var(--branch-accent-rgb), 0.22), transparent 42%),
    rgba(5, 22, 44, 0.76);
  box-shadow: 0 28px 65px rgba(0, 8, 24, 0.38);
  transform: translate(-50%, -50%) translateZ(30px);
  backdrop-filter: blur(15px);
}

.registry-core > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 0.8rem;
  color: #06172d;
  border-radius: 19px;
  background: var(--branch-accent);
  box-shadow: 0 13px 30px rgba(var(--branch-accent-rgb), 0.25);
  font-size: 1.55rem;
}

.registry-core small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.53rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.registry-core strong {
  margin-top: 0.2rem;
  color: #fff;
  font-size: 1rem;
}

.registry-signal {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 18px;
  margin-top: 0.8rem;
}

.registry-signal i {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--branch-accent);
  animation: branch-signal 1.3s ease-in-out infinite alternate;
}

.registry-signal i:nth-child(1) { height: 35%; }
.registry-signal i:nth-child(2) { height: 60%; animation-delay: 0.15s; }
.registry-signal i:nth-child(3) { height: 80%; animation-delay: 0.3s; }
.registry-signal i:nth-child(4) { height: 100%; animation-delay: 0.45s; }

.registry-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  color: var(--skiisy-text);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 17px 38px rgba(0, 8, 24, 0.25);
  transform: translateZ(45px);
}

.registry-badge > i {
  color: var(--branch-accent);
  font-size: 1.15rem;
}

.registry-badge small,
.registry-badge strong {
  display: block;
}

.registry-badge small {
  color: var(--skiisy-muted);
  font-size: 0.5rem;
}

.registry-badge strong {
  font-size: 0.62rem;
}

.registry-badge.badge-status {
  top: 17%;
  right: -3%;
}

.registry-badge.badge-location {
  bottom: 13%;
  left: -4%;
  animation: branch-badge-float 4s ease-in-out infinite;
}

.branches-service-switcher {
  position: relative;
  z-index: 4;
  margin-top: -2.4rem;
}

.branches-switch-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.6rem;
  border: 1px solid var(--skiisy-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(9, 32, 63, 0.11);
}

.branches-switch-shell > a {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: var(--skiisy-text);
  border-radius: 16px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.branches-switch-shell > a:hover {
  color: var(--skiisy-text);
  background: #f5f8fc;
  transform: translateY(-2px);
}

.branches-switch-shell > a.active {
  color: #fff;
  background: var(--skiisy-navy);
}

.switch-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--skiisy-primary);
  border-radius: 14px;
  background: #eaf1ff;
  font-size: 1.15rem;
}

.accent-red .switch-icon {
  color: #e11d48;
  background: #fff0f3;
}

.accent-green .switch-icon {
  color: #059669;
  background: #ecfdf5;
}

.accent-purple .switch-icon {
  color: #7c3aed;
  background: #f3f0ff;
}

.accent-amber .switch-icon {
  color: #b45309;
  background: #fff7ed;
}

.branches-switch-shell small,
.branches-switch-shell strong,
.branches-switch-shell p {
  display: block;
}

.branches-switch-shell small {
  color: var(--skiisy-primary);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branches-switch-shell strong {
  margin-top: 0.15rem;
  font-size: 0.78rem;
}

.branches-switch-shell p {
  margin: 0.2rem 0 0;
  color: var(--skiisy-muted);
  font-size: 0.58rem;
}

.branches-switch-shell > a.active small {
  color: var(--branch-accent);
}

.branches-switch-shell > a.active p {
  color: rgba(255, 255, 255, 0.48);
}

.switch-arrow {
  color: var(--skiisy-muted);
}

.branches-switch-shell > a.active .switch-arrow {
  color: #fff;
}

.branch-lookup-section {
  background:
    radial-gradient(circle at 9% 35%, rgba(21, 94, 239, 0.05), transparent 24%),
    #f7f9fc;
}

.branch-lookup-shell {
  overflow: hidden;
  border: 1px solid var(--skiisy-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 75px rgba(9, 32, 63, 0.09);
}

.branch-lookup-context {
  position: relative;
  height: 100%;
  min-height: 620px;
  padding: 3.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(var(--branch-accent-rgb), 0.19), transparent 30%),
    linear-gradient(145deg, #071a35, #0a2d5a);
  overflow: hidden;
}

.branch-lookup-context::after {
  position: absolute;
  right: -160px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(var(--branch-accent-rgb), 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(var(--branch-accent-rgb), 0.03),
    0 0 0 130px rgba(var(--branch-accent-rgb), 0.018);
  content: "";
}

.context-index {
  position: absolute;
  top: 1.7rem;
  right: 1.9rem;
  color: rgba(255, 255, 255, 0.14);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.branch-lookup-context h2 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 1.2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.branch-lookup-context > p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  line-height: 1.75;
}

.branch-check-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin-top: 2.2rem;
}

.branch-check-points > div {
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.branch-check-points > div > i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: #071a35;
  border-radius: 10px;
  background: var(--branch-accent);
  font-size: 0.8rem;
}

.branch-check-points strong,
.branch-check-points small {
  display: block;
}

.branch-check-points strong {
  color: #fff;
  font-size: 0.68rem;
}

.branch-check-points small {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.56rem;
  line-height: 1.45;
}

.branch-office-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.branch-office-note > i {
  color: var(--branch-accent);
}

.branch-office-note small,
.branch-office-note strong {
  display: block;
}

.branch-office-note small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.53rem;
}

.branch-office-note strong {
  max-width: 360px;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.62rem;
  line-height: 1.5;
}

.branch-form-panel {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem clamp(2rem, 5vw, 5rem);
}

.branch-form-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.branch-form-heading > span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--branch-accent);
  border-radius: 17px;
  background: rgba(var(--branch-accent-rgb), 0.11);
  font-size: 1.4rem;
}

.branch-form-heading small {
  display: block;
  color: var(--skiisy-primary);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.branch-form-heading h2 {
  margin: 0.2rem 0 0;
  color: var(--skiisy-navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.branch-form-heading p {
  margin: 0.45rem 0 0;
  color: var(--skiisy-muted);
  font-size: 0.66rem;
  line-height: 1.55;
}

.branch-lookup-form .form-label {
  margin-bottom: 0.55rem;
  color: #34445d;
  font-size: 0.68rem;
  font-weight: 700;
}

.branch-input-wrap {
  position: relative;
}

.branch-input-wrap > i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 1rem;
  color: #8b99aa;
  transform: translateY(-50%);
}

.branch-input-wrap .form-control {
  min-height: 58px;
  padding: 0.8rem 1rem 0.8rem 2.85rem;
  border-color: #dce3ec;
  border-radius: 14px;
  background: #fbfcfe;
  font-size: 0.76rem;
}

.branch-input-wrap .form-control:focus {
  border-color: rgba(var(--branch-accent-rgb), 0.48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--branch-accent-rgb), 0.09);
}

.branch-input-wrap:focus-within > i {
  color: var(--branch-accent);
}

.branch-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--skiisy-muted);
  font-size: 0.63rem;
  line-height: 1.5;
}

.branch-confirmation input {
  margin-top: 0.15rem;
  accent-color: var(--skiisy-primary);
}

.was-validated .branch-confirmation:has(input:invalid) + .invalid-feedback {
  display: block;
}

.branch-submit-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.75rem 0.75rem 1.3rem;
  color: #fff;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(105deg, var(--skiisy-primary), #0b3fa8);
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.22);
  font-size: 0.75rem;
  font-weight: 750;
  overflow: hidden;
}

.accent-red .branch-submit-button {
  background: linear-gradient(105deg, #e11d48, #9f1239);
  box-shadow: 0 14px 30px rgba(225, 29, 72, 0.2);
}

.accent-green .branch-submit-button {
  background: linear-gradient(105deg, #059669, #065f46);
  box-shadow: 0 14px 30px rgba(5, 150, 105, 0.2);
}

.accent-purple .branch-submit-button {
  background: linear-gradient(105deg, #7c3aed, #4c1d95);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.2);
}

.accent-amber .branch-submit-button {
  background: linear-gradient(105deg, #d97706, #92400e);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.2);
}

.branch-submit-button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.branch-submit-button > i {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.14);
}

.branch-form-response {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(var(--branch-accent-rgb), 0.2);
  border-radius: 14px;
  background: rgba(var(--branch-accent-rgb), 0.07);
  animation: branch-response-enter 0.35s ease both;
}

.branch-form-response[hidden] {
  display: none;
}

.branch-form-response > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--branch-accent);
  border-radius: 10px;
  background: #fff;
}

.branch-form-response strong {
  display: block;
  color: var(--skiisy-navy);
  font-size: 0.67rem;
}

.branch-form-response p {
  margin: 0.2rem 0 0;
  color: var(--skiisy-muted);
  font-size: 0.59rem;
  line-height: 1.55;
}

.branch-form-response button {
  color: var(--skiisy-muted);
  border: 0;
  background: transparent;
}

.branch-security-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.branch-security-note > i {
  color: #10b981;
  font-size: 0.72rem;
}

.branch-security-note strong,
.branch-security-note small {
  display: block;
}

.branch-security-note strong {
  color: #56657a;
  font-size: 0.59rem;
}

.branch-security-note small {
  margin-top: 0.12rem;
  color: #8a97a8;
  font-size: 0.55rem;
  line-height: 1.5;
}

.branch-guidance-section {
  background: #fff;
}

.branch-guidance-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--skiisy-border);
  border-radius: 19px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.branch-guidance-card:hover {
  border-color: rgba(21, 94, 239, 0.22);
  box-shadow: 0 20px 42px rgba(9, 32, 63, 0.08);
  transform: translateY(-5px);
}

.branch-guidance-card > span {
  position: absolute;
  top: 1.3rem;
  right: 1.4rem;
  color: #edf1f7;
  font-size: 2.6rem;
  font-weight: 800;
}

.branch-guidance-card > i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--skiisy-primary);
  border-radius: 14px;
  background: #eaf1ff;
  font-size: 1.15rem;
}

.branch-guidance-card h3 {
  margin: 1.4rem 0 0.6rem;
  color: var(--skiisy-navy);
  font-size: 1rem;
  font-weight: 750;
}

.branch-guidance-card p {
  margin: 0;
  color: var(--skiisy-muted);
  font-size: 0.73rem;
  line-height: 1.65;
}

.branches-support-cta {
  padding: 3.5rem 0;
  color: #fff;
  background: linear-gradient(105deg, #0b3fa8, #155eef);
}

.branches-support-cta span {
  color: #8edfff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.branches-support-cta h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

@keyframes branch-ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes branch-node-pulse {
  50% { box-shadow: 0 0 0 13px rgba(var(--branch-accent-rgb), 0); }
}

@keyframes branch-signal {
  to { opacity: 0.4; transform: scaleY(0.55); }
}

@keyframes branch-badge-float {
  50% { transform: translateY(-8px) translateZ(45px); }
}

@keyframes branch-response-enter {
  from { opacity: 0; transform: translateY(-8px); }
}

@media (max-width: 991.98px) {
  .branches-hero {
    min-height: auto;
    padding: 4.5rem 0 5.8rem;
  }

  .branches-breadcrumb {
    margin-bottom: 2.8rem;
  }

  .branches-registry-visual {
    width: min(380px, 90vw);
  }

  .branch-lookup-context {
    min-height: auto;
    padding: 3rem;
  }

  .branch-form-panel {
    min-height: 540px;
    padding: 3rem;
  }
}

@media (max-width: 767.98px) {
  .branches-hero {
    padding: 3.5rem 0 5rem;
  }

  .branches-breadcrumb {
    margin-bottom: 2.2rem;
    overflow: hidden;
    white-space: nowrap;
  }

  .branches-breadcrumb strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .branches-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .branches-hero p {
    font-size: 0.86rem;
  }

  .branches-registry-visual {
    width: min(330px, 90vw);
  }

  .registry-core {
    width: 175px;
    height: 175px;
  }

  .registry-badge.badge-status {
    right: 0;
  }

  .registry-badge.badge-location {
    left: 0;
  }

  .branches-service-switcher {
    margin-top: -1.8rem;
  }

  .branches-switch-shell {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .branches-switch-shell > a {
    padding: 0.9rem;
  }

  .branch-lookup-shell {
    border-radius: 22px;
  }

  .branch-lookup-context,
  .branch-form-panel {
    padding: 2.2rem 1.4rem;
  }

  .branch-lookup-context h2 {
    font-size: 2.15rem;
  }

  .branch-form-panel {
    min-height: auto;
  }

  .branches-support-cta {
    text-align: center;
  }
}

@media (max-width: 419.98px) {
  .branches-trust-row span {
    width: 100%;
  }

  .branches-registry-visual {
    width: 290px;
  }

  .registry-badge {
    padding: 0.65rem 0.7rem;
  }

  .registry-badge.badge-status {
    top: 10%;
  }

  .registry-badge.badge-location {
    bottom: 7%;
  }

  .branch-form-heading {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .registry-ring,
  .registry-node,
  .registry-signal i,
  .registry-badge.badge-location {
    animation: none;
  }

  .branches-registry-visual,
  .branches-switch-shell > a,
  .branch-guidance-card {
    transition: none;
  }
}
