/* ───────────────────────────────────────────────
   Ramovation — shared subpage styles
   Used by /services, /about, /contact, and the
   four /*-egypt SEO landing pages.
─────────────────────────────────────────────── */

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --white: #ffffff;
  --bone: #f6f4ef;
  --blue: #205682;
  --blue-deep: #143b5c;
  --blue-sky: #7eb6e0;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.16);
  --muted: #5a5a5a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.brand img { height: 28px; width: auto; }
.site-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.3s ease;
}
.site-nav a:hover { color: var(--blue); }
.site-nav a:hover::after { width: 100%; }
.site-nav a.cta {
  background: var(--ink);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.3s;
}
.site-nav a.cta:hover { background: var(--blue); }
.site-nav a.cta::after { display: none; }

/* ── Page Hero ── */
.page-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bone) 0%, var(--white) 100%);
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.page-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--blue);
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 920px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.page-hero .lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 720px;
}

/* ── Page body content ── */
.page-content {
  padding: 80px 0 120px;
}
.page-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  margin: 56px 0 18px;
  letter-spacing: -0.005em;
}
.page-content h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  margin: 32px 0 10px;
}
.page-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #2a2a2a;
  margin-bottom: 18px;
  max-width: 760px;
}
.page-content ul {
  margin: 12px 0 24px 22px;
  max-width: 760px;
}
.page-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* ── CTA card ── */
.cta-card {
  margin: 64px 0 0;
  background: var(--ink);
  color: var(--white);
  padding: 56px 48px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: var(--white);
}
.cta-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  margin-bottom: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--white);
  color: var(--ink);
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ───────────────────────────────────────────────
   ANIMATION ENGINE
─────────────────────────────────────────────── */

/* Scroll progress bar (injected by animations.js) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-sky) 100%);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.1s linear;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-fast { transition-duration: 0.6s; }
.reveal-slow { transition-duration: 1.4s; }
.reveal-left { transform: translate3d(-50px, 0, 0); }
.reveal-right { transform: translate3d(50px, 0, 0); }
.reveal-scale { transform: scale(0.94); }
.reveal-scale.in-view { transform: scale(1); }

.reveal-stagger > * {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Parallax */
[data-parallax] { will-change: transform; }

/* Magnetic & tilt */
[data-magnetic] { transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
[data-tilt] { transition: transform 0.18s ease-out; }

/* Subtle hero gradient drift */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(32, 86, 130, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(126, 182, 224, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: drift 30s ease-in-out infinite alternate;
}
.page-hero > * { position: relative; z-index: 1; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -20px) scale(1.05); }
}

/* Header polish — sticky shadow on scroll */
.site-header { transition: box-shadow 0.3s, background 0.3s; }
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Card hover lift (subtle) */
.cap-card { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s, background 0.3s; }

/* Reduced-motion override */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .page-hero::before { animation: none !important; }
}

/* ───────────────────────────────────────────────
   RTL (Arabic) SUPPORT
   Active on <html dir="rtl"> or <body dir="rtl">
─────────────────────────────────────────────── */

:root[dir="rtl"],
[dir="rtl"] {
  /* Use a richer Arabic font stack with system Arabic faces first */
  --sans: "Inter", "Cairo", "Tajawal", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Helvetica Neue", "Tahoma", sans-serif;
  --serif: "Cormorant Garamond", "Amiri", "Markazi Text", "Scheherazade New",
    Georgia, serif;
}

[dir="rtl"] body {
  text-align: right;
}

/* Mirror reveal directions */
[dir="rtl"] .reveal-left { transform: translate3d(50px, 0, 0); }
[dir="rtl"] .reveal-right { transform: translate3d(-50px, 0, 0); }
[dir="rtl"] .reveal-left.in-view,
[dir="rtl"] .reveal-right.in-view { transform: translate3d(0, 0, 0); }

/* Eyebrow line: position on the right in RTL (it has ::before by default) */
[dir="rtl"] .page-eyebrow,
[dir="rtl"] .section-eyebrow-sm,
[dir="rtl"] .contact-card-eyebrow {
  flex-direction: row-reverse;
}

/* Scroll progress bar — keep flowing right-to-left in RTL */
[dir="rtl"] .scroll-progress {
  transform-origin: right;
  background: linear-gradient(-90deg, var(--blue) 0%, var(--blue-sky) 100%);
}

/* Logical-direction nav link gap */
[dir="rtl"] .site-nav { flex-direction: row-reverse; }

/* Mirror simple arrow glyphs in inline links so &rarr; reads correctly */
[dir="rtl"] .cap-card-link,
[dir="rtl"] .featured-cta {
  unicode-bidi: plaintext;
}

/* Section grid headings: align with reading direction */
[dir="rtl"] .icon-list li {
  padding: 14px 36px 14px 0;
}
[dir="rtl"] .icon-list li::before {
  left: auto;
  right: 0;
}

/* Pull-quote: flip border to the right edge in RTL */
[dir="rtl"] .pull-quote-sm {
  border-left: none;
  border-right: 2px solid var(--blue);
  padding: 8px 22px 8px 0;
}

/* FAQ summary chevron: keep on the leading edge */
[dir="rtl"] .faq-item-sm summary {
  flex-direction: row-reverse;
}

/* Process step: right-borders become left in RTL */
[dir="rtl"] .process-step {
  border-right: none;
  border-left: 1px solid var(--line);
  padding: 32px 0 32px 24px;
}
[dir="rtl"] .process-step:last-child {
  border-left: none;
  padding-left: 0;
}

/* Stat-grid borders work as-is. Channel cards: flip icon margin. */
[dir="rtl"] .channel-card { flex-direction: row-reverse; }

/* CTA card: keep CTA on the trailing edge in RTL */
[dir="rtl"] .cta-card { flex-direction: row-reverse; }

/* Hero (homepage) — flip eyebrow line position */
[dir="rtl"] .hero-eyebrow,
[dir="rtl"] .section-eyebrow {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero-eyebrow::before,
[dir="rtl"] .section-eyebrow::before {
  /* The line stays as a leading visual; flexbox row-reverse handles position */
}

/* Dark sections in RTL keep correct color treatment via existing :not(rtl) selectors */

/* ───────────────────────────────────────────────
   PAGE-SPECIFIC SECTIONS
─────────────────────────────────────────────── */

/* ── Section header (used on subpages) ── */
.section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.section-dark {
  background: var(--ink);
  color: var(--white);
  border-top: none;
}
.section-bone {
  background: var(--bone);
  border-top: none;
}
.section-eyebrow-sm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-eyebrow-sm::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--blue);
}
.section-dark .section-eyebrow-sm { color: var(--blue-sky); }
.section-dark .section-eyebrow-sm::before { background: var(--blue-sky); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  max-width: 760px;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-dark .section-title em { color: var(--blue-sky); }
.section-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 56px;
}
.section-dark .section-lede { color: rgba(255, 255, 255, 0.7); }

/* ── Card grid (3-col / 4-col / 2-col) ── */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}

/* ── Service / capability card ── */
.cap-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: 4px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cap-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.06);
}
.cap-card:hover::before { transform: scaleX(1); }
.cap-card-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.cap-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--blue);
}
.cap-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--ink);
}
.cap-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cap-card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cap-card:hover .cap-card-link { color: var(--blue); }

/* ── Section grid (dark variant for service pages) ── */
.section-dark .cap-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.section-dark .cap-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
.section-dark .cap-card h3 { color: var(--white); }
.section-dark .cap-card p { color: rgba(255, 255, 255, 0.65); }
.section-dark .cap-card-num { color: var(--blue-sky); }
.section-dark .cap-card-icon { color: var(--blue-sky); }
.section-dark .cap-card-link { color: var(--white); }

/* ── Process steps ── */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step {
  padding: 32px 24px 32px 0;
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 980px) {
  .process { grid-template-columns: repeat(2, 1fr); border-bottom: none; }
  .process-step { border-bottom: 1px solid var(--line); }
  .process-step:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; padding-right: 24px; }
}

/* ── Tech pills ── */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 24px;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: all 0.2s;
}
.tech-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.section-dark .tech-pill {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark .tech-pill:hover {
  border-color: var(--blue-sky);
  color: var(--blue-sky);
}

/* ── Stat block / stat grid ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.stat-block {
  padding: 36px 28px;
  background: var(--white);
}
.section-dark .stat-grid {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}
.section-dark .stat-block { background: var(--ink); }
.stat-num-lg {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
}
.section-dark .stat-num-lg { color: var(--blue-sky); }
.stat-label-lg {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.section-dark .stat-label-lg { color: rgba(255, 255, 255, 0.6); }
@media (max-width: 980px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* ── Two-column split (content left, list right) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Icon list (for benefits/capabilities lists) ── */
.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.icon-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
  max-width: none;
}
.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 45%, var(--blue) 45%, var(--blue) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--blue) 45%, var(--blue) 55%, transparent 55%);
  background-size: 9px 1.5px, 9px 1.5px;
  background-position: 2px 7px, 4px 5px;
  background-repeat: no-repeat;
}
.section-dark .icon-list li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* ── FAQ on subpages ── */
.faq-list-sm {
  border-top: 1px solid var(--line);
}
.faq-item-sm {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item-sm summary {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item-sm summary::-webkit-details-marker { display: none; }
.faq-item-sm summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  color: var(--blue);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item-sm[open] summary::after {
  content: "−";
}
.faq-item-sm p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Channel pill (for marketing page) ── */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.channel-card {
  background: var(--bone);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  gap: 18px;
}
.channel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 500;
}
.channel-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .channel-grid { grid-template-columns: 1fr; }
}

/* ── Contact methods ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 56px;
}
.contact-card {
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 4px;
  background: var(--white);
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--blue);
  background: var(--bone);
}
.contact-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.contact-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Pull quote ── */
.pull-quote-sm {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
  padding: 8px 0 8px 22px;
  border-left: 2px solid var(--blue);
  margin: 32px 0;
  max-width: 720px;
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 0 28px;
}
.site-footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.site-footer .brand { color: var(--white); font-size: 20px; }
.site-footer .brand img { filter: invert(1); }
.site-footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.site-footer-links a:hover { color: var(--white); }
.site-footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .site-nav { gap: 16px; }
  .site-nav a:not(.cta) { display: none; }
  .container { padding: 0 24px; }
  .page-hero { padding: 80px 0 60px; }
  .page-content { padding: 56px 0 80px; }
  .cta-card { padding: 36px 28px; flex-direction: column; align-items: flex-start; text-align: left; }
}
