/*
  Medi-Galaxy LLC — SEO Growth Landing Page Styles
  File: assets/css/seo-growth.css

  Purpose:
  - Supports the strategic SEO / grants / acquisition growth pages under /pages/.
  - Complements the existing homepage style.css without requiring homepage changes.
  - Keeps the visual language aligned with Medi-Galaxy: dark orbital UI, cyan/blue trust signals,
    high-legibility cards, responsible-scope notes, and conversion-focused CTA panels.
*/

:root {
  --bg: #050816;
  --bg-deep: #02040c;
  --panel: #081326;
  --panel-strong: #0b1e36;
  --panel-soft: rgba(8, 19, 38, 0.76);
  --panel-glass: rgba(7, 17, 35, 0.72);
  --cyan: #20d8ff;
  --cyan-soft: rgba(32, 216, 255, 0.12);
  --blue: #1287ff;
  --blue-soft: rgba(18, 135, 255, 0.12);
  --text: #f4f8ff;
  --text-soft: #d8e7fb;
  --muted: #a9bdd6;
  --muted-2: #7f96b4;
  --line: rgba(32, 216, 255, 0.35);
  --line-soft: rgba(32, 216, 255, 0.2);
  --warn: #ffd166;
  --warn-soft: rgba(255, 209, 102, 0.14);
  --danger: #ff6b8a;
  --success: #75f0b5;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.28);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 40px));
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background:
    radial-gradient(circle at 82% 8%, rgba(32, 216, 255, 0.16), transparent 31rem),
    radial-gradient(circle at 16% 78%, rgba(18, 135, 255, 0.13), transparent 36rem),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.035), transparent 42rem),
    linear-gradient(180deg, #030611 0%, #07142a 54%, #030611 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32, 216, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 216, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(32, 216, 255, 0.05), transparent 12rem),
    radial-gradient(circle at 32% 16%, rgba(255, 255, 255, 0.055), transparent 10rem);
  opacity: 0.95;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(32, 216, 255, 0.28);
  color: #ffffff;
}

:focus-visible {
  outline: 3px solid rgba(32, 216, 255, 0.85);
  outline-offset: 4px;
  border-radius: 10px;
}

a {
  color: var(--cyan);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

a:hover {
  color: #7eeaff;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  color: #ffffff;
  line-height: 1.08;
  margin: 0 0 0.72rem;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.45rem, 6.2vw, 5.2rem);
  letter-spacing: -0.065em;
  max-width: 980px;
}

h2 {
  font-size: clamp(1.55rem, 2.9vw, 2.6rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.48rem);
}

ul,
ol {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

li + li {
  margin-top: 0.42rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/* Shared / legacy utility classes from earlier seo-growth.css                 */
/* -------------------------------------------------------------------------- */

header:not(.site-header):not(.seo-growth-header) {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 22, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

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

.brand span {
  letter-spacing: 0.02em;
}

.navlinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.navlinks a:hover {
  color: var(--cyan);
}

.hero {
  padding: 86px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32, 216, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 216, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(32, 216, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 850;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  color: #d6e7ff;
  max-width: 760px;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(8, 19, 38, 0.92), rgba(10, 31, 56, 0.72));
  box-shadow: var(--shadow), inset 0 0 28px rgba(32, 216, 255, 0.05);
}

.hero-card h2 {
  margin: 0 0 12px;
  color: var(--cyan);
}

.kpi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.kpi div {
  border: 1px solid rgba(32, 216, 255, 0.22);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.kpi strong {
  display: block;
  font-size: 1.45rem;
  color: #fff;
}

.ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn,
.seo-growth-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid var(--line);
}

.btn.primary,
.seo-growth-cta a {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #00101f;
  box-shadow: 0 10px 34px rgba(32, 216, 255, 0.17);
}

.btn.primary:hover,
.seo-growth-cta a:hover {
  color: #00101f;
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(32, 216, 255, 0.25);
}

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

section {
  padding: 58px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 16px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 860px;
}

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

.card {
  border: 1px solid rgba(32, 216, 255, 0.25);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(8, 19, 38, 0.9), rgba(8, 19, 38, 0.48));
  min-height: 220px;
}

.card h3 {
  margin: 0 0 10px;
  color: #fff;
}

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

.callout {
  border: 1px solid rgba(255, 209, 102, 0.36);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(32, 216, 255, 0.06));
  border-radius: 26px;
  padding: 28px;
  margin-top: 30px;
}

.disclaimer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  padding: 32px 0 48px;
}

footer:not(.seo-growth-footer) {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
}

/* -------------------------------------------------------------------------- */
/* SEO growth page shell                                                       */
/* -------------------------------------------------------------------------- */

.seo-growth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(32, 216, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(18, 135, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #02040c 0%, #061126 54%, #02040c 100%);
}

.seo-growth-page::before {
  opacity: 0.9;
}

.seo-growth-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(22px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(32, 216, 255, 0.27);
  background: rgba(3, 6, 17, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.seo-growth-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.seo-growth-brand::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff 0%, var(--cyan) 35%, rgba(32, 216, 255, 0.08) 72%);
  box-shadow: 0 0 18px rgba(32, 216, 255, 0.76);
}

.seo-growth-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.seo-growth-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 760;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.seo-growth-header nav a:hover {
  color: #ffffff;
  border-color: rgba(32, 216, 255, 0.24);
  background: rgba(32, 216, 255, 0.08);
}

.seo-growth-main {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0 72px;
}

.seo-growth-main::before,
.seo-growth-main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.88;
}

.seo-growth-main::before {
  top: 56px;
  right: 4%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(32, 216, 255, 0.14);
  box-shadow: inset 0 0 44px rgba(32, 216, 255, 0.025);
}

.seo-growth-main::after {
  top: 130px;
  right: 12%;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.seo-growth-article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.seo-growth-article > .eyebrow {
  margin-bottom: 0.4rem;
}

.seo-growth-lede {
  max-width: 880px;
  margin: 4px 0 18px;
  color: var(--text-soft);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  line-height: 1.62;
}

.seo-growth-lede strong,
.seo-page-card strong {
  color: #ffffff;
}

/* -------------------------------------------------------------------------- */
/* SEO growth content cards                                                    */
/* -------------------------------------------------------------------------- */

.seo-page-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 216, 255, 0.23);
  border-radius: var(--radius-md);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(8, 19, 38, 0.88), rgba(8, 19, 38, 0.56)),
    radial-gradient(circle at 92% 0%, rgba(32, 216, 255, 0.11), transparent 18rem);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.seo-page-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 216, 255, 0.62), transparent);
  opacity: 0.65;
}

.seo-page-card::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(32, 216, 255, 0.88);
  box-shadow: 0 0 18px rgba(32, 216, 255, 0.72);
  opacity: 0.75;
}

.seo-page-card h2 {
  margin-bottom: 0.9rem;
  padding-right: 2.1rem;
  color: #ffffff;
}

.seo-page-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.seo-page-card a {
  font-weight: 800;
}

.seo-page-card:hover {
  border-color: rgba(32, 216, 255, 0.42);
  transform: translateY(-1px);
  transition: border-color 180ms ease, transform 180ms ease;
}

.scope-note {
  border-color: rgba(255, 209, 102, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(32, 216, 255, 0.06)),
    rgba(8, 19, 38, 0.78);
}

.scope-note::after {
  background: var(--warn);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.56);
}

.scope-note h2 {
  color: #fff7dc;
}

.scope-note p {
  color: #e7dbc0;
}

/* -------------------------------------------------------------------------- */
/* Conversion / CTA block                                                      */
/* -------------------------------------------------------------------------- */

.seo-growth-cta {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(32, 216, 255, 0.38);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 16% 24%, rgba(32, 216, 255, 0.2), transparent 21rem),
    linear-gradient(135deg, rgba(8, 19, 38, 0.96), rgba(10, 31, 56, 0.78));
  box-shadow: var(--shadow);
}

.seo-growth-cta::before {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(32, 216, 255, 0.18);
  border-radius: 999px;
}

.seo-growth-cta h2,
.seo-growth-cta p,
.seo-growth-cta a {
  position: relative;
  z-index: 1;
}

.seo-growth-cta h2 {
  max-width: 780px;
}

.seo-growth-cta p {
  max-width: 820px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.seo-growth-cta a {
  width: fit-content;
  margin-top: 1.1rem;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */

.seo-growth-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
  padding: 30px 20px 40px;
  border-top: 1px solid rgba(32, 216, 255, 0.22);
  color: var(--muted);
  background: rgba(2, 4, 12, 0.46);
}

.seo-growth-footer span {
  color: var(--text-soft);
  font-weight: 700;
}

.seo-growth-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 760;
  padding: 7px 10px;
  border-radius: 999px;
}

.seo-growth-footer a:hover {
  color: var(--cyan);
  background: rgba(32, 216, 255, 0.07);
}

/* -------------------------------------------------------------------------- */
/* Optional strategic internal links snippet                                   */
/* -------------------------------------------------------------------------- */

.strategic-links-panel,
.seo-strategic-links {
  width: min(1120px, calc(100% - 40px));
  margin: 34px auto;
  border: 1px solid rgba(32, 216, 255, 0.26);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(circle at 88% 10%, rgba(32, 216, 255, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(8, 19, 38, 0.9), rgba(8, 19, 38, 0.58));
  box-shadow: var(--shadow-soft);
}

.strategic-links-panel h2,
.seo-strategic-links h2 {
  margin-bottom: 0.7rem;
}

.strategic-links-panel p,
.seo-strategic-links p {
  max-width: 850px;
  color: var(--muted);
}

.strategic-links-grid,
.seo-strategic-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.strategic-links-grid a,
.seo-strategic-link-grid a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(32, 216, 255, 0.22);
  border-radius: 20px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
}

.strategic-links-grid a strong,
.seo-strategic-link-grid a strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.strategic-links-grid a span,
.seo-strategic-link-grid a span {
  color: var(--muted);
  font-size: 0.94rem;
}

.strategic-links-grid a:hover,
.seo-strategic-link-grid a:hover {
  border-color: rgba(32, 216, 255, 0.45);
  background: rgba(32, 216, 255, 0.07);
  transform: translateY(-1px);
}

/* -------------------------------------------------------------------------- */
/* Rich content utilities for future growth pages                              */
/* -------------------------------------------------------------------------- */

.seo-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.seo-three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-mini-card {
  border: 1px solid rgba(32, 216, 255, 0.2);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.032);
}

.seo-mini-card h3 {
  margin-bottom: 0.52rem;
}

.seo-mini-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.seo-proof-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.seo-proof-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: var(--muted);
}

.seo-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(32, 216, 255, 0.52);
}

.seo-keyword-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.seo-keyword-cluster span,
.seo-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(32, 216, 255, 0.24);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(32, 216, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 740;
}

.seo-data-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(32, 216, 255, 0.2);
  border-radius: 18px;
  margin-top: 18px;
}

.seo-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: rgba(3, 6, 17, 0.4);
}

.seo-data-table th,
.seo-data-table td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(32, 216, 255, 0.14);
  text-align: left;
  vertical-align: top;
}

.seo-data-table th {
  color: #ffffff;
  background: rgba(32, 216, 255, 0.075);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-data-table td {
  color: var(--muted);
}

.seo-data-table tr:last-child th,
.seo-data-table tr:last-child td {
  border-bottom: none;
}

/* -------------------------------------------------------------------------- */
/* Accessibility / motion / print                                              */
/* -------------------------------------------------------------------------- */

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

  .seo-page-card:hover,
  .btn.primary:hover,
  .seo-growth-cta a:hover,
  .strategic-links-grid a:hover,
  .seo-strategic-link-grid a:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid,
  .seo-two-column,
  .seo-three-column,
  .strategic-links-grid,
  .seo-strategic-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-growth-main::before,
  .seo-growth-main::after {
    opacity: 0.32;
  }
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .navlinks {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  body {
    line-height: 1.58;
  }

  .seo-growth-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  .seo-growth-header nav {
    justify-content: flex-start;
    gap: 8px;
  }

  .seo-growth-header nav a {
    padding: 7px 9px;
    font-size: 0.9rem;
  }

  .seo-growth-main {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }

  .seo-growth-lede {
    font-size: 1.06rem;
  }

  .seo-page-card,
  .seo-growth-cta,
  .strategic-links-panel,
  .seo-strategic-links {
    border-radius: 22px;
  }

  .seo-growth-cta a {
    width: 100%;
    text-align: center;
  }

  .seo-growth-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 480px) {
  .eyebrow,
  .badge {
    letter-spacing: 0.1em;
    font-size: 0.68rem;
  }

  .seo-page-card {
    padding: 20px;
  }

  .seo-page-card h2 {
    padding-right: 1.4rem;
  }

  .seo-page-card::after {
    top: 18px;
    right: 18px;
  }
}

@media print {
  html,
  body {
    background: #ffffff !important;
    color: #111827 !important;
  }

  body::before,
  body::after,
  .seo-growth-main::before,
  .seo-growth-main::after,
  .seo-page-card::before,
  .seo-page-card::after,
  .seo-growth-cta::before {
    display: none !important;
  }

  .seo-growth-header,
  .seo-growth-footer {
    position: static;
    background: #ffffff !important;
    border-color: #d1d5db !important;
    color: #111827 !important;
    box-shadow: none !important;
  }

  .seo-growth-header nav,
  .seo-growth-cta a {
    display: none !important;
  }

  .seo-growth-brand,
  h1,
  h2,
  h3,
  p,
  .seo-page-card p,
  .seo-growth-lede,
  .scope-note p {
    color: #111827 !important;
  }

  .seo-page-card,
  .scope-note,
  .seo-growth-cta {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  a {
    color: #0645ad !important;
  }
}
