:root {
  --bg: #06070a;
  --bg-2: #0b0d12;
  --surface: rgba(19, 22, 30, 0.82);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #f8fafc;
  --muted: #b8c0cf;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ff9d12;
  --accent-2: #ff6a00;
  --accent-3: #ffd18a;
  --green: #48e88b;
  --blue: #6ca7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --glow: 0 0 44px rgba(255, 122, 24, 0.32);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 122, 24, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(255, 157, 18, 0.11), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 42%, var(--bg));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  opacity: 0.42;
  z-index: 0;
}

main, .site-header, .site-footer {
  position: relative;
  z-index: 2;
}

.mouse-glow {
  position: fixed;
  left: var(--mouse-x, 50vw);
  top: var(--mouse-y, 22vh);
  width: 460px;
  height: 460px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.36), rgba(255, 122, 24, 0.16) 28%, rgba(255, 122, 24, 0.05) 46%, transparent 70%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 160ms ease;
  z-index: 20;
  mix-blend-mode: screen;
}

body.has-pointer .mouse-glow { opacity: 0.75; }

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  z-index: 1000;
  background: rgba(255,255,255,0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 28px rgba(255, 122, 24, 0.52);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-3); }

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

code {
  color: var(--accent-3);
  background: rgba(255, 157, 18, 0.1);
  border: 1px solid rgba(255, 157, 18, 0.18);
  padding: 0.08rem 0.34rem;
  border-radius: 8px;
  font-size: 0.92em;
}

:focus-visible {
  outline: 3px solid var(--accent-3);
  outline-offset: 4px;
  border-radius: 12px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1001;
  transform: translateY(-180%);
  background: var(--accent);
  color: #14100a;
  font-weight: 900;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.section-pad { padding: 4.4rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 7, 10, 0.76);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(6, 7, 10, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  width: min(1220px, calc(100% - 28px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
}

.brand-logo {
  border-radius: 14px;
  box-shadow: 0 0 0 1px var(--line), var(--glow);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  margin: 2px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-links {
  position: absolute;
  top: 82px;
  left: 14px;
  right: 14px;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem;
  background: rgba(13, 15, 21, 0.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.nav-links.open { display: flex; }

.nav-links a {
  color: var(--muted);
  font-weight: 750;
  padding: 0.9rem 1rem;
  border-radius: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
  color: #17100a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow);
  text-align: center;
}

.hero {
  position: relative;
  padding-top: 5.6rem;
}

.hero::after,
.autopay-section::before,
.cta-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
}

.hero::after {
  right: -10rem;
  top: 11rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 122, 24, 0.18);
}

.hero-grid,
.split-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 12vw, 6.75rem);
}

h2 { font-size: clamp(2.1rem, 8vw, 4.35rem); }
h3 { font-size: 1.35rem; }

.hero-text,
.section-text,
.section-heading p,
.feature-card p,
.price-card p,
.notice-card p,
.faq-card p,
.cta-card p,
.steps span,
.preview-sub,
.preview-note {
  color: var(--muted);
}

.hero-text {
  max-width: 720px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.02rem, 2.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-actions.center { justify-content: center; }

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -140% auto -140% -30%;
  width: 36%;
  transform: rotate(18deg) translateX(-220%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
  transition: transform 540ms ease;
}

.button:hover::after { transform: rotate(18deg) translateX(430%); }

.button:hover {
  transform: translateY(-2px);
  color: inherit;
}

.button.primary {
  color: #17100a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: var(--glow);
}

.button.primary:hover { box-shadow: 0 0 64px rgba(255, 122, 24, 0.42); }

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
}

.button.full { width: 100%; margin-top: auto; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
}

.trust-row span,
.status-pill,
.notice-label,
.badge,
.float-chip,
.example-ribbon {
  border: 1px solid rgba(255, 157, 18, 0.24);
  background: rgba(255, 157, 18, 0.09);
  color: var(--accent-3);
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
}

.bot-orbit {
  position: absolute;
  inset: 2rem 0 0;
  background:
    radial-gradient(circle, transparent 0 35%, rgba(255, 157, 18, 0.2) 35.2% 35.6%, transparent 36%),
    radial-gradient(circle, transparent 0 50%, rgba(255, 255, 255, 0.06) 50.2% 50.5%, transparent 51%);
  opacity: 0.85;
  animation: slowSpin 32s linear infinite;
}

.float-chip {
  position: absolute;
  z-index: 4;
  background: rgba(11, 13, 18, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  animation: floatY 5s ease-in-out infinite;
}

.chip-a { top: 1rem; right: 1rem; }
.chip-b { top: 9rem; left: 0.2rem; animation-delay: .4s; }
.chip-c { bottom: 2rem; right: 1rem; animation-delay: .9s; }

.avatar-card,
.store-preview,
.feature-card,
.price-card,
.notice-card,
.stat-card,
.faq-card,
.cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.038));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hover-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hover-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 157, 18, 0.38);
  box-shadow: 0 24px 90px rgba(255, 122, 24, 0.14), var(--shadow);
}

.avatar-card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatCard 6s ease-in-out infinite;
}

.avatar-card img {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  box-shadow: var(--glow);
}

.avatar-card strong { display: block; font-size: 1.1rem; }
.avatar-card span { color: var(--muted); font-weight: 700; }

.store-preview {
  position: relative;
  z-index: 3;
  width: min(100%, 460px);
  margin: -0.5rem auto 0;
  overflow: hidden;
  transform: rotate(-1deg);
  animation: floatPreview 7s ease-in-out infinite;
}

.store-preview:hover { transform: rotate(-1deg) translateY(-4px); }

.example-ribbon {
  position: absolute;
  right: 1rem;
  top: 0.82rem;
  z-index: 5;
  background: rgba(6, 7, 10, 0.92);
}

.preview-top {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.26);
  border-bottom: 1px solid var(--line);
}

.preview-dot { width: 11px; height: 11px; border-radius: 99px; background: var(--accent); }
.preview-dot:nth-child(2) { background: var(--green); }
.preview-dot:nth-child(3) { background: var(--blue); }

.preview-body { padding: 1.2rem; display: grid; gap: 0.75rem; }
.preview-title-wrap { display: grid; gap: 0.35rem; padding-right: 0; }
.preview-title { font-weight: 900; font-size: 1.25rem; }
.preview-sub { font-size: 0.92rem; }

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.product-row span { color: var(--muted); }
.product-row strong { color: var(--accent-3); white-space: nowrap; }

.preview-note {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.85rem 0.95rem;
  border: 1px dashed rgba(255, 157, 18, 0.34);
  border-radius: 16px;
  background: rgba(255, 157, 18, 0.05);
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  padding-bottom: 1rem;
}

.stat-card {
  padding: 1.2rem;
}

.stat-card strong {
  display: block;
  color: var(--accent-3);
  font-size: clamp(1.6rem, 8vw, 2.6rem);
  line-height: 1;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.section-text {
  max-width: 740px;
  font-size: 1.05rem;
}

.feature-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.faq-grid {
  align-items: start;
}

.feature-card,
.price-card,
.notice-card,
.faq-card {
  padding: 1.25rem;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #17100a;
  box-shadow: var(--glow);
}

.autopay-section {
  position: relative;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.autopay-section::before {
  left: -8rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 122, 24, 0.12);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.check-list span {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.052);
}

.check-list span::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 0.62rem;
}

.notice-card {
  position: relative;
}

.notice-label {
  display: inline-flex;
  margin-bottom: 1rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--accent-3);
  font-weight: 900;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-card.premium {
  border-color: rgba(255, 157, 18, 0.5);
  box-shadow: 0 24px 90px rgba(255, 122, 24, 0.12), var(--shadow);
}

.badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: #17100a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.price {
  color: var(--accent-3);
  font-size: 3rem;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price span { font-size: 1rem; color: var(--muted); letter-spacing: 0; }

.price-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.price-card li { margin: 0.55rem 0; }

.setup-section {
  background:
    linear-gradient(90deg, rgba(255, 122, 24, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.012);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #17100a;
  font-weight: 1000;
}

.steps strong,
.steps span { display: block; }

.faq-card {
  padding: 0;
  overflow: hidden;
  align-self: start;
}

.faq-card summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-weight: 900;
  list-style-position: inside;
}

.faq-card p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}

.faq-card[open] {
  border-color: rgba(255, 157, 18, 0.38);
  background: linear-gradient(180deg, rgba(255, 157, 18, 0.1), rgba(255, 255, 255, 0.04));
}

.cta-section { padding-top: 1.2rem; }

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 7vw, 4rem);
  text-align: center;
}

.cta-card::before {
  inset: auto -8rem -10rem auto;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 122, 24, 0.18);
}

.cta-card img {
  margin: 0 auto 1rem;
  border-radius: 22px;
  box-shadow: var(--glow);
}

.cta-card p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-grid p { margin: 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a { font-weight: 800; }

/* Content stays visible if JavaScript is blocked. Animations are enabled only after script.js adds .js-ready. */
.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .feature-card.reveal,
.js-ready .price-card.reveal,
.js-ready .faq-card.reveal,
.js-ready .stat-card.reveal {
  transform: translateY(22px) scale(0.985);
}

.js-ready .feature-card.reveal.visible,
.js-ready .price-card.reveal.visible,
.js-ready .faq-card.reveal.visible,
.js-ready .stat-card.reveal.visible {
  transform: translateY(0) scale(1);
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatCard {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes floatPreview {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 8px; }
}

@media (max-width: 559px) {
  .float-chip { display: none; }
  .hero-visual { min-height: 500px; }
  .example-ribbon {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin: 0.85rem 0 0 1rem;
  }
  .preview-top { padding-top: 0.9rem; }
  .store-preview { transform: none; }
  .store-preview:hover { transform: translateY(-4px); }
  .avatar-card,
  .store-preview { animation: none; }
}

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .button { width: auto; }
  .stats { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 760px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-links a { padding: 0.62rem 0.82rem; }
  .nav-links .nav-cta { padding-inline: 1.05rem; }

  .hero { padding-top: 6.8rem; }
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr); }
  .split-grid { grid-template-columns: 1.02fr 0.98fr; }
  .section-pad { padding: 5.8rem 0; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .mouse-glow { display: none; }
}


/* Email forwarding AutoPay update */
.forwarding-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 157, 18, 0.18);
  border-radius: 16px;
  background: rgba(255, 157, 18, 0.075);
}

.flow-step strong {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #17100a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow);
}

.flow-step span {
  color: var(--text);
  font-weight: 760;
  line-height: 1.35;
}

.policy-page .content-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.content-card h2, .content-card h3 {
  margin-top: 1.4rem;
}

.content-card p, .content-card li {
  color: var(--muted);
}

.content-card ul {
  padding-left: 1.2rem;
}

@media (max-width: 700px) {
  .forwarding-flow { grid-template-columns: 1fr; }
}


/* SEO content/page update */
.inner-page .page-hero {
  padding-top: 6.8rem;
  padding-bottom: 2.8rem;
}

.inner-page h1 {
  max-width: 980px;
  font-size: clamp(2.55rem, 9vw, 5.5rem);
}

.seo-section {
  position: relative;
}

.seo-card-grid {
  display: grid;
  gap: 1rem;
}

.mini-card,
.content-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.038));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mini-card {
  padding: 1.15rem;
}

.mini-card h3,
.content-card h2 {
  letter-spacing: -0.035em;
}

.mini-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.compact-steps {
  margin-top: 1rem;
}

.compact-steps li {
  margin-bottom: 0.85rem;
}

.content-card .button {
  margin-top: 1rem;
}

@media (min-width: 760px) {
  .seo-card-grid {
    grid-template-columns: 1fr;
  }
}
