/* ============================================================
   SDL Advisory — page styles
   ------------------------------------------------------------
   All rules are scoped to .sdl-advisory so they will not
   collide with the parent HubSpot theme. The body element is
   left untouched.
   ============================================================ */

.sdl-advisory {
  /* ---------- Design tokens ---------- */
  --sdl-bg-dark:    #022136;
  --sdl-bg-darker:  #011627;
  --sdl-bg-cream:   #F4EFE6;
  --sdl-bg-white:   #FFFFFF;

  --sdl-text-dark:    #0A1929;
  --sdl-text-light:   #FFFFFF;
  --sdl-text-muted:   #5B6B7E;
  --sdl-text-muted-d: #94A8BD;   /* muted on dark */

  --sdl-accent:        #2DD4BF;
  --sdl-accent-soft:   #5EEAD4;
  --sdl-accent-tint:   #D6F7F1;
  --sdl-highlight:     #FDE047;

  --sdl-border:        #E5E0D5;
  --sdl-border-dark:   rgba(255,255,255,0.08);

  --sdl-radius-sm:  8px;
  --sdl-radius-md:  14px;
  --sdl-radius-lg:  22px;

  --sdl-shadow-card: 0 1px 2px rgba(10,25,41,0.04), 0 4px 14px rgba(10,25,41,0.05);

  --sdl-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --sdl-container-max: 1180px;
  --sdl-container-pad: clamp(20px, 4vw, 40px);

  /* base reset within wrapper */
  font-family: var(--sdl-font-sans);
  color: var(--sdl-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F9FAFB;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Pull the wrapper to the true viewport edge, overriding the
   browser's default 8px body margin without touching bare body */
.sdl-advisory {
  margin: 0;
  padding: 0;
  width: 100%;
  flex: 1;
}

.sdl-advisory *,
.sdl-advisory *::before,
.sdl-advisory *::after { box-sizing: border-box; }

.sdl-advisory img { max-width: 100%; height: auto; display: block; }

.sdl-advisory a { color: inherit; text-decoration: none; }

.sdl-advisory h1, .sdl-advisory h2, .sdl-advisory h3, .sdl-advisory h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #022136;
}

.sdl-advisory p { margin: 0; }
.sdl-advisory ul, .sdl-advisory ol { margin: 0; padding: 0; list-style: none; }

.sdl-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- Layout primitives ---------- */
.sdl-container {
  width: 100%;
  max-width: var(--sdl-container-max);
  margin: 0 auto;
  padding-left: var(--sdl-container-pad);
  padding-right: var(--sdl-container-pad);
}
.sdl-container--narrow { max-width: 820px; }

.sdl-section {
  padding-top: 28px;
  padding-bottom: 36px;
}
.sdl-section--cream { background: var(--sdl-bg-cream); }
.sdl-section--grey  { background: #F9FAFB; }
.sdl-section--white { background: #FFFFFF; }

#what-you-get { padding-top: 20px; }

.sdl-section__title {
  font-size: clamp(28px, 3.4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
  margin-bottom: 12px;
}
/* Breathing room when the grid follows the title directly (no subtitle) */
.sdl-section__title + .sdl-grid,
.sdl-section__title + .sdl-pricing,
.sdl-section__title + .sdl-steps {
  margin-top: clamp(16px, 2vw, 24px);
}
.sdl-advisory .sdl-section__sub {
  display: block;
  text-align: left;
  color: var(--sdl-text-dark);
  font-size: clamp(15px, 1.4vw, 17px);
  padding-left: 16px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
  width: 100%;
}

.sdl-grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.sdl-grid--2 { grid-template-columns: 1fr; }
.sdl-grid--3 { grid-template-columns: 1fr; }
.sdl-grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .sdl-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .sdl-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .sdl-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .sdl-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .sdl-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons ---------- */
.sdl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.sdl-btn:hover { transform: translateY(-1px); }
.sdl-btn:active { transform: translateY(0); }
.sdl-btn:focus-visible {
  outline: 2px solid var(--sdl-accent);
  outline-offset: 3px;
}

.sdl-btn--primary {
  background: var(--sdl-accent);
  color: #04241F;
}
.sdl-btn--primary:hover { background: var(--sdl-accent-soft); }

.sdl-btn--ghost {
  background: transparent;
  color: var(--sdl-text-light);
  border-color: rgba(255,255,255,0.22);
}
.sdl-btn--ghost:hover { border-color: rgba(255,255,255,0.55); }

.sdl-btn--block { width: 100%; }

/* ---------- Inline highlight ---------- */
.sdl-mark {
  background: var(--sdl-highlight);
  color: var(--sdl-text-dark);
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* ============================================================
   HEADER
   ============================================================ */
.sdl-header {
  background: var(--sdl-bg-dark);
  padding: 18px 0;
  position: relative;
}
.sdl-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 800px) {
  .sdl-header__inner {
    justify-content: flex-start;
  }
  .sdl-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sdl-logo img {
  display: block;
  width: 56px; height: 56px;
  border-radius: 6px;
}
.sdl-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--sdl-border-dark);
  padding: 6px;
  border-radius: 999px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.sdl-advisory .sdl-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color .15s ease, background .15s ease;
}
.sdl-advisory .sdl-nav__link:hover { color: var(--sdl-text-light); }
.sdl-advisory .sdl-nav__link--active {
  background: var(--sdl-accent);
  color: #04241F;
}
.sdl-nav__icon { width: 14px; height: 14px; display: inline-block; }
.sdl-nav__icon svg { width: 100%; height: 100%; display: block; }
.sdl-nav__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #04241F;
}

/* ============================================================
   MOBILE BOTTOM NAV  (max 799px)
   Lifts the nav pill out of the header and docks it at the
   bottom of the viewport with a Liquid Glass treatment.
   ============================================================ */
@media (max-width: 799px) {
  /* Take nav out of header flow */
  .sdl-header .sdl-nav {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    flex-wrap: nowrap;
    white-space: nowrap;

    /* Liquid Glass */
    background: rgba(1, 22, 39, 0.50);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.45),
      0 2px 8px  rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.20);
  }

  /* Stack icons above text on mobile */
  .sdl-advisory .sdl-nav__link {
    padding: 8px 12px;
    font-size: 11px;
    flex-direction: column;
    gap: 4px;
  }

  /* Keep header tidy with just the logo */
  .sdl-header__inner {
    justify-content: center;
  }

  /* Stop page content hiding behind the docked nav */
  .sdl-advisory {
    padding-bottom: 88px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.sdl-hero {
  background: var(--sdl-bg-dark);
  color: var(--sdl-text-light);
  padding: clamp(48px, 7vw, 96px) 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sdl-hero::before {
  /* soft teal glow behind hero, no extra DOM */
  content: "";
  position: absolute;
  top: -160px; left: 50%;
  width: 700px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(45,212,191,0.10), transparent 65%);
  pointer-events: none;
}
.sdl-hero--photo-community {
  background:
    linear-gradient(rgba(10,25,41,0.60), rgba(10,25,41,0.72)),
    url('assets/hero-community.jpg') center / cover no-repeat;
}
.sdl-hero--photo-advisory {
  background:
    linear-gradient(rgba(10,25,41,0.60), rgba(10,25,41,0.72)),
    url('assets/hero-advisory.png') center / cover no-repeat;
}
.sdl-hero--photo-events {
  background:
    linear-gradient(rgba(10,25,41,0.60), rgba(10,25,41,0.72)),
    url('assets/hero-events.jpg') center / cover no-repeat;
}
.sdl-hero--photo-community::before,
.sdl-hero--photo-advisory::before,
.sdl-hero--photo-events::before { display: none; }
.sdl-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sdl-advisory .sdl-hero__title {
  font-size: clamp(32px, 5vw, 58px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 40px;
  text-align: center;
  color: white;
}
.sdl-advisory .sdl-hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: white;
  max-width: 640px;
  margin: 0 0 36px;
  text-align: center;
}
@keyframes sdl-grow-sweep {
  0%   { background-position: 0% 100%; }
  50%  { background-position: 0% 0%;   }
  100% { background-position: 0% 100%; }
}
.sdl-growing {
  background: linear-gradient(to top, var(--sdl-accent) 0%, #ffffff 55%);
  background-size: 100% 220%;
  background-position: 0% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sdl-grow-sweep 3.5s ease-in-out infinite;
}
.sdl-hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Anchor target for the hero Book now button */
.sdl-advisory #pricing { scroll-margin-top: 16px; }

/* ============================================================
   CARDS — Why Advisory / Who this is for
   ============================================================ */
.sdl-card {
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-md);
  padding: clamp(22px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sdl-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sdl-shadow-card);
}
.sdl-card__title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sdl-card__body {
  color: var(--sdl-text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.sdl-card--inline-icon {
  flex-direction: column;
  gap: 12px;
}
.sdl-card__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.sdl-card__header .sdl-iconbox {
  flex-shrink: 0;
}

.sdl-iconbox {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sdl-accent-tint);
  border-radius: 12px;
  color: var(--sdl-accent);
}
.sdl-iconbox svg { width: 22px; height: 22px; }

/* ============================================================
   SERVICES
   ============================================================ */
.sdl-service {
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.sdl-service:hover {
  transform: translateY(-2px);
  box-shadow: var(--sdl-shadow-card);
}
.sdl-service__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--sdl-bg-cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--sdl-text-dark);
  margin-bottom: 8px;
}
.sdl-service__icon svg { width: 18px; height: 18px; }
.sdl-service__title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sdl-service__body {
  color: var(--sdl-text-muted);
  font-size: 14.5px;
  margin-bottom: 6px;
}
.sdl-service__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sdl-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sdl-service__link:hover { color: var(--sdl-text-dark); }

.sdl-service--current {
  background: var(--sdl-bg-dark);
  color: var(--sdl-text-light);
  border-color: var(--sdl-bg-dark);
}
.sdl-service--current .sdl-service__icon {
  background: rgba(45,212,191,0.18);
  color: var(--sdl-accent);
}
.sdl-service--current .sdl-service__body { color: var(--sdl-text-muted-d); }
.sdl-service__current-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sdl-accent);
  font-weight: 600;
  margin-top: 2px;
}

/* Plain variant — for Who-this-is-for cards (no icon) */
.sdl-card--plain { gap: 10px; }

/* Interactive persona filter cards */
.sdl-card--plain[data-persona] {
  cursor: pointer;
  user-select: none;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.sdl-card--plain[data-persona]:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(10,25,41,0.10);
  border-color: var(--sdl-accent);
}
.sdl-card--plain[data-persona][aria-pressed="true"] {
  background: var(--sdl-bg-dark);
  border-color: var(--sdl-accent);
  color: var(--sdl-text-light);
}
.sdl-card--plain[data-persona][aria-pressed="true"] .sdl-card__title {
  color: var(--sdl-accent);
}
.sdl-card--plain[data-persona][aria-pressed="true"] .sdl-card__body {
  color: var(--sdl-text-muted-d);
}
.sdl-persona-hint {
  text-align: left;
  color: var(--sdl-text-muted);
  font-size: 13px;
  margin-top: 20px;
  letter-spacing: 0.02em;
}

/* ============================================================
   TOP TOPICS
   ============================================================ */
.sdl-topics { gap: 14px; }
.sdl-topic {
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-md);
  padding: 18px 18px 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sdl-text-dark);
  line-height: 1.45;
  transition: transform .2s ease, border-color .2s ease;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}
.sdl-topic:hover {
  transform: translateY(-2px);
  border-color: var(--sdl-accent);
}
.sdl-topic__icon {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--sdl-accent-tint);
  color: var(--sdl-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sdl-topic__icon svg { width: 16px; height: 16px; }

/* Topics wrapper with fade mask */
.sdl-topics-wrapper {
  position: relative;
}
.sdl-topics-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #F9FAFB);
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s ease;
}
.sdl-topics-wrapper.is-expanded::after {
  opacity: 0;
  pointer-events: none;
}

/* Hide topics beyond row 5 (items 21-22 in 4-column grid) */
.sdl-topics {
  max-height: none;
  overflow: visible;
  transition: max-height .4s ease;
}
.sdl-topics:not(.is-expanded) {
  max-height: calc(5 * (32px + 36px + 32px) + 5 * 14px); /* 5 rows + gaps */
  overflow: hidden;
}

/* Toggle button */
.sdl-topics-toggle {
  display: block;
  margin: 36px auto 0;
  padding: 14px 32px;
  background: var(--sdl-accent);
  color: #04241F;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
  font-family: var(--sdl-font-sans);
}
.sdl-topics-toggle:hover {
  background: var(--sdl-accent-soft);
  transform: translateY(-1px);
}
.sdl-topics-toggle:active {
  transform: translateY(0);
}
.sdl-topics-toggle:focus-visible {
  outline: 2px solid var(--sdl-accent);
  outline-offset: 3px;
}

/* ============================================================
   HOW IT WORKS — horizontal timeline
   ============================================================ */
/* Step scroll-in fade animation — class applied by JS only */
@keyframes sdlStepFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.sdl-steps--animate .sdl-step        { opacity: 0; }
.sdl-steps--animate .sdl-step--visible {
  animation: sdlStepFadeIn 1.1s ease forwards;
}

.sdl-steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

/* Step: full-height column, centred text */
.sdl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(8px, 1.5vw, 20px);
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
}

/* Connector line from centre of this circle to centre of next */
.sdl-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px; /* half of 60px circle */
  left: 50%;
  width: 100%; /* lands exactly at centre of adjacent equal-width step */
  height: 2px;
  background: linear-gradient(to right, var(--sdl-accent) 60%, transparent 100%);
  opacity: 0.3;
  z-index: 0;
}

/* Number circle */
.sdl-step__num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sdl-accent);
  color: #04241F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  box-shadow: 0 0 0 4px var(--sdl-bg-white); /* punches through the connector line */
}

.sdl-step__body { width: 100%; }

.sdl-step__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--sdl-text-dark);
}

.sdl-step__body p {
  color: var(--sdl-text-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Mobile: revert to vertical card stack */
@media (max-width: 639px) {
  .sdl-steps {
    flex-direction: column;
    gap: 12px;
  }
  .sdl-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    background: var(--sdl-bg-white);
    border: 1px solid var(--sdl-border);
    border-radius: var(--sdl-radius-md);
    padding: 20px 22px;
  }
  .sdl-step:not(:last-child)::after { display: none; }
  .sdl-step__num {
    border-radius: 10px;
    margin-bottom: 0;
    box-shadow: none;
  }
  .sdl-step__body { flex: 1; }
  .sdl-step__title { font-size: 14px; }
  .sdl-step__body p { font-size: 14px; }
}

/* ============================================================
   PRICING
   ============================================================ */
.sdl-pricing {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .sdl-pricing { grid-template-columns: 1fr 1fr; }
}
.sdl-price {
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-lg);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.sdl-price__title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.sdl-price__amount {
  font-size: clamp(40px, 4.6vw, 54px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.sdl-price__body {
  color: var(--sdl-text-muted);
  font-size: 15px;
  margin-bottom: 22px;
}
.sdl-price__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 14.5px;
}
.sdl-price__list > li {
  position: relative;
  padding-left: 28px;
}
.sdl-price__list > li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304241F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--sdl-accent);
}
.sdl-price__sublist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 16px;
  padding-left: 14px;
}
.sdl-price__sublist li {
  font-size: 13.5px;
  color: var(--sdl-text-muted);
  position: relative;
  padding-left: 14px;
}
.sdl-price__sublist li::before {
  content: "–";
  position: absolute;
  left: 0; top: 0;
  color: var(--sdl-text-muted);
}

.sdl-price__list--dark > li { color: var(--sdl-text-light); }
.sdl-price__list--dark .sdl-price__sublist li { color: var(--sdl-text-muted-d); }
.sdl-price__list--dark .sdl-price__sublist li::before { color: var(--sdl-text-muted-d); }

.sdl-price--dark {
  background: var(--sdl-bg-dark);
  color: var(--sdl-text-light);
  border-color: var(--sdl-bg-dark);
}
.sdl-price--dark .sdl-price__title { color: var(--sdl-text-light); }
.sdl-price--dark .sdl-price__body { color: var(--sdl-text-muted-d); }

.sdl-price__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--sdl-highlight);
  color: var(--sdl-text-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.sdl-price__list { margin-bottom: 0; }
.sdl-price .sdl-btn { margin-top: auto; }

/* Discovery call strip, full width below the pricing cards */
.sdl-advisory .sdl-discovery {
  max-width: 980px;
  margin: 22px auto 0;
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-lg);
  padding: clamp(22px, 2.6vw, 30px) clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.sdl-advisory .sdl-discovery__title {
  font-size: clamp(18px, 1.9vw, 22px);
  margin: 0 0 6px;
}
.sdl-advisory .sdl-discovery__body {
  color: var(--sdl-text-muted);
  font-size: 15px;
  margin: 0;
}
.sdl-advisory .sdl-discovery__cta {
  flex-shrink: 0;
}
@media (min-width: 800px) {
  .sdl-advisory .sdl-discovery {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
}

/* ============================================================
   ADVISORS
   ============================================================ */
.sdl-advisors { gap: 22px; }
.sdl-advisor {
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-md);
  padding: 26px 20px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  /* clip the top band and bottom strip to the card's rounded corners */
  overflow: hidden;
}
.sdl-advisor::before,
.sdl-advisor::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: var(--sdl-bg-dark);
}
.sdl-advisor::before {
  top: 0;
  height: 96px;
}
.sdl-advisor::after {
  bottom: 0;
  height: 4px;
}
.sdl-advisor:hover {
  transform: translateY(-2px);
  box-shadow: var(--sdl-shadow-card);
}
img.sdl-advisor__photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
}
.sdl-advisor__photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sdl-accent), #0F766E);
  margin: 0 auto 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sdl-advisor__photo::after {
  content: attr(data-initials);
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.sdl-advisor__name {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.sdl-advisor__role {
  color: var(--sdl-accent);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.sdl-advisor__bio {
  font-size: 13.5px;
  color: var(--sdl-text-muted);
  line-height: 1.5;
  margin-top: 10px;
}
.sdl-advisor__li {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  color: var(--sdl-text-muted);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.sdl-advisor__li:hover {
  color: var(--sdl-accent);
  opacity: 1;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.sdl-quote {
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-md);
  padding: 28px 30px;
  margin: 0;
  position: relative;
}
.sdl-quote::before {
  content: "“";
  position: absolute;
  top: 6px; left: 18px;
  font-family: Georgia, serif;
  font-size: 58px;
  color: var(--sdl-accent);
  line-height: 1;
}
.sdl-quote blockquote {
  margin: 0 0 18px;
  padding-left: 26px;
  font-size: 16px;
  font-style: italic;
  color: var(--sdl-text-dark);
  line-height: 1.55;
}
.sdl-quote figcaption {
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}
.sdl-quote figcaption strong { font-weight: 700; }
.sdl-quote figcaption span { color: var(--sdl-text-muted); font-size: 13px; }

/* Community page — member quote variant (photo in caption) */
.sdl-member-quote {
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-md);
  padding: 28px 30px;
  margin: 0;
  position: relative;
}
.sdl-member-quote::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 18px;
  font-family: Georgia, serif;
  font-size: 58px;
  color: var(--sdl-accent);
  line-height: 1;
}
.sdl-member-quote blockquote {
  margin: 0 0 18px;
  padding-left: 26px;
  font-size: 15px;
  font-style: italic;
  color: var(--sdl-text-dark);
  line-height: 1.55;
}
.sdl-member-quote figcaption {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  text-align: right;
}
/* Avatar sits hard left in the caption row: kill the auto side margins
   inherited from .sdl-advisor__photo, which otherwise absorb the free space */
.sdl-member-quote figcaption .sdl-advisor__photo { margin: 0; }
.sdl-member-quote figcaption strong { display: block; font-weight: 700; }
.sdl-member-quote figcaption span { color: var(--sdl-text-muted); font-size: 13px; }

/* Smaller advisor photo for community quotes */
.sdl-advisor__photo--sm {
  width: 44px; height: 44px;
  font-size: 14px;
  flex: 0 0 44px;
}

/* Community — form embed placeholder */
.sdl-form-embed {
  background: var(--sdl-bg-white);
  border: 2px dashed var(--sdl-border);
  border-radius: var(--sdl-radius-md);
  padding: 32px;
  text-align: left;
  margin-bottom: 28px;
}
.sdl-form-embed__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: var(--sdl-text-muted);
  margin-bottom: 10px;
}
.sdl-form-embed__note svg { width: 18px; height: 18px; flex-shrink: 0; }
.sdl-form-embed__link { color: var(--sdl-accent); font-weight: 600; }
.sdl-form-embed__link:hover { text-decoration: underline; }

/* Community consent text */
.sdl-form-embed__consent {
  font-size: 13.5px;
  color: var(--sdl-text-muted);
  line-height: 1.6;
}
.sdl-form-embed__consent p { margin-bottom: 10px; }
.sdl-form-embed__consent ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.sdl-form-embed__consent ul li { margin-bottom: 4px; }
.sdl-form-embed__consent a { color: var(--sdl-accent); font-weight: 600; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.sdl-cta {
  background: var(--sdl-bg-dark);
  color: var(--sdl-text-light);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sdl-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(45,212,191,0.10), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(45,212,191,0.08), transparent 50%);
  pointer-events: none;
}
.sdl-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sdl-advisory .sdl-cta__title {
  color: var(--sdl-text-light);
  font-size: clamp(28px, 3.6vw, 42px);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sdl-cta__sub {
  color: rgba(255, 255, 255, 0.72);
  max-width: 100%;
  margin: 0 0 0;
  font-size: clamp(15px, 1.4vw, 17px);
  text-align: center;
  display: block;
}
.sdl-cta__inner .sdl-btn {
  margin-top: 40px;
}

/* ============================================================
   WHATSAPP DEMO
   ============================================================ */
.sdl-whatsapp-demo {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.sdl-wa-phone {
  width: 100%;
  max-width: 640px;
  height: 300px;
  background: #e5ddd5;
  border-radius: var(--sdl-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--sdl-font-sans);
}
.sdl-wa-header {
  background: #075e54;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sdl-wa-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0A1929;
  border: 2px solid #2DD4BF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #2DD4BF;
  flex-shrink: 0;
}
.sdl-wa-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.sdl-wa-online {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}
.sdl-wa-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
}
.sdl-wa-body::-webkit-scrollbar { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.sdl-footer {
  background: var(--sdl-bg-darker);
  color: var(--sdl-text-muted-d);
}
.sdl-footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sdl-text-light);
  margin-bottom: 10px;
}
.sdl-footer__hint {
  font-size: 12.5px;
  color: var(--sdl-accent);
  margin-bottom: 12px;
}
.sdl-signup {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 420px;
}
.sdl-signup input {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--sdl-text-light);
  padding: 11px 14px;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}
.sdl-signup input::placeholder { color: rgba(255,255,255,0.4); }
.sdl-signup input:focus { outline: 2px solid var(--sdl-accent); outline-offset: 2px; }
.sdl-signup button {
  background: var(--sdl-accent);
  color: #04241F;
  border: 0;
  padding: 11px 22px;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background .2s ease;
}
.sdl-signup button:hover { background: var(--sdl-accent-soft); }

.sdl-footer__icons {
  display: flex;
  gap: 10px;
}
.sdl-footer__icons a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  color: var(--sdl-text-light);
  transition: background .2s ease, border-color .2s ease;
}
.sdl-footer__icons a:hover {
  background: rgba(45,212,191,0.10);
  border-color: var(--sdl-accent);
  color: var(--sdl-accent);
}
.sdl-footer__icons svg { width: 16px; height: 16px; }

.sdl-email-picker {
  position: relative;
}
.sdl-email-picker__btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--sdl-border-dark);
  border-radius: 8px;
  color: var(--sdl-text-light);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.sdl-email-picker__btn:hover,
.sdl-email-picker__btn[aria-expanded="true"] {
  background: rgba(45,212,191,0.10);
  border-color: var(--sdl-accent);
  color: var(--sdl-accent);
}
.sdl-email-picker__btn svg { width: 16px; height: 16px; }
.sdl-email-picker__menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--sdl-bg-dark);
  border: 1px solid var(--sdl-border-dark);
  border-radius: 8px;
  overflow: hidden;
  min-width: 130px;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.sdl-email-picker__menu.is-open {
  display: block;
}
.sdl-email-picker__menu a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--sdl-text-light);
  transition: background .15s ease;
  border: none;
  background: none;
  text-decoration: none;
}
.sdl-email-picker__menu a:hover {
  background: rgba(45,212,191,0.10);
  color: var(--sdl-accent);
}

.sdl-footer__bar {
  border-top: 1px solid var(--sdl-border-dark);
  padding: 14px 0;
}
.sdl-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}
.sdl-footer__bar-inner .sdl-footer__icons { gap: 8px; }
.sdl-footer__bar-inner .sdl-footer__icons a,
.sdl-footer__bar-inner .sdl-email-picker__btn {
  width: 30px;
  height: 30px;
}
.sdl-footer__bar-inner .sdl-footer__icons .sdl-email-picker__menu a {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  border-radius: 0;
  background: none;
}
.sdl-footer__legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.sdl-footer__legal a:hover { color: var(--sdl-text-light); }

/* ============================================================
   COMMUNITY PAGE
   ============================================================ */

/* Member testimonial — quote + photo inline figcaption */
.sdl-advisory .sdl-member-quote {
  margin: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sdl-advisory .sdl-member-quote blockquote {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--sdl-text-dark);
  font-style: italic;
}

.sdl-advisory .sdl-member-quote blockquote::before {
  content: '\201C';
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: var(--sdl-accent);
  margin-right: 0.1em;
  font-style: normal;
}

.sdl-advisory .sdl-member-quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.sdl-advisory .sdl-member-quote figcaption strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sdl-text-dark);
}

.sdl-advisory .sdl-member-quote figcaption span {
  display: block;
  font-size: 0.8125rem;
  color: var(--sdl-text-muted, #6b7280);
}

/* Smaller advisor photo variant for member quotes */
.sdl-advisory .sdl-advisor__photo--sm {
  width: 44px;
  height: 44px;
  min-width: 44px;
  font-size: 0.75rem;
}

/* HubSpot form embed placeholder */
.sdl-advisory .sdl-form-embed {
  background: #ffffff;
  border: 2px dashed var(--sdl-accent);
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: left;
  color: var(--sdl-text-dark);
  margin-bottom: 2rem;
}

.sdl-advisory .sdl-form-embed__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--sdl-accent);
  margin-bottom: 0.5rem;
}

.sdl-advisory .sdl-form-embed__note svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.sdl-advisory .sdl-form-embed__link {
  color: var(--sdl-accent);
  text-decoration: underline;
}

/* Membership consent text */
.sdl-advisory .sdl-form-embed__consent {
  font-size: 0.8125rem;
  color: var(--sdl-text-muted, #6b7280);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.sdl-advisory .sdl-form-embed__consent ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}

.sdl-advisory .sdl-form-embed__consent a {
  color: var(--sdl-accent);
  text-decoration: underline;
}

/* ============================================================
   BOOKING MODALS
   ============================================================ */

/* Hidden by default; shown when the URL hash matches the modal id */
.sdl-advisory .sdl-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
}

.sdl-advisory .sdl-modal:target {
  display: block;
}

.sdl-advisory .sdl-modal__backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(2, 33, 54, 0.80); /* --sdl-bg-dark at 80% */
  backdrop-filter: blur(4px);
  padding: 1rem;
  box-sizing: border-box;
}

.sdl-advisory .sdl-modal__panel {
  position: relative;
  width: 100%;
  max-width: 860px;
  height: clamp(480px, 80vh, 780px);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.sdl-advisory .sdl-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--sdl-bg-dark);
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sdl-advisory .sdl-modal__close:hover {
  background: var(--sdl-accent);
  color: var(--sdl-bg-dark);
}

.sdl-advisory .sdl-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* Form variant — auto height, padded, narrower */
.sdl-advisory .sdl-modal__panel--form {
  max-width: 560px;
  height: auto;
  min-height: 200px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 4vw, 40px) clamp(28px, 4vw, 40px);
}

.sdl-advisory .sdl-modal__heading {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--sdl-text-dark);
  margin: 0 0 8px;
  line-height: 1.2;
}

.sdl-advisory .sdl-modal__hint {
  font-size: 0.95rem;
  color: var(--sdl-text-muted);
  margin: 0 0 24px;
}

/* Email modal variant — narrower, padded, auto height */
.sdl-advisory .sdl-modal__panel--email {
  max-width: 420px;
  height: auto;
  min-height: auto;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 4vw, 40px);
}

.sdl-advisory .sdl-modal__email-content {
  text-align: left;
}

.sdl-advisory .sdl-modal__email-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #022136;
  margin: 0 0 8px;
  line-height: 1.2;
}

.sdl-advisory .sdl-modal__email-content p {
  font-size: 0.95rem;
  color: var(--sdl-text-muted);
  margin: 0 0 32px;
}

.sdl-advisory .sdl-modal__email-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sdl-advisory .sdl-modal__email-buttons .sdl-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   EVENTS PAGE — Event cards
   ============================================================ */
.sdl-event-card {
  display: flex;
  flex-direction: column;
  background: var(--sdl-bg-white);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-md);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sdl-event-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sdl-shadow-card);
}
.sdl-event-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--sdl-accent-tint);
  flex-shrink: 0;
}
.sdl-event-card__content {
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.sdl-event-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.sdl-event-card__date {
  font-size: 13px;
  font-weight: 600;
  color: var(--sdl-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sdl-event-card__type {
  font-size: 11px;
  font-weight: 700;
  color: var(--sdl-text-light);
  background: var(--sdl-accent);
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sdl-event-card--past .sdl-event-card__type {
  background: #9CA3AF;
}
.sdl-event-card__title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--sdl-text-dark);
  line-height: 1.25;
  margin: 0;
}
.sdl-event-card__body {
  font-size: 14px;
  color: var(--sdl-text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.sdl-event-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--sdl-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: color .2s ease;
}
.sdl-event-card--past .sdl-event-card__link {
  color: #6B7280;
}
.sdl-event-card__link:hover {
  color: var(--sdl-text-dark);
}
.sdl-event-card--past .sdl-event-card__link:hover {
  color: var(--sdl-text-dark);
}

/* ============================================================
   HANDWRITTEN UNDERLINE
   ============================================================ */
@keyframes sdl-underline-reveal {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.sdl-handwritten-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.sdl-handwritten-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  background-color: var(--sdl-accent);
  animation: sdl-underline-reveal 0.8s ease-out 0.2s forwards;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .sdl-advisory *,
  .sdl-advisory *::before,
  .sdl-advisory *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .sdl-growing {
    animation: none;
    background: none;
    -webkit-text-fill-color: white;
  }
}

/* Complementary colour scheme for Topics tiles */
.sdl-advisory .sdl-topic:nth-child(5n+1) {
  background: #E0F9F7;
  --tile-accent: #0D9488;
}

.sdl-advisory .sdl-topic:nth-child(5n+2) {
  background: #FEE8E5;
  --tile-accent: #DC2626;
}

.sdl-advisory .sdl-topic:nth-child(5n+3) {
  background: #F3E8FF;
  --tile-accent: #9333EA;
}

.sdl-advisory .sdl-topic:nth-child(5n+4) {
  background: #FEF3C7;
  --tile-accent: #D97706;
}

.sdl-advisory .sdl-topic:nth-child(5n+5) {
  background: #DBEAFE;
  --tile-accent: #2563EB;
}

.sdl-advisory .sdl-topic__icon {
  background: var(--tile-accent, var(--sdl-accent-tint));
  color: white;
}

.sdl-advisory .sdl-topic:nth-child(5n+1) .sdl-topic__icon {
  background: #0D9488;
}

.sdl-advisory .sdl-topic:nth-child(5n+2) .sdl-topic__icon {
  background: #DC2626;
}

.sdl-advisory .sdl-topic:nth-child(5n+3) .sdl-topic__icon {
  background: #9333EA;
}

.sdl-advisory .sdl-topic:nth-child(5n+4) .sdl-topic__icon {
  background: #D97706;
}

.sdl-advisory .sdl-topic:nth-child(5n+5) .sdl-topic__icon {
  background: #2563EB;
}

.sdl-advisory .sdl-whatsapp-icon {
  width: 18px;
  height: 18px;
  vertical-align: text-bottom;
  margin-right: 6px;
}

/* Teal highlight effect for section titles */
.sdl-advisory .sdl-section__title {
  background: rgba(94, 234, 212, 0.75);
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
