:root {
  --bg: #f5f3f3;
  --text: #4a4a4a;
  --text-secondary: #7a7a7a;
  --accent: #c9a0a0;
  --accent-light: #e8c4c4;
  --white: #ffffff;
  --border: #e0dddd;
  --max-legal: 720px;
  --max-landing: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
}

.header-inner {
  max-width: var(--max-landing);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-header {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

main {
  flex: 1;
  width: 100%;
}

.container {
  max-width: var(--max-landing);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.container--legal {
  max-width: var(--max-legal);
}

.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.hero {
  padding-top: 1rem;
}

.logo-hero {
  max-width: min(520px, 92vw);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.hero .lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn:hover {
  background: #b89090;
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn--secondary:hover {
  background: var(--accent-light);
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--accent);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.audience {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.trust-banner {
  background: var(--accent-light);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
}

.trust-banner a {
  color: var(--text);
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin: 0 0 0.25rem;
}

.legal-page .meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--text);
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--accent);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 2rem 1.25rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-landing);
  margin: 0 auto;
  text-align: center;
}

.footer-logo-wrap {
  margin-bottom: 1.25rem;
}

.footer-logo-wrap.no-footer-logo {
  display: none;
}

.footer-logo {
  max-height: 56px;
  width: auto;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}

.pricing-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.pricing-intro h1 {
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(201, 160, 160, 0.15);
}

.pricing-badge {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.pricing-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.pricing-price {
  margin: 0;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-period,
.pricing-period-inline {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-period-inline {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-alt {
  margin: 0.25rem 0 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-features em {
  color: var(--text-secondary);
  font-style: normal;
  font-size: 0.85rem;
}

.btn--block {
  display: block;
  text-align: center;
  width: 100%;
}

.pricing-faq h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .site-nav {
    width: 100%;
    justify-content: center;
  }

  .header-inner {
    justify-content: center;
  }
}
