/* Compare pages — shared brand layout (getcenty.com) */
:root {
  --green: #0e7c86;
  --green-deep: #0a5a62;
  --green-soft: #e7f3f3;
  --ink: #0e0e0e;
  --charcoal: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #6b6b6b;
  --gray-200: #e5e5e5;
  --gray-50: #faf8f4;
  --white: #fff;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "DM Mono", "SF Mono", Menlo, monospace;
}

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

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 600;
  font-size: 18px;
}

.brand .brand-lockup + span,
.brand > span:not(.sr-only) {
  display: none;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--green-deep);
}

.nav-links a:hover {
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
}

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 124, 134, 0.22);
}

.compare-card {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.compare-card:hover {
  border-color: #9bd0d2;
  box-shadow: 0 4px 24px rgba(14, 124, 134, 0.08);
}

.compare-table tbody tr:hover td {
  background: var(--gray-50);
}

.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--gray-200);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 12px;
}

.h1 em {
  color: var(--green);
  font-style: italic;
}

.lead {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 720px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}

.compare-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  font-weight: 600;
  background: var(--gray-50);
}

.compare-table td:first-child {
  font-weight: 500;
  color: var(--charcoal);
  width: 28%;
}

.compare-table .centy {
  color: var(--green-deep);
  font-weight: 500;
}

.compare-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 8px;
}

.compare-nav a {
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  color: var(--gray-700);
}

.compare-nav a:hover,
.compare-nav a.active {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-deep);
}

.compare-cards {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.compare-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  background: #faf8f4;
}

.compare-card h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.compare-card h2 a {
  color: var(--ink);
}

.compare-card h2 a:hover {
  color: var(--green-deep);
}

.compare-card p {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.compare-card .link {
  font-size: 14px;
  font-weight: 500;
  color: var(--green-deep);
}

.cta-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  margin: 40px 0 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cta-box p {
  max-width: 480px;
  color: var(--gray-700);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 500;
}

.site-footer {
  padding: 32px 0 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-500);
}

.site-footer a {
  color: var(--gray-700);
}

.site-footer a:hover {
  color: var(--ink);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer-col-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-500);
}

.site-footer-col li {
  margin-bottom: 6px;
}
