.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--color-brand) 0%,
    var(--color-accent) 100%
  );
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-nav a,
.legal-sidebar a,
.footer-grid a,
.legal-links a,
.inline-link {
  text-decoration: none;
  color: var(--color-muted);
}

.site-nav a:hover,
.legal-sidebar a:hover,
.footer-grid a:hover,
.legal-links a:hover,
.inline-link:hover {
  color: var(--color-brand-deep);
}

.nav-toggle {
  display: none;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.88);
  color: var(--color-text);
  cursor: pointer;
}

.eyebrow {
  margin: 0;
  color: var(--color-brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--color-brand);
  color: #fff;
}

.button--primary:hover {
  background: var(--color-brand-deep);
}

.button--secondary {
  border-color: var(--color-border-strong);
  background: rgba(255, 252, 246, 0.75);
  color: var(--color-text);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button--small {
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
}

.feature-grid,
.pricing-grid,
.legal-links,
.trust-items {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.price-card,
.panel,
.app-card,
.legal-sidebar,
.legal-content,
.compliance-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.feature-card,
.price-card,
.compliance-panel,
.legal-content,
.app-card {
  padding: 1.75rem;
}

.price-card--featured {
  background: linear-gradient(
    180deg,
    rgba(15, 118, 110, 0.08),
    rgba(255, 250, 240, 0.98)
  );
  border-color: rgba(15, 118, 110, 0.28);
}

.price-tag {
  margin: 0.8rem 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
}

.price-note,
.muted,
.footer-grid p,
.footer-bottom p,
.legal-updated,
.status-text,
.form-hint {
  color: var(--color-muted);
}

.list-clean,
.feature-list,
.workflow-list,
.hero-proof {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.workflow-list li,
.hero-proof li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
}

.feature-list li::before,
.workflow-list li::before,
.hero-proof li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.footer-title,
.footer-brand {
  margin: 0 0 0.9rem;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(17, 33, 31, 0.94);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.cookie-banner[hidden] {
  display: none;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.input,
.textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.textarea {
  min-height: 10rem;
  resize: vertical;
}

.notice {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--color-accent-soft);
  border: 1px solid rgba(217, 119, 6, 0.22);
}

.notice--danger {
  background: rgba(171, 47, 47, 0.08);
  border-color: rgba(171, 47, 47, 0.18);
  color: var(--color-danger);
}

.notice--success {
  background: rgba(23, 99, 63, 0.08);
  border-color: rgba(23, 99, 63, 0.18);
  color: var(--color-success);
}

.result-meta {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    inset-inline: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
}
