/*
 * Hire IT Expert — Homepage CSS
 * ==========================================================================
 * Section-specific layout rules and animations for the 16 homepage sections.
 */

/* ─── Hero Section (1) ─────────────────────────────────────────────────── */
.hero {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0) 50%), radial-gradient(circle at 10% 80%, rgba(99, 102, 241, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  position: relative;
}

@media (min-width: 768px) {
  .hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  margin-bottom: var(--space-2);
}

.hero__title {
  margin-bottom: var(--space-4);
  color: var(--color-heading);
}

.hero__desc {
  margin-bottom: var(--space-6);
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: var(--font-size-lg);
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
  position: relative;
  background-color: var(--color-bg-alt);
  transition: all var(--transition-slow);
}

.hero__image:hover {
  transform: scale(1.02) rotate(0.5deg);
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.15);
}

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

/* ─── Service Finder Section (2) ────────────────────────────────────────── */
/* Glowing Background Blobs for Service Finder */
.sf-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.sf-blob--1 {
  top: -15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: var(--color-primary);
}

.sf-blob--2 {
  bottom: -15%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: #8b5cf6;
}

.service-finder__form {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: var(--space-6);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .service-finder__form {
    padding: var(--space-8);
  }
}

.service-finder__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: end; /* align fields perfectly at the bottom line */
}

.service-finder__fields .form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.service-finder__fields .form-label {
  min-height: 32px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .service-finder__fields {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .service-finder__fields {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Inline SVG Input Wrapper */
.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.form-input-wrapper svg {
  position: absolute;
  left: var(--space-4);
  color: #94a3b8;
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: color 0.25s ease;
}

.form-input-wrapper .form-input,
.form-input-wrapper .form-select {
  padding-left: 2.8rem !important;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  height: 48px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input-wrapper .form-input:focus,
.form-input-wrapper .form-select:focus {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-input-wrapper:focus-within svg {
  color: var(--color-primary);
}

.service-finder__submit {
  text-align: center;
}

.service-finder__submit .btn {
  width: 100%;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  border: none;
  transition: all 0.25s ease;
}

.service-finder__submit .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

@media (min-width: 768px) {
  .service-finder__submit .btn {
    width: auto;
    padding: 0 var(--space-8);
  }
}

.service-finder__note {
  text-align: center;
  margin-top: var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

#finder-result {
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: var(--font-semibold);
  font-size: var(--font-size-sm);
  display: none;
}

#finder-result.show {
  display: block;
  animation: fadeIn 0.3s ease-out forwards;
}

#finder-result.success {
  background-color: var(--color-success-light);
  color: var(--color-success);
  border: 1px solid var(--color-success);
}

#finder-result.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ─── Popular Service Categories (3) ────────────────────────────────────── */
.service-categories__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .service-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .service-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─── Home & Business Tabs (4) ──────────────────────────────────────────── */
.home-business__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background-color: var(--color-bg-alt);
}

.home-business__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── How It Works (5) ──────────────────────────────────────────────────── */
.how-it-works__steps {
  position: relative;
}

@media (min-width: 1024px) {
  .how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }

  /* Connecting line between step numbers on desktop */
  .how-it-works__steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background-color: var(--color-border);
    z-index: 0;
  }
}

@media (max-width: 1023px) {
  .how-it-works__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  @media (min-width: 640px) {
    .how-it-works__steps {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}

.how-it-works__steps .step-card {
  z-index: 1;
}

.how-it-works__cta {
  margin-top: var(--space-10);
  text-align: center;
}

/* ─── Store & Home Visit (8) ────────────────────────────────────────────── */
.store-visit__card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  height: 100%;
}

.store-visit__card h3 {
  margin-bottom: 0;
}

.store-visit__card p {
  margin-bottom: 0;
  color: var(--color-text-light);
  line-height: 1.6;
}

.store-visit__card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.store-visit__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  font-style: italic;
}

/* ─── CCTV Feature (9) ──────────────────────────────────────────────────── */
.cctv-feature {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: var(--space-20) 0;
  overflow: hidden;
  position: relative;
}

.cctv-feature::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cctv-feature__content {
  display: flex;
  flex-direction: column;
}

.cctv-feature__content .eyebrow {
  color: var(--color-primary);
}

.cctv-feature__content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cctv-feature__content > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-base);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cctv-feature__content > p {
    font-size: var(--font-size-lg);
  }
}

.cctv-feature__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
}

.cctv-feature__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-base);
}

.cctv-feature__features li svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.cctv-feature__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4/3;
  background-color: #1e293b;
}

.cctv-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── London Coverage (10) ──────────────────────────────────────────────── */
.coverage-map__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background-color: #0f172a;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* SVG Connecting Network Lines */
.network-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.network-line {
  stroke: rgba(59, 130, 246, 0.4);
  stroke-width: 2px;
  stroke-dasharray: 8 4;
  animation: network-dash 8s linear infinite;
}

@keyframes network-dash {
  to {
    stroke-dashoffset: -120;
  }
}

/* Central Trust Hub Badge */
.trust-hub-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-hub-badge__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(37, 99, 235, 0) 70%);
  animation: trust-pulse 3s infinite;
}

@keyframes trust-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
}

.trust-hub-badge__content {
  position: relative;
  width: 84px;
  height: 84px;
  background: radial-gradient(circle, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  border: 2px solid #60a5fa;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
}

.trust-hub-number {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.trust-hub-label {
  color: #93c5fd;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.trust-hub-stars {
  color: #fbbf24;
  font-size: 10px;
  margin-top: 1px;
  letter-spacing: 1px;
}

/* Technician Corner Nodes */
.tech-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  transition: transform 0.3s ease;
}

.tech-node:hover {
  transform: scale(1.08);
}

.tech-node--tl { top: 12%; left: 12%; }
.tech-node--tr { top: 12%; right: 12%; }
.tech-node--bl { bottom: 12%; left: 12%; }
.tech-node--br { bottom: 12%; right: 12%; }

.tech-node__avatar-wrapper {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #2563eb;
  background-color: #1e293b;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 8px rgba(37, 99, 235, 0.4);
}

.tech-node__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-node__label {
  margin-top: 6px;
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

.london-coverage__regions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.london-coverage__regions h3 {
  margin-bottom: 0;
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-heading);
}

.london-coverage__regions p {
  margin-bottom: 0;
}

/* ─── Final CTA Section (16) ────────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .final-cta p {
    font-size: var(--font-size-lg);
  }
}

.final-cta__actions {
  justify-content: center;
}

/* Hero Brand Operations Dashboard */
.hero__brand-dashboard {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2/1;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background-color: #0f172a;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.brand-dashboard__status-badge {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 8px;
  font-weight: 800;
  font-family: monospace;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.4);
    opacity: 0.4;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@media (max-width: 768px) {
  .hero__brand-dashboard {
    aspect-ratio: 1.1/1;
  }
}

.brand-dashboard__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.brand-dashboard__line {
  stroke: rgba(59, 130, 246, 0.45);
  stroke-width: 2px;
  stroke-dasharray: 6 3;
  animation: hero-network-dash 6s linear infinite;
}

.brand-dashboard__line-glow {
  stroke: #2563eb;
  stroke-width: 5px;
  opacity: 0.15;
  filter: blur(3px);
}

@keyframes hero-network-dash {
  to {
    stroke-dashoffset: -90;
  }
}

/* Central Brand Shield Hub */
.brand-dashboard__hub {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-dashboard__hub-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0) 70%);
  animation: brand-hub-pulse 3s infinite;
}

@keyframes brand-hub-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.85);
    opacity: 0.8;
  }
}

.brand-dashboard__hub-content {
  position: relative;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #1d4ed8 0%, #1e3a8a 100%);
  border-radius: 50%;
  border: 3px solid #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.hub-rotating-ring {
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(96, 165, 250, 0.6);
  border-radius: 50%;
  animation: hub-rotate 12s linear infinite;
  pointer-events: none;
}

@keyframes hub-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.brand-dashboard__logo-icon {
  width: 28px;
  height: 28px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.brand-dashboard__hub-title {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 4px;
  line-height: 1;
}

.brand-dashboard__hub-subtitle {
  color: #93c5fd;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* Service Nodes */
.brand-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  background: rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: var(--space-3) var(--space-2);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
}

.brand-node:hover {
  transform: translate(-50%, -52%) scale(1.04);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(59, 130, 246, 0.2);
}

.brand-node--tl { top: 22%; left: 20%; }
.brand-node--tr { top: 22%; left: 80%; }
.brand-node--bl { top: 70%; left: 20%; }
.brand-node--br { top: 70%; left: 80%; }

.brand-node__icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}

.brand-node__icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.brand-node__icon-wrapper--blue {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
  color: #3b82f6;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.1);
}
.brand-node__icon-wrapper--purple {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #a78bfa;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
}
.brand-node__icon-wrapper--orange {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  color: #fb923c;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.1);
}
.brand-node__icon-wrapper--teal {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
  color: #2dd4bf;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.1);
}

.brand-node__title {
  color: #f1f5f9;
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: -0.01em;
}

.brand-node__badge {
  font-size: 8px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 6px;
  margin-top: 3px;
  text-transform: uppercase;
}

.brand-node__badge--green { background-color: rgba(16, 185, 129, 0.2); color: #34d399; }
.brand-node__badge--blue { background-color: rgba(37, 99, 235, 0.2); color: #60a5fa; }
.brand-node__badge--orange { background-color: rgba(249, 115, 22, 0.2); color: #fb923c; }
.brand-node__badge--teal { background-color: rgba(20, 184, 166, 0.2); color: #2dd4bf; }

.brand-dashboard__trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 8px var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  z-index: 3;
}

.brand-dashboard__trust-sep {
  color: rgba(255,255,255,0.15);
}
