:root {
  --bg: #ffffff;
  --text: #1b1f23;
  --muted: #5b6470;
  --brand: #2e5bff;
  --accent: #f4f6fb;
  --border: #e4e8ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  padding: 8px 12px;
  border: 1px solid var(--border);
  z-index: 5;
}

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

.hero {
  padding: 64px 0;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

.btn {
  display: inline-block;
  margin-top: 16px;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card,
.article {
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 10px;
  background: #fff;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cookies-table th,
.cookies-table td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
}

.articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 16px;
  border-left: 3px solid var(--brand);
  background: #fff;
}

.form {
  max-width: 640px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 8px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin: 10px 0;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.faq-item {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.faq-panel {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-subscribe {
  display: grid;
  gap: 10px;
}

.footer-subscribe-row {
  display: flex;
  gap: 8px;
}

.footer-subscribe-row input {
  flex: 1;
}

.footer-subscribe-row button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hidden {
  display: none;
}

@media (max-width: 820px) {
  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .footer-subscribe-row {
    flex-direction: column;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
