/* Shared layout for SEO landing & comparison pages */
:root {
  --brand-cyan: #18e2df;
  --ink: #0f1115;
  --light: #ffffff;
  --footer-link: #0a5c5a;
  --font-headline: "Barlow Condensed", sans-serif;
  --glass: rgba(255, 255, 255, 0.78);
}

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

html {
  scroll-behavior: smooth;
  font-size: 112.5%;
}

body {
  font-family: "Nunito", sans-serif;
  background: linear-gradient(165deg, #18e2df 0%, #52ebe7 35%, #b8fffc 100%);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.55;
}

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

a {
  color: var(--footer-link);
  font-weight: 700;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #151922, #0f1115);
  color: var(--light);
  border-bottom: 2px solid rgba(24, 226, 223, 0.35);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand h1 {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand p {
  font-size: 0.72rem;
  opacity: 0.85;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.site-nav a {
  color: #eafffe;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--brand-cyan);
}

.site-nav .nav-cta {
  background: var(--brand-cyan);
  color: var(--ink) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

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

.page-hero h1 {
  font-family: var(--font-headline);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.15;
  max-width: 20ch;
  margin: 0 auto 0.75rem;
}

.page-hero .lead {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--brand-cyan);
  border-color: var(--ink);
}

.btn-ghost {
  background: var(--glass);
  color: var(--ink);
  border-color: rgba(15, 17, 21, 0.15);
  backdrop-filter: blur(8px);
}

.content-section {
  padding: 1.5rem 0 2.5rem;
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 18px 45px rgba(10, 18, 24, 0.1);
  backdrop-filter: blur(14px);
}

.glass-card h2 {
  font-family: var(--font-headline);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.glass-card h3 {
  font-size: 1.05rem;
  margin: 1rem 0 0.4rem;
}

.glass-card p,
.glass-card li {
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.glass-card ul {
  padding-left: 1.25rem;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid rgba(15, 17, 21, 0.1);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(15, 17, 21, 0.06);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table .col-ass {
  background: rgba(24, 226, 223, 0.2);
  font-weight: 700;
}

.compare-table .yes {
  color: #0a5c5a;
  font-weight: 800;
}

.compare-table .no {
  color: rgba(15, 17, 21, 0.45);
}

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

.feature-tile {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(15, 17, 21, 0.08);
}

.feature-tile strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0a5c5a;
}

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

.media-row img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 2px solid rgba(15, 17, 21, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.media-row figcaption {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  color: rgba(15, 17, 21, 0.75);
}

.faq details {
  background: var(--glass);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(15, 17, 21, 0.08);
}

.faq summary {
  font-weight: 800;
  cursor: pointer;
}

.cta-band {
  text-align: center;
  padding: 2rem 0 3rem;
}

.cta-band h2 {
  font-family: var(--font-headline);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.75rem;
}

.breadcrumb {
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: inherit;
}

.site-footer {
  margin-top: auto;
  background: linear-gradient(180deg, #b8fffc, #52ebe7 45%, #24dcd8);
  color: var(--ink);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr auto;
  }
}

.footer-nav-links {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.footer-nav-links a {
  text-decoration: none;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 1rem;
  line-height: 1.45;
}
