/* Sentosa homepage stylesheet. Everything is scoped under .sh-body so it never touches other pages. */

.sh-body {
  --sh-ink: #151515;
  --sh-muted: #737373;
  --sh-text-2: #5f5f5f;
  --sh-surface: #f7f7f7;
  --sh-warm: #eeedec;
  --sh-card: #eeedec;
  --sh-line: rgba(0, 0, 0, 0.08);
  --sh-line-dark: rgba(255, 255, 255, 0.12);
  --sh-serif: "Newsreader", "Iowan Old Style", "Times New Roman", Georgia, serif;
  --sh-sans: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --sh-container: 1280px;
  --sh-gutter: 40px;
  --sh-header-h: 68px;
  margin: 0;
  background: #fff;
  color: var(--sh-ink);
  font-family: var(--sh-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.sh-body *, .sh-body *::before, .sh-body *::after { box-sizing: border-box; }
/* Resets use :where() so any single-class rule below can override them. */
.sh-body :where(h1, h2, h3, p, ul, dl, dd, figure, blockquote) { margin: 0; }
.sh-body :where(ul) { padding: 0; list-style: none; }
.sh-body :where(img) { max-width: 100%; display: block; }
.sh-body :where(a) { color: inherit; text-decoration: none; }
.sh-body ::selection { background: var(--sh-ink); color: #fff; }
.sh-body :focus-visible { outline: 2px solid var(--sh-ink); outline-offset: 2px; }
.sh-body .sh-dark :focus-visible, .sh-body .sh-header :focus-visible, .sh-body .sh-hero :focus-visible { outline-color: #fff; }
html.sh-menu-open { overflow: hidden; }

.sh-skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: #fff; color: var(--sh-ink); padding: 8px 16px; border-radius: 6px; }
.sh-skip:focus { left: 16px; }

/* ---------- Typography (measured from the editorial design) ---------- */
.sh-t-hero { font-family: var(--sh-serif); font-weight: 400; font-size: 64px; line-height: 0.98; letter-spacing: -0.04em; }
.sh-t-display { font-family: var(--sh-serif); font-weight: 400; font-size: 48px; line-height: 1.05; letter-spacing: -0.035em; }
.sh-t-h3 { font-family: var(--sh-serif); font-weight: 400; font-size: 44px; line-height: 1.05; letter-spacing: -0.035em; }
.sh-t-stat { font-family: var(--sh-serif); font-weight: 400; font-size: 96px; line-height: 1.2; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.sh-t-quote { font-family: var(--sh-serif); font-weight: 400; font-size: 26px; line-height: 1.25; letter-spacing: -0.02em; }
.sh-t-h4 { font-family: var(--sh-sans); font-weight: 500; font-size: 24px; line-height: 1.15; letter-spacing: -0.02em; }
.sh-t-h5 { font-family: var(--sh-sans); font-weight: 500; font-size: 28px; line-height: 1.15; letter-spacing: -0.03em; }
.sh-t-lead { font-family: var(--sh-sans); font-weight: 400; font-size: 20px; line-height: 1.4; letter-spacing: -0.02em; }
.sh-t-body { font-family: var(--sh-sans); font-weight: 400; font-size: 18px; line-height: 1.5; letter-spacing: -0.005em; }
.sh-t-small { font-family: var(--sh-sans); font-weight: 400; font-size: 14px; line-height: 1.5; letter-spacing: -0.02em; }
.sh-t-label { font-family: var(--sh-sans); font-weight: 500; font-size: 14px; line-height: 1.3; letter-spacing: -0.02em; }
.sh-t-caption { font-family: var(--sh-sans); font-weight: 500; font-size: 12px; line-height: 1.4; letter-spacing: -0.02em; }
.sh-eyebrow { font-family: var(--sh-sans); font-weight: 500; font-size: 12px; line-height: 1.3; letter-spacing: 0.08em; text-transform: uppercase; }
.sh-muted { color: var(--sh-text-2); }
.sh-muted-dark { color: rgba(255, 255, 255, 0.55); }
.sh-body .sh-center { text-align: center; margin-inline: auto; }
.sh-t-hero, .sh-t-display, .sh-t-h3, .sh-t-h4, .sh-t-h5 { text-wrap: balance; }
@media (max-width: 809px) {
  .sh-t-hero { font-size: 44px; letter-spacing: -0.035em; }
  .sh-t-display { font-size: 36px; }
  .sh-t-h3 { font-size: 34px; }
  .sh-t-stat { font-size: 56px; line-height: 1.1; }
  .sh-t-quote { font-size: 22px; }
  .sh-t-h4 { font-size: 22px; }
  .sh-t-h5 { font-size: 24px; }
  .sh-t-lead { font-size: 18px; }
  .sh-t-body { font-size: 17px; }
}

/* ---------- Layout ---------- */
.sh-container { width: 100%; max-width: calc(var(--sh-container) + 2 * var(--sh-gutter)); margin-inline: auto; padding-inline: var(--sh-gutter); }
@media (max-width: 809px) { .sh-body { --sh-gutter: 20px; } }
.sh-section { padding-block: 96px; }
.sh-desktop-only { display: inline; }
.sh-mobile-only { display: none; }
@media (max-width: 809px) { .sh-desktop-only { display: none; } .sh-mobile-only { display: inline; } }

/* ---------- Buttons ---------- */
.sh-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 6px; font-family: var(--sh-sans); font-weight: 500; white-space: nowrap; transition: background-color 0.2s, color 0.2s; user-select: none; border: 0; cursor: pointer; }
.sh-btn-sm { height: 36px; padding-inline: 16px; font-size: 14px; letter-spacing: -0.01em; }
.sh-btn-md { height: 44px; padding-inline: 18px; font-size: 16px; letter-spacing: -0.01em; }
.sh-body .sh-btn-light { background: #fff; color: var(--sh-ink); }
.sh-body .sh-btn-light:hover { background: #ededed; }
.sh-body .sh-btn-ghost { background: transparent; color: #fff; border: 1px solid var(--sh-line-dark); }
.sh-body .sh-btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* ---------- Header: sticky, logo always visible ---------- */
.sh-header { position: fixed; inset-inline: 0; top: 0; z-index: 50; color: #fff; background: transparent; transition: background-color 0.3s; }
.admin-bar .sh-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .sh-header { top: 46px; } }
.sh-header-scrolled, .sh-header-open { background: rgba(21, 21, 21, 0.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.sh-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: var(--sh-header-h); }
.sh-logo { display: flex; align-items: center; }
.sh-logo img { height: 32px; width: auto; }
.sh-nav-list { position: absolute; left: 50%; transform: translateX(-50%); display: none; align-items: center; }
.sh-nav-list a { display: block; padding: 8px 12px; font-size: 14px; font-weight: 500; letter-spacing: -0.02em; transition: opacity 0.2s; }
.sh-nav-list a:hover { opacity: 0.7; }
.sh-nav-cta { display: none; }
.sh-burger { display: flex; flex-direction: column; width: 40px; height: 40px; align-items: center; justify-content: center; background: transparent; border: 0; color: inherit; cursor: pointer; padding: 0; }
.sh-burger span { display: block; width: 20px; height: 1.5px; background: currentColor; margin: 2.75px 0; transition: transform 0.25s, opacity 0.25s; }
.sh-header-open .sh-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sh-header-open .sh-burger span:nth-child(2) { opacity: 0; }
.sh-header-open .sh-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1200px) {
  .sh-nav-list { display: flex; }
  .sh-nav-cta { display: inline-flex; }
  .sh-burger { display: none; }
}
.sh-mobile-menu { background: #151515; color: #fff; height: calc(100dvh - var(--sh-header-h)); overflow-y: auto; }
.sh-mobile-menu ul { padding-top: 16px; }
.sh-mobile-menu li { border-bottom: 1px solid var(--sh-line-dark); }
.sh-mobile-menu li a { display: block; padding: 16px 0; font-family: var(--sh-serif); font-size: 28px; letter-spacing: -0.03em; }
.sh-mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; padding-bottom: 40px; }
.sh-mobile-actions .sh-btn { width: 100%; }

/* ---------- Hero ---------- */
.sh-hero { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 640px; height: 100svh; overflow: hidden; background: #0f0f0f; color: #fff; }
.sh-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sh-hero-shade { position: absolute; inset: 0; background:
  radial-gradient(120% 80% at 50% 110%, rgba(255, 255, 255, 0.10), transparent 60%),
  linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.55));
}
/* Over footage the wash is heavier so the headline and logos stay readable on bright frames. */
.sh-hero-has-media .sh-hero-shade { background:
  radial-gradient(70% 60% at 50% 45%, rgba(0, 0, 0, 0.35), transparent 70%),
  linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.78));
}
.sh-hero-content { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: calc(var(--sh-header-h) + 24px) 20px 24px; }
.sh-hero-content .sh-eyebrow { color: rgba(255, 255, 255, 0.78); margin-bottom: 18px; }
.sh-hero-content h1 { max-width: 760px; }
.sh-hero-copy { max-width: 640px; margin-top: 24px; color: rgba(255, 255, 255, 0.9); text-wrap: pretty; }
.sh-hero-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 40px; }
.sh-hero-promise { color: rgba(255, 255, 255, 0.85); }
@media (min-width: 810px) { .sh-hero-actions { flex-direction: row; gap: 20px; } }
@media (max-width: 809px) { .sh-hero-copy { max-width: 340px; margin-top: 20px; } .sh-hero-actions { margin-top: 32px; } }

.sh-fade { animation: sh-fade-up 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.sh-fade-2 { animation-delay: 0.15s; }
.sh-fade-3 { animation-delay: 0.3s; }
@keyframes sh-fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Logo strip: continuous, pauses on hover, becomes a swipe row when motion is reduced */
.sh-logos { position: relative; padding: 0 0 32px; display: grid; gap: 18px; justify-items: center; }
.sh-logos-label { color: rgba(255, 255, 255, 0.7); }
.sh-marquee { width: 100%; overflow: hidden; padding-inline: 12px; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.sh-marquee-track { display: flex; width: max-content; align-items: center; gap: 56px; padding-inline: 28px; animation: sh-marquee var(--sh-marquee-duration, 54s) linear infinite; will-change: transform; }
.sh-marquee:hover .sh-marquee-track { animation-play-state: paused; }
.sh-marquee-track li { flex: 0 0 auto; }
.sh-marquee-track img { --sh-s: 1; height: calc(28px * var(--sh-s)); width: auto; max-width: 170px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.92; }
@keyframes sh-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 809px) { .sh-marquee-track { gap: 36px; } .sh-marquee-track img { height: calc(22px * var(--sh-s)); max-width: 130px; } .sh-logos { padding-bottom: 24px; } }
@media (prefers-reduced-motion: reduce) {
  .sh-fade { animation: none; }
  .sh-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; scrollbar-width: none; }
  .sh-marquee-track { animation: none; }
}

/* ---------- Testimonials ---------- */
.sh-testimonials { background: var(--sh-surface); padding-top: 160px; padding-bottom: 80px; }
.sh-testimonials h2 { max-width: 640px; }
/* Expandable cards: one open at a time, the others collapse to a narrow column with a plus button. */
.sh-tcards { display: flex; flex-direction: column; gap: 12px; margin-top: 64px; }
.sh-tcard { position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--sh-card); border-radius: 8px; padding: 32px; min-width: 0; }
.sh-tcard-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.sh-tcard-company { color: var(--sh-muted); padding-top: 4px; }
.sh-tcard-logo { --sh-s: 1; height: calc(26px * var(--sh-s)); width: auto; max-width: 170px; object-fit: contain; object-position: left center; filter: grayscale(1); opacity: 0.55; margin-top: 4px; }
.sh-tcard:not(.is-open) .sh-tcard-logo { max-width: 110px; }
.sh-body .sh-tcard-plus { display: flex; width: 44px; height: 44px; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 6px; background: #e4e3e2; color: var(--sh-ink); border: 0; padding: 0; cursor: pointer; transition: background-color 0.2s; }
.sh-body .sh-tcard-plus:hover { background: #d9d8d7; }
.sh-tcard-quote { flex: 1; margin-top: 40px; text-wrap: pretty; }
.sh-tcard-spacer { display: none; flex: 1; align-items: flex-end; padding-bottom: 32px; }
.sh-tcard:not(.is-open) .sh-tcard-quote { display: none; }
.sh-tcard.is-open .sh-tcard-plus-mobile { display: none; }
.sh-tcard footer { margin-top: 32px; }
.sh-tcard-name { font-size: 16px; font-weight: 500; line-height: 1.5; letter-spacing: -0.02em; }
.sh-tcard-role { font-size: 16px; line-height: 1.5; letter-spacing: -0.02em; color: var(--sh-muted); }
@media (min-width: 810px) {
  .sh-tcards { flex-direction: row; height: 598px; }
  .sh-tcard { transition: flex-basis 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); }
  .sh-tcard.is-open { flex: 1 1 0%; }
  .sh-tcard:not(.is-open) { flex: 0 0 216px; cursor: pointer; }
  .sh-tcard-plus-mobile { display: none; }
  .sh-tcard:not(.is-open) .sh-tcard-spacer { display: flex; }
  .sh-tcard:not(.is-open) .sh-tcard-role { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 809px) { .sh-testimonials { padding-top: 112px; padding-bottom: 64px; } .sh-tcards { margin-top: 48px; } .sh-tcard-quote { margin-top: 28px; } }
@media (prefers-reduced-motion: reduce) { .sh-tcard { transition: none; } }

/* ---------- Why ---------- */
.sh-why { background: var(--sh-surface); padding-top: 96px; padding-bottom: 164px; }
.sh-why-grid { display: grid; gap: 48px; }
.sh-why-head { align-self: start; }
.sh-why-intro { margin-top: 24px; max-width: 400px; text-wrap: pretty; }
.sh-why-list li { padding-block: 56px; border-bottom: 1px solid var(--sh-line); }
.sh-why-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.sh-why-list li:first-child { padding-top: 0; }
.sh-icon-box { display: flex; width: 64px; height: 64px; align-items: center; justify-content: center; border-radius: 8px; background: var(--sh-card); color: #383838; }
.sh-why-list h3 { margin-top: 24px; max-width: 360px; }
.sh-why-list p { margin-top: 16px; max-width: 596px; text-wrap: pretty; }
@media (min-width: 810px) {
  .sh-why-grid { grid-template-columns: minmax(0, 400px) 1fr; gap: clamp(64px, 12vw, 252px); }
  .sh-why-head { position: sticky; top: 128px; }
  .sh-why-list li { padding-block: 64px; }
}
@media (max-width: 809px) { .sh-why { padding-bottom: 120px; } }

/* ---------- Result ---------- */
.sh-result { background: var(--sh-warm); }
.sh-result-head { display: grid; gap: 20px; max-width: 760px; }
.sh-result-head .sh-eyebrow { color: var(--sh-muted); }
.sh-result-head h2 { color: #3a3a3a; text-wrap: pretty; }
.sh-result-logo { height: 32px; width: auto; margin-top: 12px; }
.sh-stats { margin-top: 56px; border-top: 1px solid var(--sh-line); }
.sh-stat { display: grid; grid-template-columns: 1fr; align-items: center; gap: 8px; padding-block: 16px; border-bottom: 1px solid var(--sh-line); }
.sh-stat dd { order: 1; color: var(--sh-ink); }
.sh-stat dt { order: 2; max-width: 320px; color: #3a3a3a; }
@media (min-width: 810px) { .sh-stat { grid-template-columns: minmax(0, 844px) 1fr; gap: 32px; height: 160px; padding-block: 0; } }

/* ---------- Credentials (dark band) ---------- */
.sh-credentials { background: var(--sh-ink); color: #fff; padding-block: 164px; }
.sh-credentials h2 { max-width: 480px; }
/* Official marks: one row, one height, white on dark */
.sh-marks { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: 32px 88px; margin-top: 64px; }
.sh-mark a, .sh-body .sh-mark-btn { display: grid; gap: 16px; justify-items: center; text-align: center; transition: opacity 0.2s; background: transparent; border: 0; padding: 0; color: inherit; font: inherit; cursor: pointer; }
.sh-mark a:hover, .sh-body .sh-mark-btn:hover { opacity: 0.75; }
.sh-mark img { height: 96px; width: auto; max-width: 240px; object-fit: contain; }
.sh-mark img[alt="Ahrefs"] { height: 84px; }
@media (max-width: 809px) { .sh-mark img[alt="Ahrefs"] { height: 64px; } }
.sh-mark span { color: rgba(255, 255, 255, 0.6); font-weight: 400; font-size: 13px; }
@media (max-width: 809px) { .sh-marks { gap: 28px 36px; } .sh-mark img { height: 76px; } .sh-mark span { font-size: 12px; } }
.sh-cred-grid { display: grid; grid-template-columns: 1fr; margin-top: 80px; border-left: 1px solid rgba(255, 255, 255, 0.1); border-top: 1px solid rgba(255, 255, 255, 0.1); }
.sh-cred { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; min-height: 240px; padding: 24px; border-right: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.sh-cred-icon { display: flex; color: rgba(255, 255, 255, 0.85); }
.sh-cred-icon svg { width: 32px; height: 32px; }
.sh-cred-title { font-family: var(--sh-sans); font-weight: 500; font-size: 16px; line-height: 1.3; letter-spacing: -0.02em; }
.sh-body .sh-cred-link { background: transparent; border: 0; padding: 0; color: inherit; font: inherit; cursor: pointer; text-align: left; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: text-decoration-color 0.2s; }
.sh-body .sh-cred-link:hover { text-decoration-color: currentColor; }

/* ---------- Pop-up (ICO certificate) ---------- */
.sh-modal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 20px; }
.sh-modal[hidden] { display: none; }
.sh-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.72); }
.sh-modal-box { position: relative; width: min(680px, 100%); max-height: calc(100dvh - 40px); overflow: auto; background: #fff; color: var(--sh-ink); border-radius: 10px; padding: 28px 28px 24px; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4); }
.sh-body .sh-modal-close { position: absolute; top: 14px; right: 14px; display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: var(--sh-warm); border: 0; color: var(--sh-ink); cursor: pointer; }
.sh-body .sh-modal-close:hover { background: #e2e0de; }
.sh-modal-title { font-family: var(--sh-sans); font-weight: 500; font-size: 18px; letter-spacing: -0.02em; padding-right: 48px; }
.sh-modal-image { width: 100%; margin-top: 18px; border: 1px solid var(--sh-line); border-radius: 6px; }
.sh-modal-caption { margin-top: 12px; color: var(--sh-muted); }
html.sh-modal-open { overflow: hidden; }
.sh-cred-body { margin-top: 8px; color: rgba(255, 255, 255, 0.6); }
/* Phones and small tablets: two by two, with the fifth tile full width underneath */
.sh-cred-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sh-cred:nth-child(5) { grid-column: 1 / -1; }
@media (max-width: 809px) { .sh-cred { min-height: 200px; padding: 20px; gap: 24px; } }
@media (min-width: 810px) { .sh-cred-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } .sh-cred:nth-child(5) { grid-column: auto; } }
@media (max-width: 809px) { .sh-credentials { padding-block: 120px; } .sh-cred-grid { margin-top: 56px; } }

/* ---------- Questions ---------- */
.sh-faq { background: #fff; }
.sh-faq-grid { display: grid; gap: 40px; }
.sh-faq-list { border-top: 1px solid var(--sh-line); }
.sh-faq-item { display: grid; gap: 12px; padding-block: 32px; border-bottom: 1px solid var(--sh-line); }
.sh-faq-item dt { font-size: 20px; text-wrap: pretty; }
.sh-faq-item dd { text-wrap: pretty; }
@media (min-width: 810px) {
  .sh-faq-grid { grid-template-columns: minmax(0, 400px) 1fr; gap: 96px; }
  .sh-faq-grid h2 { position: sticky; top: 128px; align-self: start; }
  .sh-faq-item { grid-template-columns: minmax(0, 320px) 1fr; gap: 48px; }
}

/* ---------- Footer with closing band ---------- */
.sh-footer { background: var(--sh-ink); color: #fff; }
.sh-closing { display: flex; flex-direction: column; gap: 32px; padding: 56px 0 48px; border-bottom: 1px solid var(--sh-line-dark); }
.sh-closing h2 { max-width: 620px; }
.sh-closing-copy { margin-top: 20px; max-width: 520px; color: rgba(255, 255, 255, 0.8); text-wrap: pretty; }
.sh-closing-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.sh-closing-support { color: rgba(255, 255, 255, 0.55); max-width: 320px; }
@media (min-width: 810px) { .sh-closing { flex-direction: row; align-items: flex-start; justify-content: space-between; padding-top: 80px; padding-bottom: 72px; } .sh-closing-actions { align-items: flex-end; text-align: right; padding-top: 12px; } }
.sh-footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 16px; padding-block: 64px; }
.sh-footer-col-title { color: rgba(255, 255, 255, 0.55); }
.sh-footer-nav ul { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.sh-footer-nav a { transition: opacity 0.2s; }
.sh-footer-nav a:hover { opacity: 0.7; }
@media (min-width: 810px) { .sh-footer-nav { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
/* Accreditation badges and profile icons, carried over from the previous footer */
.sh-footer-trust { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; padding: 28px 0; border-top: 1px solid var(--sh-line-dark); }
.sh-footer-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.sh-footer-badge { display: block; }
.sh-footer-badge img { height: 68px; width: auto; }
@media (max-width: 809px) { .sh-footer-badge img { height: 102px; } .sh-footer-badges { gap: 16px; } }
.sh-body .sh-footer-chip { display: flex; align-items: center; gap: 12px; padding: 10px 16px 10px 10px; border-radius: 10px; border: 1px solid var(--sh-line-dark); background: rgba(255, 255, 255, 0.04); color: #fff; font: inherit; text-align: left; cursor: pointer; transition: background-color 0.2s; }
.sh-body .sh-footer-chip:hover { background: rgba(255, 255, 255, 0.09); }
.sh-footer-chip-icon { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }
.sh-footer-chip-icon img { height: 22px; width: auto; max-width: 26px; object-fit: contain; }
.sh-footer-chip-text { display: grid; gap: 2px; line-height: 1.3; }
.sh-footer-chip-text strong { font-size: 14px; font-weight: 500; letter-spacing: -0.02em; }
.sh-footer-chip-text span { font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.sh-footer-social { display: flex; gap: 10px; }
.sh-footer-social a { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--sh-line-dark); color: rgba(255, 255, 255, 0.85); transition: background-color 0.2s; }
.sh-footer-social a:hover { background: rgba(255, 255, 255, 0.09); }
@media (min-width: 810px) { .sh-footer-trust { flex-direction: row; align-items: center; justify-content: space-between; } }
.sh-footer-bottom { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; padding: 24px 0 28px; border-top: 1px solid var(--sh-line-dark); }
.sh-footer-logo { height: 26px; width: auto; }
@media (min-width: 810px) { .sh-footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Preview notice (editors only) ---------- */
.sh-preview-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; padding: 12px 16px; border-radius: 8px; background: #fff; color: var(--sh-ink); font-size: 14px; line-height: 1.4; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); }
.sh-preview-bar a { text-decoration: underline; text-underline-offset: 2px; }
@media (min-width: 810px) { .sh-preview-bar { left: auto; max-width: 420px; } }
