/* ============================================================================
   Bluedesk static home — scoped under .sh-bluedesk
   Palette:
     --sh-navy      #0D2240  primary text / logo strokes
     --sh-turquoise #22C7CC  primary accent, hero full-bleed
     --sh-turq-soft #B9F0F2  pale turquoise blobs
     --sh-blue      #1A8FCF  secondary blue
     --sh-butter    #FCDE55  vibrant yellow (footer + accents)
     --sh-butter-sf #FBEFCC  soft butter pill bg
     --sh-coral     #FF7A59  CTA + accent
     --sh-coral-sf  #FFCFC0  pale coral blobs
     --sh-cream     #FBF7EE  main bg cream
   ============================================================================ */

.static-home body, body.static-home { margin: 0; }

.sh-bluedesk {
  --sh-navy: #0D2240;
  --sh-turquoise: #22C7CC;
  --sh-turq-soft: #B9F0F2;
  --sh-blue: #1A8FCF;
  --sh-butter: #FCDE55;
  --sh-butter-sf: #FBEFCC;
  --sh-coral: #FF7A59;
  --sh-coral-sf: #FFCFC0;
  --sh-cream: #FBF7EE;
  --sh-ink: #1a1f2e;
  --sh-muted: #55607A;

  background: var(--sh-cream);
  color: var(--sh-ink);
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

.sh-bluedesk *, .sh-bluedesk *::before, .sh-bluedesk *::after { box-sizing: border-box; }
.sh-bluedesk img { max-width: 100%; display: block; }

/* --- Skip-to-content (a11y) ---------------------------------------------- */
.sh-bluedesk .sh-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--sh-navy);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 100;
  text-decoration: none;
  transition: top 0.2s ease;
}

.sh-bluedesk .sh-skip-link:focus {
  top: 16px;
}

/* --- Scroll-reveal initial state ----------------------------------------- */
/* Hide only when the root class says motion is confirmed active — that
 * way, if GSAP fails to load or errors, content stays visible instead of
 * being trapped at opacity: 0. The JS adds .sh-motion before the batch
 * runs; removes it (or never adds it) in reduced-motion / no-GSAP paths. */
.sh-bluedesk.sh-motion .sh-reveal {
  opacity: 0;
  transform: translateY(32px);
}

/* --- Floating pill nav ---------------------------------------------------- */
.sh-bluedesk .sh-nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 24px;
}

.sh-bluedesk .sh-nav-pill {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 14px 10px 20px;
  background: white;
  border: 1px solid rgba(13, 34, 64, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 28px -14px rgba(13, 34, 64, 0.25);
}

.sh-bluedesk .sh-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--sh-navy);
  flex-shrink: 0;
}

.sh-bluedesk .sh-nav-logo-wrap {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.sh-bluedesk .sh-nav-logo-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sh-bluedesk .sh-nav-wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sh-navy);
}

.sh-bluedesk .sh-nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
}

.sh-bluedesk .sh-nav-links a {
  color: var(--sh-navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.15s ease;
}

.sh-bluedesk .sh-nav-links a:hover { color: var(--sh-coral); }

/* Dropdown for sub-pages */
.sh-bluedesk .sh-nav-dropdown {
  position: relative;
}

.sh-bluedesk .sh-nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sh-navy);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  padding: 6px 2px;
  transition: color 0.15s ease;
}

.sh-bluedesk .sh-nav-dropdown-btn:hover { color: var(--sh-coral); }

.sh-bluedesk .sh-nav-dropdown-btn svg {
  transition: transform 0.2s ease;
}

.sh-bluedesk .sh-nav-dropdown:hover .sh-nav-dropdown-btn svg,
.sh-bluedesk .sh-nav-dropdown:focus-within .sh-nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.sh-bluedesk .sh-nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 40px -12px rgba(13, 34, 64, 0.3);
  border: 1px solid rgba(13, 34, 64, 0.08);
  padding: 8px;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}

/* Invisible bridge so hover doesn't break between button and menu */
.sh-bluedesk .sh-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.sh-bluedesk .sh-nav-dropdown:hover .sh-nav-dropdown-menu,
.sh-bluedesk .sh-nav-dropdown:focus-within .sh-nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sh-bluedesk .sh-nav-dropdown-menu a {
  display: block;
  white-space: nowrap;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sh-navy);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.12s ease, color 0.12s ease;
}

.sh-bluedesk .sh-nav-dropdown-menu a:hover {
  background: var(--sh-cream);
  color: var(--sh-coral);
}

/* Nested flyout (third-level sub-pages) */
.sh-bluedesk .sh-nav-nested-dropdown {
  position: relative;
}

.sh-bluedesk .sh-nav-nested-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sh-navy);
  border-radius: 10px;
  transition: background 0.12s ease, color 0.12s ease;
}

.sh-bluedesk .sh-nav-nested-btn:hover {
  background: var(--sh-cream);
  color: var(--sh-coral);
}

.sh-bluedesk .sh-nav-nested-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.sh-bluedesk .sh-nav-nested-dropdown:hover .sh-nav-nested-btn svg,
.sh-bluedesk .sh-nav-nested-dropdown:focus-within .sh-nav-nested-btn svg {
  transform: translateX(2px);
}

.sh-bluedesk .sh-nav-nested-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -8px;
  left: calc(100% + 4px);
  min-width: 160px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 40px -12px rgba(13, 34, 64, 0.3);
  border: 1px solid rgba(13, 34, 64, 0.08);
  padding: 8px;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  transform: translateX(6px);
  z-index: 65;
}

/* Hover bridge between parent menu and nested flyout */
.sh-bluedesk .sh-nav-nested-menu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -12px;
  width: 12px;
}

.sh-bluedesk .sh-nav-nested-dropdown:hover .sh-nav-nested-menu,
.sh-bluedesk .sh-nav-nested-dropdown:focus-within .sh-nav-nested-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.sh-bluedesk .sh-nav-nested-menu a {
  display: block;
  white-space: nowrap;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sh-navy);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.12s ease, color 0.12s ease;
}

.sh-bluedesk .sh-nav-nested-menu a:hover {
  background: var(--sh-cream);
  color: var(--sh-coral);
}

.sh-bluedesk .sh-nav-nested-menu .sh-nav-nested-parent {
  color: var(--sh-muted);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px 4px;
  pointer-events: auto;
}

.sh-bluedesk .sh-nav-nested-menu .sh-nav-nested-parent:hover {
  color: var(--sh-coral);
  background: var(--sh-cream);
}

.sh-bluedesk .sh-nav-cta {
  background: var(--sh-navy);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.sh-bluedesk .sh-nav-cta:hover {
  background: var(--sh-coral);
  transform: translateY(-1px);
}

/* Desktop: hamburger hidden. Mobile: swaps in for the inline nav. */
.sh-bluedesk .sh-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: var(--sh-navy);
  flex-direction: column;
  gap: 5px;
}

.sh-bluedesk .sh-nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.sh-bluedesk .sh-nav-drawer {
  display: none;
  max-width: 1180px;
  margin: 10px auto 0;
  padding: 12px 16px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(13, 34, 64, 0.08);
  box-shadow: 0 12px 32px -18px rgba(13, 34, 64, 0.25);
  flex-direction: column;
  gap: 4px;
}

.sh-bluedesk .sh-nav-drawer.is-open { display: flex; }

.sh-bluedesk .sh-nav-drawer a {
  display: block;
  padding: 12px 14px;
  color: var(--sh-navy);
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.sh-bluedesk .sh-nav-drawer a:hover,
.sh-bluedesk .sh-nav-drawer a:focus-visible {
  background: rgba(13, 34, 64, 0.05);
}

@media (max-width: 820px) {
  .sh-bluedesk .sh-nav-links { display: none; }
  .sh-bluedesk .sh-nav-toggle { display: flex; }
}

/* --- HERO: full-bleed turquoise ------------------------------------------ */
.sh-bluedesk .sh-hero {
  position: relative;
  background: var(--sh-turquoise);
  padding: 180px 24px 140px;
  margin-top: -72px;
  text-align: center;
  overflow: hidden;
}

.sh-bluedesk .sh-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.sh-bluedesk .sh-hero-title {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--sh-navy);
  margin: 0 0 24px;
}

.sh-bluedesk .sh-hero-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--sh-navy);
  opacity: 0.85;
  margin: 0 0 48px;
  font-weight: 500;
}

/* Perches are invisible anchor points used by the flying owl script */
.sh-bluedesk .sh-owl-perch {
  position: relative;
  width: 1px;
  height: 1px;
  margin: 0 auto;
  pointer-events: none;
}

/* Hero has a taller perch to push the owl below the subtitle */
.sh-bluedesk .sh-hero .sh-owl-perch {
  width: 100%;
  height: 360px;
}

.sh-bluedesk .sh-valueprop-blob .sh-owl-perch,
.sh-bluedesk .sh-intro-art .sh-owl-perch {
  position: absolute;
  top: 50%;
  left: 50%;
}

.sh-bluedesk .sh-bigcta .sh-owl-perch {
  margin-top: 40px;
}

/* The ONE flying owl: position:fixed, moves via GSAP ScrollTrigger */
.sh-bluedesk .sh-flying-owl {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 240px;
  height: auto;
  z-index: 30;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 28px rgba(13, 34, 64, 0.22));
  animation: sh-owl-bob 4s ease-in-out infinite;
}

.sh-bluedesk .sh-flying-owl svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Pupil movement is driven by a rAF lerp in JS — no CSS transition. */

@keyframes sh-owl-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .sh-bluedesk .sh-flying-owl { animation: none; }
  .sh-bluedesk .sh-owl-pupil { transition: none; }
}

.sh-bluedesk .sh-deco {
  position: absolute;
  pointer-events: none;
}

.sh-bluedesk .sh-deco-squiggle-1 {
  width: 80px;
  top: 30px;
  left: 10%;
  transform: rotate(-10deg);
}

.sh-bluedesk .sh-deco-squiggle-2 {
  width: 80px;
  bottom: 20px;
  right: 10%;
  transform: rotate(15deg);
}

.sh-bluedesk .sh-deco-dots {
  width: 50px;
  top: 10%;
  right: 6%;
}

.sh-bluedesk .sh-hero-wave {
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

/* --- Intro paragraph block (on cream) ------------------------------------ */
.sh-bluedesk .sh-intro {
  padding: 80px 24px 60px;
  background: var(--sh-cream);
}

.sh-bluedesk .sh-intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.sh-bluedesk .sh-intro-copy p {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--sh-navy);
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  font-weight: 500;
  max-width: 34ch;
}

.sh-bluedesk .sh-intro-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.sh-bluedesk .sh-intro-art svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.sh-bluedesk .sh-intro-owl {
  position: absolute;
  width: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media (max-width: 900px) {
  .sh-bluedesk .sh-intro-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* --- Underline wobble ----------------------------------------------------- */
.sh-bluedesk .sh-underline-wobble {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.sh-bluedesk .sh-underline-wobble::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 6 Q 20 0, 40 6 T 80 6 T 120 6 T 160 6 T 200 6' stroke='%23FF7A59' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* --- Buttons --------------------------------------------------------------- */
.sh-bluedesk .sh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.sh-bluedesk .sh-btn-cream {
  background: white;
  color: var(--sh-navy);
  box-shadow: 0 6px 18px -8px rgba(13, 34, 64, 0.25);
}

.sh-bluedesk .sh-btn-coral {
  background: var(--sh-coral);
  color: white;
  box-shadow: 0 8px 20px -8px rgba(255, 122, 89, 0.55);
}

.sh-bluedesk .sh-btn-navy {
  background: var(--sh-navy);
  color: white;
  box-shadow: 0 8px 20px -8px rgba(13, 34, 64, 0.45);
}

.sh-bluedesk .sh-btn-turquoise {
  background: var(--sh-turquoise);
  color: var(--sh-navy);
  box-shadow: 0 8px 20px -8px rgba(34, 199, 204, 0.55);
}

.sh-bluedesk .sh-btn:hover { transform: translateY(-2px); }

.sh-bluedesk .sh-btn-lg { padding: 16px 30px; font-size: 17px; }

.sh-bluedesk .sh-btn-arrow {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  color: inherit;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
}

.sh-bluedesk .sh-btn-cream .sh-btn-arrow { background: var(--sh-navy); color: white; }
.sh-bluedesk .sh-btn-navy .sh-btn-arrow { background: white; color: var(--sh-navy); }
.sh-bluedesk .sh-btn-turquoise .sh-btn-arrow { background: var(--sh-navy); color: white; }

/* --- Value-prop rows (cards floated on blob scenes) ----------------------- */
.sh-bluedesk .sh-valueprops {
  padding: 40px 24px 100px;
  background: var(--sh-cream);
}

.sh-bluedesk .sh-valueprop-row {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 340px;
}

.sh-bluedesk .sh-valueprop-row:last-child { margin-bottom: 0; }

.sh-bluedesk .sh-valueprop-row.sh-reverse { direction: rtl; }
.sh-bluedesk .sh-valueprop-row.sh-reverse > * { direction: ltr; }

.sh-bluedesk .sh-valueprop-blob {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sh-bluedesk .sh-valueprop-blob svg {
  width: 100%;
  height: auto;
  display: block;
}

.sh-bluedesk .sh-blob-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 40% 45% 55% / 50% 45% 55% 50%;
  position: absolute;
  inset: 0;
}

.sh-bluedesk .sh-vp-owl {
  position: absolute;
  width: 140px;
  filter: drop-shadow(0 10px 22px rgba(13, 34, 64, 0.22));
}

.sh-bluedesk .sh-vp-owl-a { top: 40%; left: 50%; transform: translate(-50%, -50%) rotate(-8deg); }
.sh-bluedesk .sh-vp-owl-b { top: 50%; left: 48%; transform: translate(-50%, -50%) rotate(12deg); width: 160px; }
.sh-bluedesk .sh-vp-owl-c { top: 45%; left: 52%; transform: translate(-50%, -50%) rotate(-5deg); width: 130px; }
.sh-bluedesk .sh-vp-owl-d { top: 48%; left: 48%; transform: translate(-50%, -50%) rotate(6deg); width: 150px; }

.sh-bluedesk .sh-valueprop-card {
  background: white;
  border-radius: 22px;
  padding: 32px 36px;
  box-shadow: 0 20px 50px -24px rgba(13, 34, 64, 0.18);
  border: 1px solid rgba(13, 34, 64, 0.06);
  max-width: 500px;
}

.sh-bluedesk .sh-valueprop-card h3 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--sh-navy);
  line-height: 1.1;
}

.sh-bluedesk .sh-valueprop-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sh-muted);
  margin: 0 0 20px;
}

@media (max-width: 900px) {
  .sh-bluedesk .sh-valueprop-row,
  .sh-bluedesk .sh-valueprop-row.sh-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .sh-bluedesk .sh-valueprop-blob { min-height: 260px; }
  .sh-bluedesk .sh-valueprop-card { max-width: 100%; }
}

/* --- Big CTA: full-bleed turquoise ---------------------------------------- */
.sh-bluedesk .sh-bigcta {
  background: var(--sh-turquoise);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sh-bluedesk .sh-bigcta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sh-bluedesk .sh-bigcta-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--sh-navy);
  margin: 0 0 24px;
}

.sh-bluedesk .sh-bigcta-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--sh-navy);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 500;
  line-height: 1.5;
}

.sh-bluedesk .sh-bigcta-points {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: var(--sh-navy);
  font-size: 15px;
  font-weight: 600;
  opacity: 0.75;
}

/* --- Testimonials -------------------------------------------------------- */
.sh-bluedesk .sh-testimonials {
  padding: 100px 24px;
  background: white;
}

.sh-bluedesk .sh-testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.sh-bluedesk .sh-testimonials-heading {
  margin-bottom: 48px;
}

.sh-bluedesk .sh-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sh-bluedesk .sh-quote {
  margin: 0;
  padding: 36px 38px;
  background: var(--sh-cream);
  border-radius: 26px;
  border: 1px solid rgba(13, 34, 64, 0.06);
  box-shadow: 0 18px 40px -22px rgba(13, 34, 64, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.sh-bluedesk .sh-quote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: var(--sh-turquoise);
  opacity: 0.35;
}

.sh-bluedesk .sh-quote blockquote {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--sh-navy);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.sh-bluedesk .sh-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sh-muted);
}

.sh-bluedesk .sh-quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: white;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(13, 34, 64, 0.15);
}

.sh-bluedesk .sh-quote-school {
  color: var(--sh-navy);
}

@media (max-width: 820px) {
  .sh-bluedesk .sh-testimonials-grid { grid-template-columns: 1fr; }
}

/* --- Stats section: stacked colored cards --------------------------------- */
.sh-bluedesk .sh-numbers {
  padding: 110px 24px;
  background: var(--sh-cream);
}

.sh-bluedesk .sh-numbers-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sh-bluedesk .sh-numbers-heading {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sh-navy);
  margin: 0 0 24px;
  line-height: 1.05;
}

.sh-bluedesk .sh-numbers-body {
  font-size: 16px;
  color: var(--sh-muted);
  margin: 0;
  max-width: 40ch;
  line-height: 1.6;
}

.sh-bluedesk .sh-numbers-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-left: 20px;
}

.sh-bluedesk .sh-stat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 32px;
  border-radius: 26px;
  color: white;
  position: relative;
  transform-origin: center;
  box-shadow: 0 20px 40px -18px rgba(13, 34, 64, 0.35);
}

.sh-bluedesk .sh-stat-blue { background: var(--sh-blue); transform: translateX(18px); }
.sh-bluedesk .sh-stat-turquoise { background: var(--sh-turquoise); color: var(--sh-navy); transform: translateX(-6px); }
.sh-bluedesk .sh-stat-coral { background: var(--sh-coral); transform: translateX(26px); }

.sh-bluedesk .sh-stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
}

.sh-bluedesk .sh-stat-turquoise .sh-stat-icon { background: rgba(13, 34, 64, 0.15); color: var(--sh-navy); }

.sh-bluedesk .sh-stat-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin-bottom: 4px;
}

.sh-bluedesk .sh-stat-label {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .sh-bluedesk .sh-numbers-inner { grid-template-columns: 1fr; gap: 40px; }
  .sh-bluedesk .sh-stat { transform: none !important; }
}

/* --- Features grid -------------------------------------------------------- */
.sh-bluedesk .sh-features {
  padding: 100px 24px;
  background: white;
}

.sh-bluedesk .sh-features-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.sh-bluedesk .sh-section-heading {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sh-navy);
  margin: 0 0 40px;
  line-height: 1.05;
}

.sh-bluedesk .sh-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sh-bluedesk .sh-feature-card {
  padding: 26px;
  background: var(--sh-cream);
  border-radius: 22px;
  border: 1px solid rgba(13, 34, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sh-bluedesk .sh-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -22px rgba(13, 34, 64, 0.28);
}

.sh-bluedesk .sh-feature-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-turquoise);
  background: rgba(34, 199, 204, 0.12);
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.sh-bluedesk .sh-feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--sh-navy);
  margin: 4px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sh-bluedesk .sh-feature-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--sh-muted);
  margin: 0;
  flex: 1;
}

.sh-bluedesk .sh-link {
  color: var(--sh-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid var(--sh-turquoise);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sh-bluedesk .sh-link:hover { color: var(--sh-coral); border-bottom-color: var(--sh-coral); }

@media (max-width: 1040px) { .sh-bluedesk .sh-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sh-bluedesk .sh-features-grid { grid-template-columns: 1fr; } }

/* --- Mobile apps ---------------------------------------------------------- */
.sh-bluedesk .sh-apps {
  padding: 100px 24px;
  background: var(--sh-turquoise);
}

.sh-bluedesk .sh-apps-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sh-bluedesk .sh-apps-copy .sh-section-heading {
  color: var(--sh-navy);
}

.sh-bluedesk .sh-apps-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--sh-navy);
  opacity: 0.85;
  margin: 0 0 28px;
  max-width: 44ch;
  font-weight: 500;
}

.sh-bluedesk .sh-apps-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sh-bluedesk .sh-app-badge {
  display: block;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.sh-bluedesk .sh-app-badge svg { height: 40px; width: auto; }

.sh-bluedesk .sh-app-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Coming-soon variant: same shape, no hover lift, default cursor. */
.sh-bluedesk .sh-app-badge-soon { cursor: default; }
.sh-bluedesk .sh-app-badge-soon:hover { transform: none; opacity: 1; }

/* Real app screenshot phones */
.sh-bluedesk .sh-app-screenshots {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.sh-bluedesk .sh-phone-frame {
  background: var(--sh-navy);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 40px 80px -28px rgba(13, 34, 64, 0.55);
  flex-shrink: 0;
}

.sh-bluedesk .sh-phone-ios { width: 220px; }
.sh-bluedesk .sh-phone-android { width: 200px; transform: translateY(40px); }

.sh-bluedesk .sh-phone-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

@media (max-width: 900px) {
  .sh-bluedesk .sh-apps-inner { grid-template-columns: 1fr; gap: 40px; }
  .sh-bluedesk .sh-phone-ios { width: 180px; }
  .sh-bluedesk .sh-phone-android { width: 160px; }
}

@media (max-width: 480px) {
  .sh-bluedesk .sh-app-screenshots { gap: 12px; }
  .sh-bluedesk .sh-phone-ios { width: 150px; }
  .sh-bluedesk .sh-phone-android { width: 130px; transform: translateY(20px); }
}

/* --- FAQ ------------------------------------------------------------------ */
.sh-bluedesk .sh-faq {
  padding: 100px 24px;
  background: var(--sh-cream);
}

.sh-bluedesk .sh-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sh-bluedesk .sh-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sh-bluedesk .sh-faq-item {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(13, 34, 64, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.sh-bluedesk .sh-faq-item[open] {
  box-shadow: 0 12px 32px -16px rgba(13, 34, 64, 0.2);
}

.sh-bluedesk .sh-faq-item summary {
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--sh-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
  transition: background 0.15s ease;
}

.sh-bluedesk .sh-faq-item summary:hover {
  background: rgba(34, 199, 204, 0.06);
}

.sh-bluedesk .sh-faq-item summary::-webkit-details-marker { display: none; }

.sh-bluedesk .sh-faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: var(--sh-turquoise);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(34, 199, 204, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.sh-bluedesk .sh-faq-item[open] summary::after {
  content: "−";
  background: var(--sh-turquoise);
  color: white;
}

.sh-bluedesk .sh-faq-body {
  padding: 0 28px 24px;
}

.sh-bluedesk .sh-faq-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sh-muted);
}

/* --- Mobile: flying owl + general responsive fixes ----------------------- */
@media (max-width: 820px) {
  .sh-bluedesk .sh-flying-owl {
    width: 140px;
  }

  .sh-bluedesk .sh-hero-title {
    font-size: clamp(36px, 10vw, 64px);
  }

  .sh-bluedesk .sh-bigcta-title {
    font-size: clamp(36px, 10vw, 80px);
  }

  .sh-bluedesk .sh-nav-pill {
    padding: 8px 10px 8px 16px;
    gap: 12px;
  }

  .sh-bluedesk .sh-nav-wordmark {
    font-size: 17px;
  }

  .sh-bluedesk .sh-nav-cta {
    font-size: 13px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .sh-bluedesk .sh-flying-owl {
    width: 100px;
  }

  .sh-bluedesk .sh-hero {
    padding: 140px 16px 100px;
  }

  .sh-bluedesk .sh-bigcta {
    padding: 60px 16px;
  }

  .sh-bluedesk .sh-faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }

  .sh-bluedesk .sh-faq-body {
    padding: 0 20px 20px;
  }

  .sh-bluedesk .sh-stat {
    padding: 24px 20px;
  }
}

/* --- Navy footer with cream CTA card -------------------------------------- */
.sh-bluedesk .sh-footer {
  position: relative;
  background: var(--sh-navy);
  color: rgba(251, 247, 238, 0.75);
  padding: 140px 24px 28px;
  margin-top: 80px;
}

.sh-bluedesk .sh-footer-card-wrap {
  max-width: 960px;
  margin: -220px auto 60px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.sh-bluedesk .sh-footer-card {
  position: relative;
  background: var(--sh-cream);
  color: var(--sh-navy);
  border-radius: 32px;
  padding: 44px 56px;
  box-shadow: 0 40px 80px -32px rgba(13, 34, 64, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.sh-bluedesk .sh-footer-card-copy {
  max-width: 620px;
}

.sh-bluedesk .sh-footer-card-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.sh-bluedesk .sh-footer-card-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--sh-muted);
  margin: 0 0 28px;
}

.sh-bluedesk .sh-footer-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sh-bluedesk .sh-footer-card-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--sh-navy);
  padding: 4px 0;
}

.sh-bluedesk .sh-footer-card-phone-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sh-muted);
}

.sh-bluedesk .sh-footer-card-phone-number {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--sh-turquoise);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sh-bluedesk .sh-footer-card-phone:hover .sh-footer-card-phone-number {
  color: var(--sh-coral);
  border-bottom-color: var(--sh-coral);
}

.sh-bluedesk .sh-footer-card-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.sh-bluedesk .sh-footer-card-form .bg-white { background: transparent; box-shadow: none; padding: 0; }
.sh-bluedesk .sh-footer-card-form .dark\:bg-gray-800 { background: transparent; }
.sh-bluedesk .sh-footer-card-form .mb-6 { display: none; }
.sh-bluedesk .sh-footer-card-form .bg-gray-50,
.sh-bluedesk .sh-footer-card-form input,
.sh-bluedesk .sh-footer-card-form textarea {
  background: white !important;
  border: 1px solid rgba(13, 34, 64, 0.15) !important;
  border-radius: 14px !important;
  font-family: inherit !important;
  font-size: 15px !important;
  padding: 12px 16px !important;
  color: var(--sh-navy) !important;
}

.sh-bluedesk .sh-footer-card-form input:focus,
.sh-bluedesk .sh-footer-card-form textarea:focus {
  border-color: var(--sh-turquoise) !important;
  box-shadow: 0 0 0 3px rgba(34, 199, 204, 0.2) !important;
  outline: none !important;
}

.sh-bluedesk .sh-footer-card-form label {
  color: var(--sh-navy) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.sh-bluedesk .sh-footer-card-form input[type="submit"] {
  background: var(--sh-navy) !important;
  color: white !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 28px !important;
  cursor: pointer !important;
  transition: background 0.15s ease, transform 0.15s ease !important;
}

.sh-bluedesk .sh-footer-card-form input[type="submit"]:hover {
  background: var(--sh-coral) !important;
  transform: translateY(-1px) !important;
}

.sh-bluedesk .sh-footer-card-alt {
  text-align: center;
  padding-top: 16px;
}

.sh-bluedesk .sh-footer-card .sh-owl-perch {
  width: 1px;
  height: 1px;
  margin-top: 8px;
}

.sh-bluedesk .sh-footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 247, 238, 0.12);
}

.sh-bluedesk .sh-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sh-bluedesk .sh-footer-logomark {
  width: 44px;
  height: 44px;
}

.sh-bluedesk .sh-footer-logomark svg {
  width: 100%;
  height: 100%;
}

.sh-bluedesk .sh-footer-tag {
  font-size: 15px;
  max-width: 26ch;
  line-height: 1.55;
  margin: 0;
  color: rgba(251, 247, 238, 0.8);
}

.sh-bluedesk .sh-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sh-bluedesk .sh-footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sh-turquoise);
  margin: 0 0 4px;
}

.sh-bluedesk .sh-footer-col a,
.sh-bluedesk .sh-footer-col span {
  color: rgba(251, 247, 238, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s ease;
}

.sh-bluedesk .sh-footer-col a:hover { color: var(--sh-turquoise); }

.sh-bluedesk .sh-footer-muted { color: rgba(251, 247, 238, 0.5) !important; font-size: 14px; }

.sh-bluedesk .sh-footer-bottom {
  max-width: 1180px;
  margin: 24px auto 0;
  font-size: 13px;
  color: rgba(251, 247, 238, 0.55);
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .sh-bluedesk .sh-footer { padding-top: 120px; }
  .sh-bluedesk .sh-footer-card-wrap { margin-top: -200px; }
  .sh-bluedesk .sh-footer-card { padding: 32px 28px; }
  .sh-bluedesk .sh-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .sh-bluedesk .sh-footer-grid { grid-template-columns: 1fr; }
  .sh-bluedesk .sh-footer-card-actions { flex-direction: column; gap: 16px; }
}
