.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 42, 0, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.brand-subtitle {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 10px 24px rgba(255, 90, 0, 0.22);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 90, 0, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.meta-box {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.meta-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8ea0b5;
}

.meta-value {
  margin: 0.45rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.service-card {
  padding: 1.25rem;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.95), rgba(255, 42, 0, 0.9));
  margin-bottom: 0.9rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-card p,
.footer-links a {
  color: var(--muted);
}

.service-card p {
  margin: 0.7rem 0 0;
  font-size: 0.97rem;
}

@media (max-width: 960px) {
  .hero-copy,
  .form-panel {
    padding: 1.2rem;
  }
}

@media (max-width: 720px) {
  .brand {
    justify-content: center;
  }

  .brand-copy {
    text-align: center;
  }

  .nav {
    justify-content: center;
  }

  .button {
    width: 100%;
  }
}
