/* BAFF SEO Landing Sites — shared design system */
:root {
  --baff-ink: #023134;
  --baff-teal: #026266;
  --baff-deep: #024a4d;
  --baff-mint: #20b486;
  --baff-gold: #dea856;
  --baff-gold-soft: #fff5e5;
  --baff-fog: #f9ffff;
  --baff-mist: #e6e6e3;
  --baff-muted: #7c7c7c;
  --baff-body: #3d3d3d;
  --baff-surface: #f2fffe;
  --baff-warm: #fffaf2;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(2, 49, 52, 0.12);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--baff-body);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(32, 180, 134, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(222, 168, 86, 0.14), transparent 55%),
    linear-gradient(180deg, var(--baff-warm) 0%, var(--baff-surface) 42%, #fff 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--baff-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--baff-mint);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--baff-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(249, 255, 255, 0.88);
  border-bottom: 1px solid rgba(2, 49, 52, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--baff-ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand span {
  font-size: 1.15rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(0deg, #023134 22%, #024a4d 63%, #026266 95.5%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(2, 98, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(32, 180, 134, 0.35);
  color: #fff !important;
}

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--baff-teal);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--baff-gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--baff-ink);
  margin: 0 0 1rem;
}

.hero .lede {
  font-size: 1.08rem;
  color: var(--baff-body);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(0deg, #023134 22%, #024a4d 63%, #026266 95.5%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 650;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(2, 98, 102, 0.28);
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--baff-ink) !important;
  text-decoration: none;
  font-weight: 600;
  padding: 0.88rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(2, 49, 52, 0.15);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--baff-mint);
  background: var(--baff-fog);
  color: var(--baff-ink) !important;
}

.trust-note {
  font-size: 0.88rem;
  color: var(--baff-muted);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 480px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -8% -8% auto;
  width: 45%;
  height: 45%;
  background: radial-gradient(circle, rgba(32, 180, 134, 0.35), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  left: 1rem;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--baff-ink);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fade-up 0.7s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}
.reveal-delay-2 {
  animation-delay: 0.24s;
}

/* Sections */
section {
  padding: 3.75rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  color: var(--baff-ink);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: var(--baff-muted);
}

.band {
  background: linear-gradient(135deg, var(--baff-ink), var(--baff-deep) 55%, var(--baff-teal));
  color: #e8fffb;
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.band h2,
.band h3 {
  color: #fff;
}

.band a {
  color: var(--baff-gold);
}

.band a:hover {
  color: #fff;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(2, 49, 52, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--baff-gold-soft);
  color: var(--baff-ink);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--baff-ink);
}

.step p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--baff-muted);
}

/* Split content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  color: var(--baff-ink);
  margin: 0 0 0.85rem;
}

.split p {
  margin: 0 0 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.65rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--baff-mint);
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--baff-mint);
}

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(2, 49, 52, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
}

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

table.compare th,
table.compare td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--baff-mist);
}

table.compare th {
  background: var(--baff-ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

table.compare th.highlight,
table.compare td.highlight {
  background: rgba(32, 180, 134, 0.12);
}

table.compare th.highlight {
  background: var(--baff-mint);
  color: #fff;
}

table.compare tr:last-child td {
  border-bottom: none;
}

table.compare td.yes {
  color: var(--baff-teal);
  font-weight: 600;
}

table.compare td.no {
  color: #a35;
}

.price-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(222, 168, 86, 0.45);
  border-radius: 18px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.price-callout .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--baff-ink);
  line-height: 1;
}

.price-callout .amount small {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--baff-mint);
  letter-spacing: 0.02em;
}

/* FAQ */
.faq details {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(2, 49, 52, 0.08);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--baff-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--baff-mint);
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0.85rem 0 0.25rem;
  color: var(--baff-body);
}

/* CTA final */
.final-cta {
  text-align: center;
  padding: 3rem 1.5rem;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin: 0 0 0.75rem;
}

.final-cta p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
}

.store-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.store-badges img {
  height: 42px;
  width: auto;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(2, 49, 52, 0.08);
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--baff-ink);
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  text-decoration: none;
  color: var(--baff-muted);
}

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

.copyright {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(2, 49, 52, 0.08);
  font-size: 0.82rem;
  color: var(--baff-muted);
}

.pixabay-credit {
  font-size: 0.75rem;
  color: var(--baff-muted);
  margin-top: 0.5rem;
}

/* Prose SEO content */
.prose h2 {
  font-family: var(--font-display);
  color: var(--baff-ink);
  font-size: 1.45rem;
  margin: 2rem 0 0.75rem;
}

.prose h3 {
  font-family: var(--font-display);
  color: var(--baff-ink);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

.prose p {
  margin: 0 0 1rem;
}

.keyword-chip {
  display: inline-block;
  background: var(--baff-gold-soft);
  color: var(--baff-ink);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin: 0.2rem 0.25rem 0.2rem 0;
}

/* Mobile */
@media (max-width: 900px) {
  .hero,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .price-callout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-cta span.hide-sm {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
