/*
Theme Name: ScholyHub
Theme URI: https://www.scholyhub.com
Author: ScholyHub
Author URI: https://www.scholyhub.com
Description: Official ScholyHub WordPress theme. Faithful section-by-section port of scholyhub.com — dark hero with animated rotator and typing search, three-step process with featured center card, gradient destination cards, AI Match with dark demo widget, dark stats section with count-up animation, testimonials carousel, services list, pricing with VIP tier, FAQ accordion, dark CTA, full footer.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scholyhub
Tags: blog, education, custom-colors, custom-menu, featured-images, threaded-comments
*/

/* ============================================================
   DESIGN TOKENS — mirror src/app/globals.css + tailwind.config
   ============================================================ */
:root {
  /* Brand */
  --sh-brand-50:  #e8f4fa;
  --sh-brand-100: #c5e3f2;
  --sh-brand-500: #0F4C81;
  --sh-brand-600: #0c3d68;
  --sh-brand-700: #092e4f;
  --sh-brand-900: #0a1628;

  --sh-accent-light: #7DD3FC;
  --sh-accent:       #2E86AB;
  --sh-accent-dark:  #0F4C81;

  /* Tailwind palette in use */
  --sh-cyan-300: #67e8f9;
  --sh-cyan-400: #22d3ee;
  --sh-cyan-500: #06b6d4;
  --sh-cyan-600: #0891b2;
  --sh-blue-500: #3b82f6;
  --sh-sky-200:  #bae6fd;
  --sh-sky-300:  #7dd3fc;
  --sh-violet-100: #ede9fe;
  --sh-violet-200: #ddd6fe;
  --sh-violet-400: #a78bfa;
  --sh-violet-500: #8b5cf6;
  --sh-violet-600: #7c3aed;
  --sh-purple-600: #9333ea;
  --sh-amber-100: #fef3c7;
  --sh-amber-400: #fbbf24;
  --sh-amber-500: #f59e0b;
  --sh-amber-600: #d97706;
  --sh-orange-500: #f97316;
  --sh-emerald-100: #d1fae5;
  --sh-emerald-400: #34d399;
  --sh-emerald-500: #10b981;
  --sh-teal-500:    #14b8a6;
  --sh-rose-50:     #fff1f2;
  --sh-rose-600:    #e11d48;
  --sh-pink-400:    #f472b6;
  --sh-pink-500:    #ec4899;
  --sh-indigo-50:   #eef2ff;
  --sh-indigo-600:  #4f46e5;

  --sh-gray-50:  #f9fafb;
  --sh-gray-100: #f3f4f6;
  --sh-gray-200: #e5e7eb;
  --sh-gray-300: #d1d5db;
  --sh-gray-400: #9ca3af;
  --sh-gray-500: #6b7280;
  --sh-gray-600: #4b5563;
  --sh-gray-700: #374151;
  --sh-gray-800: #1f2937;
  --sh-gray-900: #111827;

  --sh-footer-bg: #070e1c;

  --sh-text:        #1a1a2e;
  --sh-text-muted:  #64748b;
  --sh-bg:          #ffffff;
  --sh-bg-soft:     #f8fafc;
  --sh-border:      #e5e7eb;
  --sh-border-soft: #f1f5f9;

  --sh-radius-sm:  0.5rem;
  --sh-radius:     0.75rem;
  --sh-radius-lg:  1rem;
  --sh-radius-xl:  1.25rem;
  --sh-radius-2xl: 1.5rem;
  --sh-radius-3xl: 1.75rem;

  --sh-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --sh-shadow:    0 4px 12px rgba(0,0,0,0.06);
  --sh-shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
  --sh-shadow-xl: 0 24px 48px rgba(0,0,0,0.10);
  --sh-shadow-2xl: 0 32px 64px rgba(0,0,0,0.16);

  --sh-font-display: 'Playfair Display', Georgia, serif;
  --sh-font-body:    'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --sh-container: 1200px;
  --sh-container-narrow: 880px;
  --sh-container-wide: 1400px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sh-font-body);
  color: var(--sh-text);
  background: var(--sh-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sh-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sh-brand-500); }
::selection { background: rgba(46,134,171,0.18); }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--sh-bg-soft); }
::-webkit-scrollbar-thumb { background: var(--sh-gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sh-gray-400); }

*:focus-visible { outline: 2px solid var(--sh-accent); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sh-font-display);
  font-weight: 700;
  color: var(--sh-brand-900);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

/* Container helpers */
.sh-container { max-width: var(--sh-container); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .sh-container { padding: 0 1.5rem; } }
.sh-container--narrow { max-width: var(--sh-container-narrow); }
.sh-container--wide { max-width: var(--sh-container-wide); }

/* Section spacing */
.sh-section { padding: 3.5rem 0; }
@media (min-width: 640px) { .sh-section { padding: 6rem 0; } }
.sh-section--soft { background: var(--sh-bg-soft); }
.sh-section--gray { background: rgba(249,250,251,0.6); }

/* ============================================================
   SECTION HEADER (label + title + subtitle)
   ============================================================ */
.sh-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sh-accent);
  margin-bottom: 0.65rem;
}
.sh-section-title {
  font-family: var(--sh-font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--sh-brand-900);
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.sh-section-title .accent {
  background: linear-gradient(to right, var(--sh-accent), var(--sh-cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sh-section-sub {
  color: var(--sh-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 2rem;
}
.sh-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.sh-section-head .sh-section-sub { margin-bottom: 0; }
.sh-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}
.sh-section-head--center .sh-section-sub { margin-left: auto; margin-right: auto; }
.sh-section-head__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sh-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.sh-section-head__link:hover { text-decoration: underline; }

/* ============================================================
   BUTTONS
   ============================================================ */
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--sh-radius);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--sh-font-body);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.sh-btn--primary {
  background: linear-gradient(to right, var(--sh-accent), var(--sh-cyan-500));
  color: #fff;
  box-shadow: 0 8px 24px rgba(46,134,171,0.25);
}
.sh-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46,134,171,0.35);
  color: #fff;
}
.sh-btn--brand {
  background: linear-gradient(to right, var(--sh-brand-500), var(--sh-accent));
  color: #fff;
  box-shadow: 0 6px 18px rgba(15,76,129,0.2);
}
.sh-btn--brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15,76,129,0.3);
  color: #fff;
}
.sh-btn--amber {
  background: linear-gradient(to right, var(--sh-amber-500), var(--sh-orange-500));
  color: #fff;
  box-shadow: 0 6px 18px rgba(245,158,11,0.25);
}
.sh-btn--amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(245,158,11,0.35);
  color: #fff;
}
.sh-btn--white {
  background: #fff;
  color: var(--sh-brand-900);
}
.sh-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(255,255,255,0.15);
  color: var(--sh-brand-900);
}
.sh-btn--secondary {
  background: #fff;
  color: var(--sh-text);
  border-color: var(--sh-border);
}
.sh-btn--secondary:hover {
  border-color: var(--sh-accent);
  color: var(--sh-accent);
  background: rgba(46,134,171,0.04);
}
.sh-btn--ghost-dark {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.08);
}
.sh-btn--ghost-dark:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
}
.sh-btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }
.sh-btn .sh-arrow { transition: transform .2s ease; }
.sh-btn:hover .sh-arrow { transform: translateX(3px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.sh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--sh-border-soft);
}
.sh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--sh-container);
  margin: 0 auto;
  gap: 1rem;
}
.sh-logo {
  font-family: var(--sh-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sh-brand-500);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.sh-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--sh-brand-500), var(--sh-accent));
  color: #fff;
  font-family: var(--sh-font-body);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(15,76,129,0.25);
}
.sh-logo span { color: var(--sh-accent); }

.sh-nav { display: flex; align-items: center; gap: 1.5rem; }
.sh-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.5rem; }
.sh-nav a {
  color: var(--sh-text);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color .2s ease;
}
.sh-nav a:hover { color: var(--sh-accent); }
.sh-nav .current-menu-item > a,
.sh-nav .current_page_item > a { color: var(--sh-accent); }
.sh-nav-cta { display: inline-flex; gap: 0.5rem; }

.sh-mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--sh-brand-900);
}
@media (max-width: 960px) {
  .sh-mobile-toggle { display: inline-flex; }
  .sh-nav {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--sh-shadow);
    transform: translateY(-110%);
    transition: transform .25s ease;
    border-bottom: 1px solid var(--sh-border-soft);
    gap: 1rem;
  }
  .sh-nav.is-open { transform: translateY(0); }
  .sh-nav ul { flex-direction: column; gap: 0.75rem; width: 100%; }
  .sh-nav-cta { width: 100%; }
  .sh-nav-cta .sh-btn { flex: 1; }
}

/* ============================================================
   HERO — dark navy with everything centered
   ============================================================ */
.sh-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--sh-brand-900);
  color: #fff;
}
.sh-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.sh-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}
.sh-hero__orb--1 { width: 800px; height: 800px; top: -200px; left: -200px; background: rgba(8,145,178,0.07); }
.sh-hero__orb--2 { width: 600px; height: 600px; top: 10%; right: -100px; background: rgba(15,76,129,0.13); filter: blur(120px); }
.sh-hero__orb--3 { width: 500px; height: 500px; bottom: -100px; left: 30%; background: rgba(124,58,237,0.07); filter: blur(130px); }
.sh-hero__rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
}
.sh-hero__rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
}
.sh-hero__rule {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.04), transparent);
}
.sh-hero__rule--top    { top: 18%; }
.sh-hero__rule--bottom { bottom: 22%; }
.sh-hero__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(to top, #fff, rgba(255,255,255,0.6), transparent);
  z-index: 10;
}
.sh-hero__inner {
  position: relative;
  z-index: 20;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .sh-hero__inner { padding: 8rem 1.5rem 8rem; }
}
.sh-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  margin-bottom: 1.5rem;
  animation: sh-reveal 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.sh-hero__dot {
  position: relative;
  display: inline-flex;
  width: 8px; height: 8px;
  flex-shrink: 0;
}
.sh-hero__dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--sh-emerald-400);
  opacity: 0.6;
  animation: sh-ping 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
.sh-hero__dot::after {
  content: '';
  position: relative;
  display: inline-block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--sh-emerald-400);
}
.sh-hero__eyebrow-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.sh-hero__eyebrow-text strong { color: rgba(255,255,255,0.8); font-weight: 700; }
.sh-hero__eyebrow-sep { color: rgba(255,255,255,0.1); }
.sh-hero__eyebrow-success { font-size: 0.75rem; color: rgba(52,211,153,0.7); font-weight: 700; }
@media (max-width: 640px) {
  .sh-hero__eyebrow-sep,
  .sh-hero__eyebrow-success { display: none; }
}

.sh-hero__h1 {
  font-family: var(--sh-font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0 0 1.5rem;
  color: #fff;
  animation: sh-reveal 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 100ms;
}
.sh-hero__h1 .line {
  display: block;
  font-size: clamp(2.25rem, 7vw, 6rem);
  color: #fff;
}
.sh-hero__h1 .line--2 { margin-top: 0.25rem; }
.sh-hero__h1 .accent {
  background: linear-gradient(to right, var(--sh-cyan-300), var(--sh-sky-200), var(--sh-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  transition: opacity .4s ease, transform .4s ease, filter .4s ease;
  will-change: opacity, transform, filter;
}
.sh-hero__h1 .accent.is-leaving {
  opacity: 0;
  transform: translateY(-1.5rem) scale(0.9);
  filter: blur(8px);
}
.sh-hero__h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.5rem;
  height: 3px;
  background: linear-gradient(to right, var(--sh-cyan-400), rgba(34,211,238,0.6), transparent);
  border-radius: 999px;
}

.sh-hero__sub {
  max-width: 600px;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 2.5rem;
  animation: sh-reveal 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 200ms;
}
@media (min-width: 640px) { .sh-hero__sub { font-size: 1.125rem; } }

.sh-hero__search {
  width: 100%;
  max-width: 640px;
  margin: 0 0 2rem;
  animation: sh-reveal 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 300ms;
}
.sh-hero__search-inner {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--sh-radius-2xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .3s ease;
}
.sh-hero__search-inner:focus-within {
  border-color: rgba(34,211,238,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 60px rgba(34,211,238,0.08);
}
.sh-hero__search-input-wrap { position: relative; flex: 1; }
.sh-hero__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.2);
  pointer-events: none;
}
.sh-hero__search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--sh-radius);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--sh-font-body);
  caret-color: var(--sh-cyan-400);
}
.sh-hero__search-input::placeholder { color: rgba(255,255,255,0.2); }
.sh-hero__search-input:focus { outline: none; }
.sh-hero__search-btn {
  padding: 1rem 1.25rem;
  border-radius: var(--sh-radius);
  background: linear-gradient(to right, var(--sh-cyan-500), var(--sh-accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all .2s ease;
}
@media (min-width: 640px) { .sh-hero__search-btn { padding: 1rem 2rem; } }
.sh-hero__search-btn:hover {
  box-shadow: 0 12px 32px rgba(34,211,238,0.25);
  transform: translateY(-1px);
}

.sh-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 2.5rem;
  animation: sh-reveal 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 400ms;
}

.sh-hero__pills {
  animation: sh-reveal 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: 500ms;
}
.sh-hero__pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.sh-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all .2s ease;
}
.sh-hero__pill:hover {
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

/* Marquee */
.sh-marquee {
  position: relative;
  z-index: 20;
  margin: 0 0 6rem;
  overflow: hidden;
}
@media (min-width: 640px) { .sh-marquee { margin-bottom: 10rem; } }
.sh-marquee__inner {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: sh-scroll 30s linear infinite;
  width: max-content;
}
.sh-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0.25rem;
}
.sh-marquee__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sh-marquee__star { color: rgba(255,255,255,0.2); font-size: 1.1rem; }
.sh-marquee__icon { width: 16px; height: 16px; flex-shrink: 0; }
.sh-marquee__icon--cyan    { color: var(--sh-cyan-400); }
.sh-marquee__icon--violet  { color: var(--sh-violet-400); }
.sh-marquee__icon--amber   { color: var(--sh-amber-400); }
.sh-marquee__icon--emerald { color: var(--sh-emerald-400); }
.sh-marquee__icon--sky     { color: var(--sh-sky-300); }

/* Bouncing chevron at hero bottom */
.sh-hero__chevron {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: rgba(255,255,255,0.15);
  animation: sh-bounce 1.8s infinite;
  pointer-events: none;
}
@media (min-width: 640px) { .sh-hero__chevron { bottom: 9rem; } }

/* ============================================================
   HOW IT WORKS — 3 steps with connector line, featured middle
   ============================================================ */
.sh-how__head {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.sh-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .sh-how__grid { gap: 1.75rem; } }
@media (max-width: 880px) {
  .sh-how__grid { grid-template-columns: 1fr; gap: 1rem; }
}
.sh-how__connector {
  display: none;
  position: absolute;
  top: 56px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  z-index: 0;
  background: linear-gradient(to right, rgba(207,250,254,0.6), rgba(221,214,254,0.6), rgba(209,250,229,0.6));
}
@media (min-width: 881px) { .sh-how__connector { display: block; } }

.sh-how__step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--sh-radius-3xl);
  border: 2px solid var(--sh-gray-100);
  background: #fff;
  transition: all .3s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}
.sh-how__step:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-shadow-2xl);
  border-color: var(--sh-gray-200);
}

.sh-how__step--featured {
  border-color: var(--sh-violet-200);
  background: linear-gradient(180deg, rgba(245,243,255,0.8), #fff);
  box-shadow: 0 12px 32px rgba(139,92,246,0.1), 0 0 0 4px rgba(221,214,254,0.5);
}
@media (min-width: 881px) {
  .sh-how__step--featured {
    transform: scale(1.04);
    margin: -0.75rem 0;
  }
  .sh-how__step--featured:hover {
    transform: scale(1.04) translateY(-8px);
  }
}
.sh-how__step--featured:hover {
  box-shadow: 0 24px 48px rgba(139,92,246,0.2), 0 0 0 4px rgba(221,214,254,0.5);
}

.sh-how__step-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.sh-how__step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}
.sh-how__step:hover .sh-how__step-icon { transform: scale(1.1); }
.sh-how__step--1 .sh-how__step-icon { background: linear-gradient(135deg, var(--sh-cyan-500), var(--sh-blue-500)); }
.sh-how__step--2 .sh-how__step-icon { background: linear-gradient(135deg, var(--sh-violet-500), var(--sh-purple-600)); }
.sh-how__step--3 .sh-how__step-icon { background: linear-gradient(135deg, var(--sh-emerald-500), var(--sh-teal-500)); }

.sh-how__step-num {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sh-gray-300);
  margin-bottom: 0.15rem;
}
.sh-how__step-title {
  font-family: var(--sh-font-body);
  font-weight: 700;
  color: var(--sh-brand-900);
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
}
.sh-how__step-desc {
  font-size: 0.875rem;
  color: var(--sh-gray-500);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.sh-how__step-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.sh-how__step-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--sh-gray-600);
}
.sh-how__step-list li svg { flex-shrink: 0; }
.sh-how__step--1 .sh-how__step-list svg { color: var(--sh-cyan-500); }
.sh-how__step--2 .sh-how__step-list svg { color: var(--sh-violet-500); }
.sh-how__step--3 .sh-how__step-list svg { color: var(--sh-emerald-500); }

.sh-how__badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--sh-violet-500), var(--sh-purple-600));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(139,92,246,0.3);
}

.sh-how__cta {
  text-align: center;
  margin-top: 3rem;
}
.sh-how__cta p {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--sh-gray-400);
}

/* ============================================================
   FEATURED CARDS (Scholarships / Universities / Blog)
   ============================================================ */
.sh-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.sh-card {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-2xl);
  overflow: hidden;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.sh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  border-color: var(--sh-gray-200);
}
.sh-card__media {
  position: relative;
  display: block;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sh-brand-50), var(--sh-brand-100));
}
.sh-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.sh-card:hover .sh-card__media img { transform: scale(1.04); }
.sh-card__body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sh-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.sh-card__title {
  font-family: var(--sh-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sh-brand-900);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.sh-card__title a { color: inherit; }
.sh-card__title a:hover { color: var(--sh-accent); }
.sh-card__excerpt {
  color: var(--sh-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.sh-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--sh-border-soft);
}
.sh-card__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sh-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sh-card__link svg { transition: transform .2s ease; }
.sh-card__link:hover svg { transform: translateX(3px); }

.sh-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--sh-brand-50);
  color: var(--sh-brand-500);
}
.sh-badge--accent  { background: rgba(46,134,171,0.12); color: var(--sh-brand-500); }
.sh-badge--success { background: #dcfce7; color: #166534; }
.sh-badge--warn    { background: var(--sh-amber-100); color: #92400e; }
.sh-badge--neutral { background: var(--sh-gray-100); color: var(--sh-gray-700); }

/* ============================================================
   FIELDS OF STUDY chips
   ============================================================ */
.sh-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.sh-fields a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--sh-border);
  color: var(--sh-text);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all .2s ease;
}
.sh-fields a:hover {
  border-color: var(--sh-accent);
  color: var(--sh-accent);
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow);
}
.sh-fields .count {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--sh-brand-50);
  color: var(--sh-brand-500);
  font-size: 0.6875rem;
  font-weight: 700;
}

/* ============================================================
   DESTINATIONS — gradient hero cards with flag watermark
   ============================================================ */
.sh-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.sh-dest {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-2xl);
  overflow: hidden;
  transition: all .3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.sh-dest:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  border-color: var(--sh-gray-200);
  color: inherit;
}
.sh-dest__hero {
  position: relative;
  height: 112px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 1rem;
  color: #fff;
}
.sh-dest__hero--uk      { background: linear-gradient(135deg, #0F4C81, #2E86AB); }
.sh-dest__hero--de      { background: linear-gradient(135deg, #1a3a6b, #7c3aed); }
.sh-dest__hero--ca      { background: linear-gradient(135deg, #065f46, #0891b2); }
.sh-dest__hero--au      { background: linear-gradient(135deg, #92400e, #b45309); }
.sh-dest__hero--us      { background: linear-gradient(135deg, #831843, #be185d); }
.sh-dest__hero--default { background: linear-gradient(135deg, #1e3a5f, #0e7490); }
.sh-dest__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.sh-dest__flag-bg {
  position: absolute;
  right: -8px; bottom: -8px;
  font-size: 4.5rem;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  transition: transform .3s ease;
}
.sh-dest:hover .sh-dest__flag-bg { transform: scale(1.1); }
.sh-dest__region {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
}
.sh-dest__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
  color: #fff;
}
.sh-dest__title-flag {
  font-size: 1.6rem;
  line-height: 1;
  transition: transform .3s ease;
}
.sh-dest:hover .sh-dest__title-flag { transform: scale(1.1); }
.sh-dest__body { padding: 1.25rem; }
.sh-dest__desc {
  font-size: 0.8125rem;
  color: var(--sh-gray-500);
  line-height: 1.6;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sh-dest__stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  color: var(--sh-gray-400);
}
.sh-dest__stat { display: inline-flex; align-items: center; gap: 0.35rem; }
.sh-dest__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.sh-dest__chip {
  background: var(--sh-brand-50);
  color: var(--sh-brand-500);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.sh-dest-more {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.sh-dest-more a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--sh-radius);
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  color: var(--sh-text);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all .2s ease;
}
.sh-dest-more a:hover {
  border-color: var(--sh-accent);
  color: var(--sh-accent);
  transform: translateY(-1px);
}
.sh-dest-more__region {
  margin-left: auto;
  font-size: 0.625rem;
  color: var(--sh-gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   AI MATCH — light section, dark navy demo widget on right
   ============================================================ */
.sh-aimatch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .sh-aimatch__grid { gap: 4rem; } }
@media (max-width: 900px) {
  .sh-aimatch__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.sh-aimatch__left .sh-section-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
}
.sh-aimatch__left .sh-section-title .accent {
  display: block;
  background: linear-gradient(to right, var(--sh-accent), var(--sh-cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sh-aimatch__lead {
  color: var(--sh-gray-500);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 480px;
}
.sh-aimatch__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sh-aimatch__bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--sh-gray-600);
  font-weight: 500;
}
.sh-aimatch__bullets li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(46,134,171,0.1);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E86AB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.sh-aimatch__demo-wrap {
  position: relative;
}
.sh-aimatch__demo-glow {
  position: absolute;
  inset: -1rem;
  border-radius: var(--sh-radius-3xl);
  background: linear-gradient(135deg, rgba(46,134,171,0.15), rgba(6,182,212,0.1), rgba(139,92,246,0.1));
  filter: blur(40px);
  z-index: 0;
}
.sh-aimatch__demo {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--sh-brand-900), #0a1e36, #0d2a45);
  border-radius: var(--sh-radius-2xl);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.sh-aimatch__demo-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(34,211,238,0.5), transparent);
}
.sh-aimatch__demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sh-aimatch__demo-headl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sh-aimatch__demo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sh-cyan-500), var(--sh-accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.sh-aimatch__demo-title {
  font-family: var(--sh-font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  margin: 0;
}
.sh-aimatch__demo-sub {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.1rem;
}
.sh-aimatch__demo-tag {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--sh-cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.2);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.sh-aimatch__demo-body { padding: 1.25rem; }
.sh-aimatch__demo-section { margin-bottom: 1.25rem; }
.sh-aimatch__demo-section:last-child { margin-bottom: 0; }
.sh-aimatch__demo-section-title {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin: 0 0 0.6rem;
}
.sh-aimatch__rows { display: flex; flex-direction: column; gap: 0.4rem; }
.sh-aimatch__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--sh-radius-sm);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  font-size: 0.8125rem;
}
.sh-aimatch__row-icon {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.sh-aimatch__row-icon--cyan    svg { color: var(--sh-cyan-400); }
.sh-aimatch__row-icon--emerald svg { color: var(--sh-emerald-400); }
.sh-aimatch__row-icon--violet  svg { color: var(--sh-violet-400); }
.sh-aimatch__row-icon--amber   svg { color: var(--sh-amber-400); }
.sh-aimatch__row-icon--pink    svg { color: var(--sh-pink-400); }
.sh-aimatch__row-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex: 1;
}
.sh-aimatch__row-label { color: rgba(255,255,255,0.55); font-size: 0.75rem; }
.sh-aimatch__row-value { color: #fff; font-weight: 600; font-size: 0.8125rem; }

.sh-aimatch__matches {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sh-aimatch__match {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--sh-radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all .2s ease;
}
.sh-aimatch__match:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.sh-aimatch__match-flag { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.sh-aimatch__match-info { flex: 1; min-width: 0; }
.sh-aimatch__match-name { font-size: 0.8125rem; font-weight: 700; color: #fff; }
.sh-aimatch__match-desc { font-size: 0.6875rem; color: rgba(255,255,255,0.45); margin-top: 0.1rem; }
.sh-aimatch__match-pct { text-align: right; flex-shrink: 0; }
.sh-aimatch__match-pct strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--sh-cyan-400), var(--sh-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.sh-aimatch__match-pct small {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
  display: inline-block;
}

/* ============================================================
   STATS — DARK navy with animated count-up
   ============================================================ */
.sh-stats {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.sh-stats__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #03080f, #08172b, #0a1f3a);
  pointer-events: none;
}
.sh-stats__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 1px);
  background-size: 28px 28px;
}
.sh-stats__glow1 {
  position: absolute;
  top: 0; left: 33%;
  width: 500px; height: 300px;
  border-radius: 50%;
  background: rgba(6,182,212,0.05);
  filter: blur(100px);
  pointer-events: none;
}
.sh-stats__glow2 {
  position: absolute;
  bottom: 0; right: 33%;
  width: 400px; height: 300px;
  border-radius: 50%;
  background: rgba(139,92,246,0.05);
  filter: blur(100px);
  pointer-events: none;
}
.sh-stats__inner {
  position: relative;
  z-index: 1;
}
.sh-stats__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}
.sh-stats__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sh-cyan-400);
  animation: sh-pulse 2s ease-in-out infinite;
}
.sh-stats__eyebrow-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sh-cyan-400);
}
.sh-stats h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 2.5rem); }
.sh-stats h2 .accent {
  background: linear-gradient(to right, var(--sh-cyan-400), #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sh-stats__sub {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  max-width: 400px;
  margin: 0.75rem auto 3rem;
  text-align: center;
}

.sh-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}
@media (max-width: 1024px) { .sh-stats__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .sh-stats__grid { grid-template-columns: repeat(2, 1fr); } }

.sh-stats__card {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--sh-radius-2xl);
  backdrop-filter: blur(8px);
  transition: all .3s ease;
  cursor: default;
}
.sh-stats__card:hover { transform: scale(1.05); }
.sh-stats__card--cyan    { background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.20); }
.sh-stats__card--emerald { background: rgba(52,211,153,0.10); border: 1px solid rgba(52,211,153,0.20); }
.sh-stats__card--violet  { background: rgba(167,139,250,0.10); border: 1px solid rgba(167,139,250,0.20); }
.sh-stats__card--amber   { background: rgba(251,191,36,0.10); border: 1px solid rgba(251,191,36,0.20); }
.sh-stats__card--pink    { background: rgba(244,114,182,0.10); border: 1px solid rgba(244,114,182,0.20); }
.sh-stats__card--yellow  { background: rgba(250,204,21,0.10);  border: 1px solid rgba(250,204,21,0.20); }

.sh-stats__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: transform .3s ease;
}
.sh-stats__card:hover .sh-stats__icon { transform: scale(1.1); }
.sh-stats__card--cyan    .sh-stats__icon { background: rgba(34,211,238,0.1);  border: 1px solid rgba(34,211,238,0.2);  color: var(--sh-cyan-400); }
.sh-stats__card--emerald .sh-stats__icon { background: rgba(52,211,153,0.1);  border: 1px solid rgba(52,211,153,0.2);  color: var(--sh-emerald-400); }
.sh-stats__card--violet  .sh-stats__icon { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2); color: var(--sh-violet-400); }
.sh-stats__card--amber   .sh-stats__icon { background: rgba(251,191,36,0.1);  border: 1px solid rgba(251,191,36,0.2);  color: var(--sh-amber-400); }
.sh-stats__card--pink    .sh-stats__icon { background: rgba(244,114,182,0.1); border: 1px solid rgba(244,114,182,0.2); color: var(--sh-pink-400); }
.sh-stats__card--yellow  .sh-stats__icon { background: rgba(250,204,21,0.1);  border: 1px solid rgba(250,204,21,0.2);  color: #facc15; }

.sh-stats__num {
  font-family: var(--sh-font-body);
  font-weight: 800;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
@media (min-width: 640px) { .sh-stats__num { font-size: 2rem; } }
.sh-stats__label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.sh-stats__note {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  margin-top: 2rem;
}

/* ============================================================
   TESTIMONIALS — carousel with gradient avatars
   ============================================================ */
.sh-testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.sh-testimonials-stats {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}
.sh-testimonials-stats > div { text-align: right; }
.sh-testimonials-stats strong {
  display: block;
  font-family: var(--sh-font-display);
  font-size: 1.5rem;
  color: var(--sh-brand-900);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.sh-testimonials-stats span {
  display: block;
  font-size: 0.625rem;
  color: var(--sh-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.sh-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.sh-testi {
  background: #fff;
  border-radius: var(--sh-radius-2xl);
  border: 1px solid var(--sh-gray-100);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  position: relative;
}
.sh-testi:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-shadow-xl);
  border-color: var(--sh-gray-200);
}
.sh-testi__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.75rem;
}
.sh-testi__badge {
  display: inline-flex;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sh-accent);
  background: var(--sh-brand-50);
  padding: 0.3rem 0.625rem;
  border-radius: 0.5rem;
}
.sh-testi__stars { display: flex; gap: 0.15rem; }
.sh-testi__stars svg { color: var(--sh-amber-400); fill: var(--sh-amber-400); }
.sh-testi__quote {
  color: var(--sh-gray-700);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  flex: 1;
}
.sh-testi__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sh-border-soft);
}
.sh-testi__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.sh-testi__avatar--blue   { background: linear-gradient(135deg, var(--sh-blue-500), var(--sh-cyan-500)); }
.sh-testi__avatar--violet { background: linear-gradient(135deg, var(--sh-violet-500), var(--sh-purple-600)); }
.sh-testi__avatar--green  { background: linear-gradient(135deg, var(--sh-emerald-500), var(--sh-teal-500)); }
.sh-testi__avatar--amber  { background: linear-gradient(135deg, var(--sh-amber-500), var(--sh-orange-500)); }
.sh-testi__avatar--pink   { background: linear-gradient(135deg, var(--sh-pink-500), var(--sh-rose-600)); }
.sh-testi__avatar--teal   { background: linear-gradient(135deg, var(--sh-teal-500), var(--sh-cyan-500)); }
.sh-testi__author-name {
  font-weight: 700;
  color: var(--sh-brand-900);
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.sh-testi__author-name-flag { font-size: 1rem; }
.sh-testi__author-role { color: var(--sh-gray-500); font-size: 0.75rem; margin-top: 0.1rem; }
.sh-testi__author-route { color: var(--sh-accent); font-size: 0.6875rem; font-weight: 700; margin-top: 0.15rem; }

/* ============================================================
   SERVICES — compact horizontal cards
   ============================================================ */
.sh-services-head {
  text-align: center;
  margin-bottom: 3rem;
}
.sh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.sh-service {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  border-radius: var(--sh-radius-2xl);
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  transition: all .3s ease;
  text-decoration: none;
  color: inherit;
}
.sh-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-shadow-lg);
  border-color: var(--sh-gray-200);
  color: inherit;
}
.sh-service__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-service__icon--blue    { background: #eff6ff; color: #2563eb; }
.sh-service__icon--brand   { background: var(--sh-brand-50); color: var(--sh-brand-500); }
.sh-service__icon--amber   { background: var(--sh-amber-100); color: var(--sh-amber-600); }
.sh-service__icon--rose    { background: var(--sh-rose-50); color: var(--sh-rose-600); }
.sh-service__icon--emerald { background: var(--sh-emerald-100); color: var(--sh-emerald-500); }
.sh-service__icon--indigo  { background: var(--sh-indigo-50); color: var(--sh-indigo-600); }
.sh-service__body { flex: 1; min-width: 0; }
.sh-service__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.sh-service__title {
  font-family: var(--sh-font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--sh-brand-900);
  margin: 0;
  transition: color .2s ease;
}
.sh-service:hover .sh-service__title { color: var(--sh-accent); }
.sh-service__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--sh-amber-600);
  background: var(--sh-amber-100);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}
.sh-service__desc {
  color: var(--sh-gray-500);
  font-size: 0.75rem;
  line-height: 1.55;
  margin: 0;
}
.sh-service__arrow {
  color: var(--sh-gray-300);
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all .2s ease;
}
.sh-service:hover .sh-service__arrow {
  color: var(--sh-accent);
  transform: translateX(3px);
}

/* ============================================================
   PRICING — 3 tiers, featured middle, amber VIP
   ============================================================ */
.sh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .sh-pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.sh-price {
  position: relative;
  background: #fff;
  border-radius: var(--sh-radius-2xl);
  border: 1px solid var(--sh-gray-100);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.sh-price:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-shadow-xl);
  border-color: var(--sh-gray-200);
}
.sh-price--featured {
  border-color: rgba(46,134,171,0.25);
  box-shadow: 0 0 0 2px rgba(46,134,171,0.1);
}
.sh-price--featured:hover {
  box-shadow: 0 0 0 2px rgba(46,134,171,0.1), 0 24px 48px rgba(46,134,171,0.15);
}
@media (min-width: 881px) {
  .sh-price--featured { transform: scale(1.03); margin: -0.5rem 0; }
  .sh-price--featured:hover { transform: scale(1.03) translateY(-6px); }
}
.sh-price--vip {
  background: linear-gradient(180deg, rgba(254,243,199,0.8), #fff);
  border-color: rgba(251,191,36,0.4);
}
.sh-price--vip:hover { box-shadow: 0 24px 48px rgba(245,158,11,0.15); }

.sh-price__ribbon {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 5;
}
.sh-price__ribbon--popular {
  background: linear-gradient(to right, var(--sh-accent), var(--sh-cyan-500));
  box-shadow: 0 4px 12px rgba(46,134,171,0.3);
}
.sh-price__ribbon--vip {
  background: linear-gradient(to right, var(--sh-amber-500), var(--sh-orange-500));
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}
.sh-price__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.sh-price__head-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sh-price__head-icon--gray   { background: var(--sh-gray-100); color: var(--sh-gray-500); }
.sh-price__head-icon--accent { background: rgba(46,134,171,0.1); color: var(--sh-accent); }
.sh-price__head-icon--amber  { background: var(--sh-amber-100); color: var(--sh-amber-600); }
.sh-price__name {
  font-family: var(--sh-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sh-brand-900);
  margin: 0;
}
.sh-price__amount-row { margin: 0 0 0.75rem; }
.sh-price__amount {
  font-family: var(--sh-font-body);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--sh-brand-900);
  line-height: 1;
}
.sh-price__period {
  font-size: 0.875rem;
  color: var(--sh-gray-400);
  margin-left: 0.1rem;
}
.sh-price__stats {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.sh-price__stat-box {
  flex: 1;
  text-align: center;
  padding: 0.6rem;
  border-radius: var(--sh-radius);
  background: rgba(46,134,171,0.04);
}
.sh-price--vip .sh-price__stat-box { background: var(--sh-amber-100); }
.sh-price__stat-box strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--sh-accent);
}
.sh-price--vip .sh-price__stat-box strong { color: var(--sh-amber-600); }
.sh-price__stat-box span {
  font-size: 0.5625rem;
  color: var(--sh-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.sh-price__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sh-price__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--sh-gray-600);
}
.sh-price__features li svg { flex-shrink: 0; color: var(--sh-emerald-500); }
.sh-price--featured .sh-price__features li svg { color: var(--sh-accent); }
.sh-price--vip .sh-price__features li svg { color: var(--sh-amber-500); }
.sh-price__cta {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--sh-radius);
  background: linear-gradient(to right, var(--sh-brand-500), var(--sh-accent));
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all .3s ease;
  text-decoration: none;
}
.sh-price__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(46,134,171,0.25);
  color: #fff;
}
.sh-price--vip .sh-price__cta {
  background: linear-gradient(to right, var(--sh-amber-500), var(--sh-orange-500));
}
.sh-price--vip .sh-price__cta:hover { box-shadow: 0 8px 20px rgba(245,158,11,0.25); }

/* ============================================================
   FAQ — smooth accordion
   ============================================================ */
.sh-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sh-faq__item {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius);
  transition: all .2s ease;
}
.sh-faq__item:hover { border-color: var(--sh-gray-200); }
.sh-faq__item[open] {
  border-color: rgba(46,134,171,0.25);
  box-shadow: 0 4px 12px rgba(46,134,171,0.06);
}
.sh-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--sh-brand-900);
  font-family: var(--sh-font-body);
  font-size: 0.9375rem;
}
.sh-faq__item summary::-webkit-details-marker { display: none; }
.sh-faq__icon {
  flex-shrink: 0;
  color: var(--sh-accent);
  transition: transform .3s ease;
}
.sh-faq__item[open] .sh-faq__icon { transform: rotate(180deg); }
.sh-faq__answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--sh-gray-600);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.sh-final-cta {
  background: linear-gradient(135deg, var(--sh-brand-900), var(--sh-brand-700), #0a1e36);
  color: #fff;
  border-radius: var(--sh-radius-3xl);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .sh-final-cta { padding: 4rem 3rem; } }
.sh-final-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -200px; right: -200px;
  border-radius: 50%;
  background: rgba(34,211,238,0.1);
  filter: blur(100px);
}
.sh-final-cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -200px; left: -100px;
  border-radius: 50%;
  background: rgba(139,92,246,0.08);
  filter: blur(100px);
}
.sh-final-cta__inner { position: relative; z-index: 1; }
.sh-final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--sh-cyan-300);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.sh-final-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}
.sh-final-cta h2 .accent {
  background: linear-gradient(to right, var(--sh-cyan-300), var(--sh-accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sh-final-cta p {
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.65;
}
.sh-final-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.sh-final-cta__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 600px) { .sh-final-cta__stats { grid-template-columns: repeat(2, 1fr); } }
.sh-final-cta__stat strong {
  display: block;
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}
.sh-final-cta__stat span {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.sh-footer {
  background: var(--sh-footer-bg);
  color: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}
.sh-footer__accent {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(46,134,171,0.5), transparent);
}
.sh-footer__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.sh-footer__glow {
  position: absolute;
  top: 0; left: 33%;
  width: 500px; height: 200px;
  border-radius: 50%;
  background: rgba(46,134,171,0.04);
  filter: blur(80px);
  pointer-events: none;
}

.sh-newsletter {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}
.sh-newsletter__inner {
  max-width: var(--sh-container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 760px) {
  .sh-newsletter__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
}
.sh-newsletter__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sh-cyan-400);
  margin-bottom: 0.5rem;
}
.sh-newsletter h3 {
  color: #fff;
  font-family: var(--sh-font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.sh-newsletter p { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin: 0; }
.sh-newsletter__form { display: flex; gap: 0.5rem; }
@media (max-width: 760px) { .sh-newsletter__form { max-width: 480px; margin: 0 auto; } }
.sh-newsletter__form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: var(--sh-radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
}
.sh-newsletter__form input::placeholder { color: rgba(255,255,255,0.3); }
.sh-newsletter__form input:focus {
  outline: none;
  border-color: var(--sh-cyan-400);
  background: rgba(255,255,255,0.06);
}
.sh-newsletter__form button {
  padding: 0.85rem 1.5rem;
  border-radius: var(--sh-radius);
  background: linear-gradient(135deg, var(--sh-cyan-500), var(--sh-accent));
  color: #fff;
  border: 0;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
}

.sh-footer__main {
  max-width: var(--sh-container);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) { .sh-footer__main { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (max-width: 700px) {
  .sh-footer__main { grid-template-columns: 1fr 1fr; }
  .sh-footer__brand { grid-column: 1 / -1; }
}
.sh-footer__brand h3 {
  color: #fff;
  font-family: var(--sh-font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}
.sh-footer__brand p { font-size: 0.875rem; line-height: 1.65; max-width: 320px; margin: 0 0 1.25rem; }
.sh-footer__contact { font-size: 0.8125rem; line-height: 1.85; }
.sh-footer__contact a { color: rgba(255,255,255,0.7); }
.sh-footer__contact a:hover { color: #fff; }
.sh-footer__pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.sh-footer__pill {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.sh-footer__col h4 {
  color: #fff;
  font-family: var(--sh-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}
.sh-footer__col ul { list-style: none; padding: 0; margin: 0; }
.sh-footer__col li { margin-bottom: 0.55rem; font-size: 0.875rem; }
.sh-footer__col a { color: rgba(255,255,255,0.55); }
.sh-footer__col a:hover { color: #fff; }

.sh-footer__bottom {
  max-width: var(--sh-container);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}
.sh-socials { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.sh-socials a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all .2s ease;
}
.sh-socials a:hover {
  background: rgba(46,134,171,0.15);
  border-color: var(--sh-accent);
  color: #fff;
  transform: translateY(-1px);
}
.sh-socials svg { width: 14px; height: 14px; }

/* ============================================================
   CONTENT pages
   ============================================================ */
.sh-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.sh-content p { margin: 0 0 1.15rem; line-height: 1.75; font-size: 1.0625rem; }
.sh-content ul, .sh-content ol { padding-left: 1.5rem; margin: 0 0 1.15rem; }
.sh-content li { margin-bottom: 0.4rem; }
.sh-content blockquote {
  border-left: 3px solid var(--sh-accent);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--sh-gray-500);
  font-style: italic;
}
.sh-content img { border-radius: var(--sh-radius); margin: 1rem 0; }
.sh-content a {
  color: var(--sh-accent);
  font-weight: 600;
  border-bottom: 1.5px solid rgba(46,134,171,0.35);
}
.sh-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.sh-content th, .sh-content td { padding: 0.65rem 0.85rem; border: 1px solid var(--sh-border); text-align: left; }
.sh-content th { background: var(--sh-bg-soft); font-weight: 700; }

.sh-post-meta {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  color: var(--sh-gray-500); font-size: 0.875rem; margin: 0.5rem 0 1.5rem;
}
.sh-post-meta a { color: var(--sh-gray-500); }
.sh-post-meta a:hover { color: var(--sh-accent); }

.sh-archive-header {
  padding: 3rem 0 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--sh-brand-50), #fff);
}
.sh-archive-header h1 { margin-bottom: 0.25rem; }
.sh-archive-header p { color: var(--sh-gray-500); max-width: 640px; margin: 0 auto; }

.sh-pagination { display: flex; justify-content: center; gap: 0.5rem; margin: 2rem 0; flex-wrap: wrap; }
.sh-pagination a, .sh-pagination span {
  padding: 0.5rem 0.9rem;
  border-radius: var(--sh-radius-sm);
  border: 1px solid var(--sh-border);
  color: var(--sh-text);
  font-weight: 600;
  font-size: 0.875rem;
}
.sh-pagination a:hover { background: var(--sh-accent); border-color: var(--sh-accent); color: #fff; }
.sh-pagination .current { background: var(--sh-brand-500); border-color: var(--sh-brand-500); color: #fff; }

/* Forms */
input[type="text"], input[type="email"], input[type="password"],
input[type="search"], input[type="url"], input[type="tel"],
input[type="number"], input[type="date"], textarea, select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--sh-radius-sm);
  border: 1px solid var(--sh-border);
  font-family: var(--sh-font-body);
  font-size: 0.95rem;
  background: #fff;
  transition: all .2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--sh-accent);
  box-shadow: 0 0 0 3px rgba(46,134,171,0.15);
}
label { font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 0.4rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes sh-reveal {
  from { opacity: 0; transform: translateY(32px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sh-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes sh-ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes sh-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
@keyframes sh-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -8px); }
}
@keyframes sh-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal targets */
.sh-reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(0.16,1,0.3,1), transform .6s cubic-bezier(0.16,1,0.3,1);
}
.sh-reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* WP required classes */
.alignleft  { float: left;  margin: 0 1.25rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.25rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: 0.85rem; color: var(--sh-gray-500); text-align: center; }
.sticky { position: relative; }
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px;
  overflow: hidden;
}
.bypostauthor { display: block; }

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

/* ============================================================
   ============================================================
   INNER PAGES (v1.4.0)
   ============================================================
   ============================================================ */

/* ------------------------------------------------------------
   PAGE HERO — dark navy with breadcrumb + title
   ------------------------------------------------------------ */
.sh-page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--sh-brand-900), #0a1e36, #0d2a45);
  color: #fff;
  padding: 4rem 0 5rem;
  overflow: hidden;
}
@media (min-width: 640px) { .sh-page-hero { padding: 5rem 0 6rem; } }
.sh-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.sh-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to top, #f8f9fb, transparent);
  pointer-events: none;
}
.sh-page-hero__inner {
  position: relative;
  z-index: 1;
}
.sh-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.sh-breadcrumb a { color: rgba(255,255,255,0.45); transition: color .2s ease; }
.sh-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.sh-breadcrumb svg { width: 12px; height: 12px; }
.sh-breadcrumb__current { color: rgba(255,255,255,0.7); font-weight: 500; }

.sh-page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.sh-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}
.sh-page-hero__badge--funded   { background: rgba(52,211,153,0.15); color: #6ee7b7; border-color: rgba(52,211,153,0.25); }
.sh-page-hero__badge--partial  { background: rgba(251,191,36,0.15); color: #fde68a; border-color: rgba(251,191,36,0.25); }
.sh-page-hero__badge--deadline { background: rgba(239,68,68,0.2);   color: #fca5a5; border-color: rgba(239,68,68,0.25); }
.sh-page-hero__badge--active   { background: rgba(34,211,238,0.15); color: #67e8f9; border-color: rgba(34,211,238,0.25); }

.sh-page-hero__title {
  font-family: var(--sh-font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.sh-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.sh-page-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.sh-page-hero__meta a { color: inherit; }
.sh-page-hero__meta a:hover { color: #fff; }
.sh-page-hero__lead {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0;
}

/* Wider variant for archive pages */
.sh-page-hero--archive { padding: 4rem 0 4.5rem; text-align: center; }
.sh-page-hero--archive .sh-breadcrumb { justify-content: center; }
.sh-page-hero--archive .sh-page-hero__lead { margin: 0 auto; }

/* ------------------------------------------------------------
   ARCHIVE / LISTING LAYOUT — sidebar + grid
   ------------------------------------------------------------ */
.sh-listing {
  position: relative;
  background: #f8f9fb;
  padding: 0 0 4rem;
  margin-top: -2rem;
}
.sh-listing__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .sh-listing__inner { grid-template-columns: 1fr; gap: 1rem; }
}

/* Toolbar above grid */
.sh-listing__toolbar {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-lg);
  padding: 0.85rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--sh-shadow-sm);
}
.sh-listing__search {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.sh-listing__search svg {
  position: absolute;
  left: 0.85rem; top: 50%;
  transform: translateY(-50%);
  color: var(--sh-gray-400);
  pointer-events: none;
}
.sh-listing__search input {
  width: 100%;
  padding: 0.6rem 0.85rem 0.6rem 2.25rem;
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-gray-200);
  background: var(--sh-bg-soft);
  font-size: 0.875rem;
  transition: all .2s ease;
}
.sh-listing__search input:focus {
  outline: none;
  border-color: var(--sh-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46,134,171,0.1);
}
.sh-listing__count {
  font-size: 0.8125rem;
  color: var(--sh-gray-500);
  font-weight: 600;
}
.sh-listing__count strong { color: var(--sh-brand-900); }
.sh-listing__sort {
  padding: 0.55rem 0.75rem;
  border-radius: var(--sh-radius);
  border: 1px solid var(--sh-gray-200);
  background: var(--sh-bg-soft);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sh-text);
  font-family: inherit;
  cursor: pointer;
  width: auto;
}
.sh-listing__view-toggle {
  display: inline-flex;
  border: 1px solid var(--sh-gray-200);
  border-radius: var(--sh-radius);
  overflow: hidden;
  background: var(--sh-bg-soft);
}
.sh-listing__view-toggle button {
  padding: 0.55rem 0.7rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--sh-gray-500);
  font-family: inherit;
}
.sh-listing__view-toggle button.is-active {
  background: var(--sh-accent);
  color: #fff;
}
.sh-listing__filter-toggle {
  display: none;
  padding: 0.55rem 0.85rem;
  background: var(--sh-accent);
  color: #fff;
  border: 0;
  border-radius: var(--sh-radius);
  font-weight: 600;
  font-size: 0.8125rem;
  font-family: inherit;
  cursor: pointer;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 960px) {
  .sh-listing__filter-toggle { display: inline-flex; }
}

/* Filter sidebar */
.sh-filters {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-lg);
  padding: 1.25rem;
  box-shadow: var(--sh-shadow-sm);
  position: sticky;
  top: 96px;
}
@media (max-width: 960px) {
  .sh-filters {
    display: none;
    position: static;
    margin-bottom: 1rem;
  }
  .sh-filters.is-open { display: block; }
}
.sh-filters__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--sh-border-soft);
}
.sh-filters__head h3 {
  font-family: var(--sh-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sh-brand-900);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.sh-filters__clear {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sh-accent);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.sh-filters__clear:hover { text-decoration: underline; }
.sh-filters__group { margin-bottom: 1.25rem; }
.sh-filters__group:last-child { margin-bottom: 0; }
.sh-filters__group-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sh-gray-500);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sh-filters__options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sh-filters__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--sh-radius);
  font-size: 0.8125rem;
  color: var(--sh-gray-600);
  cursor: pointer;
  transition: all .15s ease;
  border: 1px solid transparent;
}
.sh-filters__option:hover {
  background: var(--sh-bg-soft);
  color: var(--sh-text);
}
.sh-filters__option.is-active {
  background: rgba(46,134,171,0.08);
  color: var(--sh-accent);
  font-weight: 600;
  border-color: rgba(46,134,171,0.18);
}
.sh-filters__option-icon { font-size: 1rem; line-height: 1; }
.sh-filters__option-count {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--sh-gray-400);
  font-weight: 600;
}

/* Active filter chips above results */
.sh-listing__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.sh-listing__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: rgba(46,134,171,0.1);
  color: var(--sh-accent);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.sh-listing__chip button {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
}

/* List view variant */
.sh-listing__results--list { display: flex; flex-direction: column; gap: 0.85rem; }
.sh-card--list {
  flex-direction: row;
  align-items: stretch;
}
.sh-card--list .sh-card__media {
  width: 200px;
  height: auto;
  min-height: 140px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .sh-card--list { flex-direction: column; }
  .sh-card--list .sh-card__media { width: 100%; height: 160px; }
}
.sh-listing__empty {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-lg);
  padding: 3rem 1.5rem;
  text-align: center;
}
.sh-listing__empty h3 {
  font-family: var(--sh-font-body);
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: var(--sh-brand-900);
}
.sh-listing__empty p { color: var(--sh-gray-500); font-size: 0.875rem; margin: 0; }

/* ------------------------------------------------------------
   SINGLE DETAIL PAGE — content + sticky sidebar
   ------------------------------------------------------------ */
.sh-detail {
  background: #f8f9fb;
  padding: 0 0 4rem;
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}
.sh-detail__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .sh-detail__layout { grid-template-columns: 1fr; }
}
.sh-detail__main { min-width: 0; }

/* Cards inside detail pages */
.sh-detail__card {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-2xl);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--sh-shadow-sm);
}
.sh-detail__card-head {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid transparent;
}
.sh-detail__card-head--collapsible {
  cursor: pointer;
  transition: background .15s ease;
}
.sh-detail__card-head--collapsible:hover { background: rgba(248,250,252,0.6); }
.sh-detail__card-title {
  font-family: var(--sh-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--sh-brand-900);
}
.sh-detail__card-title svg { color: var(--sh-accent); }
.sh-detail__card-body { padding: 0 1.5rem 1.5rem; }
.sh-detail__card-body p { color: var(--sh-gray-700); line-height: 1.75; margin: 0 0 1rem; font-size: 0.95rem; }
.sh-detail__card-body p:last-child { margin-bottom: 0; }
.sh-detail__card-body ul, .sh-detail__card-body ol {
  color: var(--sh-gray-700);
  line-height: 1.75;
  font-size: 0.95rem;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
.sh-detail__card-body li { margin-bottom: 0.45rem; }
.sh-detail__card-body h2,
.sh-detail__card-body h3 {
  font-family: var(--sh-font-display);
  margin: 1.5rem 0 0.5rem;
  color: var(--sh-brand-900);
}
.sh-detail__card-body h2 { font-size: 1.25rem; }
.sh-detail__card-body h3 { font-size: 1.05rem; }
.sh-detail__card-body img { border-radius: var(--sh-radius); margin: 1rem 0; }
.sh-detail__card-body a { color: var(--sh-accent); font-weight: 600; }
.sh-detail__card-body a:hover { text-decoration: underline; }

/* Quick info grid inside detail */
.sh-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sh-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem;
  border-radius: var(--sh-radius);
  background: var(--sh-bg-soft);
  border: 1px solid var(--sh-gray-100);
}
.sh-info-item__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(46,134,171,0.1);
  color: var(--sh-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-info-item__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sh-gray-400);
  margin-bottom: 0.15rem;
}
.sh-info-item__value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sh-brand-900);
  line-height: 1.4;
}

/* Sticky sidebar */
.sh-detail__aside { position: sticky; top: 96px; }
@media (max-width: 1024px) { .sh-detail__aside { position: static; } }
.sh-apply-card {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-2xl);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--sh-shadow);
}
.sh-apply-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.75rem;
}
.sh-apply-card__price {
  font-family: var(--sh-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sh-brand-900);
  line-height: 1;
  margin: 0 0 0.25rem;
}
.sh-apply-card__price-label {
  font-size: 0.7rem;
  color: var(--sh-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.sh-apply-card__deadline {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: var(--sh-radius);
  padding: 0.6rem 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sh-apply-card__deadline-icon {
  color: #ef4444;
  flex-shrink: 0;
}
.sh-apply-card__deadline-text {
  font-size: 0.7rem;
  color: #b91c1c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sh-apply-card__deadline-date {
  font-size: 0.8125rem;
  color: #991b1b;
  font-weight: 600;
}
.sh-apply-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.95rem 1rem;
  border-radius: var(--sh-radius);
  background: linear-gradient(to right, var(--sh-accent), var(--sh-cyan-500));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  border: 0;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.sh-apply-card__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(46,134,171,0.25);
  color: #fff;
}
.sh-apply-card__btn--secondary {
  background: var(--sh-bg-soft);
  color: var(--sh-text);
  border: 1px solid var(--sh-gray-200);
  margin-bottom: 0;
}
.sh-apply-card__btn--secondary:hover {
  background: #fff;
  border-color: var(--sh-accent);
  color: var(--sh-accent);
  box-shadow: var(--sh-shadow-sm);
}
.sh-apply-card__divider {
  height: 1px;
  background: var(--sh-border-soft);
  margin: 1rem 0;
}
.sh-apply-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sh-apply-card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: var(--sh-gray-600);
}
.sh-apply-card__list-item svg { color: var(--sh-emerald-500); flex-shrink: 0; margin-top: 0.15rem; }

/* Sticky bottom apply bar (mobile) */
.sh-sticky-apply {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--sh-gray-200);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,0.06);
}
@media (max-width: 1024px) { .sh-sticky-apply { display: flex; gap: 0.6rem; align-items: center; } }
.sh-sticky-apply__info {
  flex: 1;
  min-width: 0;
}
.sh-sticky-apply__label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sh-gray-400);
  font-weight: 600;
}
.sh-sticky-apply__value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sh-brand-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sh-sticky-apply__btn {
  padding: 0.7rem 1.15rem;
  background: linear-gradient(to right, var(--sh-accent), var(--sh-cyan-500));
  color: #fff;
  border-radius: var(--sh-radius);
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sh-sticky-apply__btn:hover { color: #fff; }
@media (max-width: 1024px) {
  body.sh-has-sticky-apply { padding-bottom: 80px; }
}

/* ------------------------------------------------------------
   SINGLE BLOG POST — magazine layout
   ------------------------------------------------------------ */
.sh-post {
  background: #fff;
  border-radius: var(--sh-radius-2xl);
  border: 1px solid var(--sh-gray-100);
  overflow: hidden;
  box-shadow: var(--sh-shadow-sm);
}
.sh-post__cover {
  position: relative;
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}
.sh-post__cover img { width: 100%; height: auto; display: block; }
.sh-post__body { padding: 2rem 1.5rem; }
@media (min-width: 640px) { .sh-post__body { padding: 2.5rem 3rem; } }
.sh-post__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--sh-border-soft);
  border-bottom: 1px solid var(--sh-border-soft);
  margin: 0 0 2rem;
}
.sh-post__author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sh-brand-500), var(--sh-accent));
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-post__author-name { font-weight: 700; color: var(--sh-brand-900); font-size: 0.9375rem; }
.sh-post__author-meta { color: var(--sh-gray-500); font-size: 0.8125rem; }
.sh-post__share {
  margin-left: auto;
  display: flex;
  gap: 0.4rem;
}
.sh-post__share a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--sh-bg-soft);
  color: var(--sh-gray-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.sh-post__share a:hover {
  background: var(--sh-accent);
  color: #fff;
  transform: translateY(-1px);
}

.sh-post__content { font-size: 1.0625rem; line-height: 1.75; color: var(--sh-gray-700); }
.sh-post__content > * { margin-bottom: 1.15rem; }
.sh-post__content h2 {
  font-family: var(--sh-font-display);
  font-size: 1.6rem;
  color: var(--sh-brand-900);
  margin: 2.25rem 0 0.75rem;
  font-weight: 700;
}
.sh-post__content h3 {
  font-family: var(--sh-font-display);
  font-size: 1.25rem;
  color: var(--sh-brand-900);
  margin: 1.75rem 0 0.5rem;
  font-weight: 700;
}
.sh-post__content a { color: var(--sh-accent); font-weight: 600; }
.sh-post__content a:hover { text-decoration: underline; }
.sh-post__content blockquote {
  border-left: 4px solid var(--sh-accent);
  padding: 0.85rem 0 0.85rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--sh-gray-600);
  background: var(--sh-bg-soft);
  border-radius: 0 var(--sh-radius) var(--sh-radius) 0;
}
.sh-post__content pre {
  background: #0a1628;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: var(--sh-radius);
  overflow-x: auto;
  font-size: 0.875rem;
}
.sh-post__content code {
  background: var(--sh-bg-soft);
  border: 1px solid var(--sh-gray-200);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.875em;
  color: var(--sh-rose-600);
}
.sh-post__content pre code { background: transparent; border: 0; color: inherit; padding: 0; }
.sh-post__content img { border-radius: var(--sh-radius); margin: 1.5rem 0; }

.sh-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sh-border-soft);
}
.sh-post__tag {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--sh-bg-soft);
  color: var(--sh-gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--sh-gray-100);
  transition: all .2s ease;
}
.sh-post__tag:hover {
  background: var(--sh-accent);
  color: #fff;
  border-color: var(--sh-accent);
}

/* Related posts */
.sh-related { margin-top: 3rem; }
.sh-related h3 {
  font-family: var(--sh-font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* ------------------------------------------------------------
   STATIC PAGES — About, Services, Contact, Pricing
   ------------------------------------------------------------ */
.sh-about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.sh-about-stat {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-2xl);
  padding: 1.5rem;
  text-align: center;
  transition: all .3s ease;
}
.sh-about-stat:hover { transform: translateY(-4px); box-shadow: var(--sh-shadow-lg); }
.sh-about-stat__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0.85rem;
}
.sh-about-stat__icon--cyan    { background: linear-gradient(135deg, var(--sh-cyan-500), var(--sh-blue-500)); }
.sh-about-stat__icon--violet  { background: linear-gradient(135deg, var(--sh-violet-500), var(--sh-purple-600)); }
.sh-about-stat__icon--amber   { background: linear-gradient(135deg, var(--sh-amber-500), var(--sh-orange-500)); }
.sh-about-stat__icon--emerald { background: linear-gradient(135deg, var(--sh-emerald-500), var(--sh-teal-500)); }
.sh-about-stat__icon--pink    { background: linear-gradient(135deg, var(--sh-pink-500), var(--sh-rose-600)); }
.sh-about-stat__icon--yellow  { background: linear-gradient(135deg, #eab308, var(--sh-amber-500)); }
.sh-about-stat__value {
  font-family: var(--sh-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sh-brand-900);
  line-height: 1;
}
.sh-about-stat__label { color: var(--sh-gray-500); font-size: 0.75rem; margin-top: 0.35rem; font-weight: 600; }

.sh-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.sh-value {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-2xl);
  padding: 1.5rem;
  transition: all .3s ease;
}
.sh-value:hover { transform: translateY(-4px); box-shadow: var(--sh-shadow-lg); }
.sh-value__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0.85rem;
}
.sh-value__title {
  font-family: var(--sh-font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  color: var(--sh-brand-900);
}
.sh-value__desc {
  font-size: 0.875rem;
  color: var(--sh-gray-500);
  line-height: 1.65;
  margin: 0;
}

/* Timeline */
.sh-timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 2rem;
}
.sh-timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: var(--sh-border-soft);
}
.sh-timeline__item {
  position: relative;
  padding-bottom: 2rem;
}
.sh-timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.3rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sh-accent), var(--sh-cyan-500));
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--sh-gray-200);
}
.sh-timeline__year {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sh-accent);
}
.sh-timeline__title {
  font-family: var(--sh-font-display);
  font-size: 1.15rem;
  margin: 0.25rem 0 0.45rem;
  color: var(--sh-brand-900);
}
.sh-timeline__desc { color: var(--sh-gray-600); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* Contact page */
.sh-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 880px) { .sh-contact-grid { grid-template-columns: 1fr; } }
.sh-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sh-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--sh-radius-lg);
  background: #fff;
  border: 1px solid var(--sh-gray-100);
}
.sh-contact-item__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(46,134,171,0.1);
  color: var(--sh-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sh-contact-item__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--sh-gray-400);
  margin-bottom: 0.15rem;
}
.sh-contact-item__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sh-brand-900);
}
.sh-contact-item__value a { color: inherit; }
.sh-contact-item__value a:hover { color: var(--sh-accent); }

.sh-contact-form {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--sh-shadow-sm);
}
.sh-contact-form h3 {
  font-family: var(--sh-font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--sh-brand-900);
}
.sh-contact-form p { color: var(--sh-gray-500); font-size: 0.875rem; margin: 0 0 1.5rem; }
.sh-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
@media (max-width: 600px) { .sh-contact-form__row { grid-template-columns: 1fr; } }
.sh-contact-form__group { margin-bottom: 0.85rem; }
.sh-contact-form__group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sh-brand-900);
  margin-bottom: 0.35rem;
  display: block;
}
.sh-contact-form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

/* Big destination hero */
.sh-dest-hero {
  position: relative;
  padding: 5rem 0 6rem;
  color: #fff;
  overflow: hidden;
}
.sh-dest-hero__flag {
  position: absolute;
  right: -3rem; bottom: -3rem;
  font-size: 18rem;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.sh-dest-hero__title {
  font-family: var(--sh-font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.sh-dest-hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.sh-dest-hero__quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.sh-dest-hero__quick-stat strong {
  display: block;
  font-family: var(--sh-font-display);
  font-size: 1.5rem;
  color: #fff;
}
.sh-dest-hero__quick-stat span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ------------------------------------------------------------
   SEARCH RESULTS
   ------------------------------------------------------------ */
.sh-search-result {
  background: #fff;
  border: 1px solid var(--sh-gray-100);
  border-radius: var(--sh-radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.85rem;
  transition: all .2s ease;
}
.sh-search-result:hover {
  border-color: var(--sh-gray-200);
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow);
}
.sh-search-result__type {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  background: var(--sh-brand-50);
  color: var(--sh-brand-500);
  margin-bottom: 0.5rem;
}
.sh-search-result h3 {
  font-family: var(--sh-font-body);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}
.sh-search-result h3 a { color: var(--sh-brand-900); }
.sh-search-result h3 a:hover { color: var(--sh-accent); }
.sh-search-result p {
  color: var(--sh-gray-600);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   END inner pages
   ============================================================ */
