/* Footer Widget Styles — Scoped under .common-footer */
.common-footer {
  --footer-bg: oklch(18% 0.04 260);
  --footer-fg: #fff;
  --footer-desc: rgba(255, 255, 255, 0.6);
  --footer-section-title: rgba(255, 255, 255, 0.5);
  --footer-item: rgba(255, 255, 255, 0.7);
  --footer-bottom-text: rgba(255, 255, 255, 0.4);
  --footer-bottom-border: rgba(255, 255, 255, 0.08);
  --footer-social-bg: rgba(255, 255, 255, 0.05);
  --footer-social-border: rgba(255, 255, 255, 0.1);
  --footer-social-hover: rgba(255, 255, 255, 0.1);
  --footer-font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --footer-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --footer-accent: oklch(58% 0.20 30);
  background:
    radial-gradient(ellipse at 100% 100%, oklch(58% 0.20 30 / 15%) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 50%, oklch(58% 0.20 30 / 5%) 0%, transparent 40%),
    #090f1d;
  color: var(--footer-fg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
  font-family: var(--footer-font-body);
}

.common-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.common-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .common-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.common-footer .footer-col h4 {
  font-family: var(--footer-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--footer-section-title);
  margin: 0 0 24px;
  font-weight: 600;
}

.common-footer .footer-logo {
  display: block;
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}

.common-footer .footer-description {
  color: var(--footer-desc);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.common-footer .footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.common-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--footer-item);
  margin-bottom: 16px;
}

.common-footer .footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--footer-item);
  line-height: 0;
}

.common-footer .footer-contact-icon svg {
  display: block;
}

.common-footer .footer-contact-item a {
  color: var(--footer-item);
  text-decoration: none;
  transition: color 0.2s;
}

.common-footer .footer-contact-item a:hover {
  color: #fff;
}

.common-footer .footer-social-links {
  display: flex;
  gap: 12px;
}

.common-footer .footer-social-btn {
  width: 40px;
  height: 40px;
  background: var(--footer-social-bg);
  border: 1px solid var(--footer-social-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}

.common-footer .footer-social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.common-footer .footer-social-btn:hover {
  background: var(--footer-social-hover);
  transform: translateY(-2px);
}

.common-footer .footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.common-footer .footer-links-list li {
  margin-bottom: 12px;
}

.common-footer .footer-links-list a {
  color: var(--footer-item);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.common-footer .footer-links-list a:hover {
  color: #fff;
}

.common-footer .footer-bottom {
  border-top: 1px solid var(--footer-bottom-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--footer-bottom-text);
}

.common-footer .footer-bottom-links {
  display: flex;
  gap: 24px;
}

.common-footer .footer-bottom-links a {
  color: var(--footer-bottom-text);
  text-decoration: none;
  transition: color 0.2s;
}

.common-footer .footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}