/* =============================================================================
   Page-level building blocks for the pages that were added for SEO/AEO:
   /courses, /thank-you, /reviews and the area landing pages.

   These pages started as plain text and did not look related to the homepage.
   Everything here reuses the homepage's visual language: a navy hero band over a
   faint grid, alternating light sections, white cards with real imagery, an
   orange primary call to action, and icon chips for facts.

   Tokens come from ds-design-system.css; fallbacks are inlined so a card still
   renders correctly if this file is ever loaded on its own.
   ========================================================================== */

:root {
  --dsp-navy: #0a2647;
  --dsp-navy-2: #123f6d;
  --dsp-ink: #12233d;
  --dsp-body: #4a5b73;
  --dsp-muted: #7a8ba1;
  --dsp-line: #e6ecf4;
  --dsp-surface: #fff;
  --dsp-surface-alt: #f6f9fd;
  --dsp-cta: #d1450f;
  --dsp-cta-end: #e35d1c;
  --dsp-radius: 14px;
  --dsp-radius-lg: 18px;
  --dsp-shadow-sm: 0 1px 2px rgba(18, 35, 61, .06), 0 4px 14px rgba(18, 35, 61, .05);
  --dsp-shadow: 0 10px 30px rgba(18, 35, 61, .1);
  /* White grid, for the navy bands only. The light-background counterpart lives in
     ds-design-system.css as --ds-grid, painted once on the page canvas. */
  --dsp-grid: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 .5H40M.5 0V40' stroke='%23ffffff' stroke-opacity='.07'/%3E%3C/svg%3E");
}

.dsp {
  text-align: left;
  color: var(--dsp-body);
}

.dsp__wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ------------------------------------------------------------------- hero */

.dsp-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 42px;
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(64, 145, 255, .28), transparent 60%),
    linear-gradient(135deg, var(--dsp-navy) 0%, #071c34 58%, #0d2e52 100%);
  color: #fff;
}

.dsp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dsp-grid);
  pointer-events: none;
}

.dsp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.dsp-hero__inner--wide {
  grid-template-columns: 1fr;
}

.dsp-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
}

.dsp-crumbs a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.dsp-crumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

.dsp-crumbs strong {
  color: #fff;
  font-weight: 600;
}

.dsp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .09);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #cfe2ff;
}

.dsp-eyebrow i {
  font-size: 13px;
  color: #ffb37a;
}

.dsp-hero h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.6px;
  color: #fff;
}

.dsp-hero__lead {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .84);
}

/* Facts as icon chips: scannable for a visitor who reads nothing else. */
.dsp-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.dsp-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .07);
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
}

.dsp-facts i {
  color: #ffb37a;
}

.dsp-facts strong {
  color: #fff;
  font-weight: 700;
}

.dsp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.dsp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 0;
  border-radius: 11px;
  background-image: linear-gradient(180deg, var(--dsp-cta-end) 0%, var(--dsp-cta) 100%);
  box-shadow: 0 6px 18px rgba(209, 69, 15, .32);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.dsp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(209, 69, 15, .38);
  filter: brightness(1.04);
}

.dsp-btn:active {
  transform: translateY(0);
}

.dsp-btn--ghost {
  background: rgba(255, 255, 255, .1);
  background-image: none;
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: none;
}

.dsp-btn--ghost:hover {
  background: rgba(255, 255, 255, .17);
  box-shadow: none;
}

.dsp-btn--light {
  background: #fff;
  background-image: none;
  border: 1px solid var(--dsp-line);
  box-shadow: var(--dsp-shadow-sm);
  color: var(--dsp-ink) !important;
}

.dsp-btn--wa {
  background-image: linear-gradient(180deg, #2ecc71 0%, #1aa053 100%);
  box-shadow: 0 6px 18px rgba(26, 160, 83, .3);
}

.dsp-hero__note {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .66);
}

/* Photo collage beside the hero copy: real campus and student photos. */
.dsp-hero__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dsp-hero__media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--dsp-radius);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
}

.dsp-hero__media figure:first-child {
  grid-column: 1 / -1;
}

.dsp-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.dsp-hero__media figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(7, 22, 40, .78);
  backdrop-filter: blur(4px);
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
}

/* Thank-you page: a green tick carries the confirmation instead of a plain heading. */
.dsp-hero--ty {
  background:
    radial-gradient(760px 380px at 78% -14%, rgba(34, 197, 94, .3), transparent 62%),
    linear-gradient(135deg, #08301f 0%, #071c34 52%, #0d2e52 100%);
}

.dsp-ty__tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .16);
  border: 1px solid rgba(34, 197, 94, .45);
  font-size: 22px;
  color: #4ade80;
}

/* The inline lead form sits inside the dark band on some pages. */
.dsp-hero__form .ds-inline-lead {
  margin: 0;
  grid-template-columns: 1fr;
  max-width: none;
}

/* --------------------------------------------------------------- sections */

/* Transparent and translucent, not solid: the page grid is painted once on <html> by the design
   system, and an opaque band would cut a hole in it. */
.dsp-sec {
  padding: 52px 0;
  background: transparent;
}

.dsp-sec--alt {
  position: relative;
  background: rgba(10, 38, 71, 0.028);
  border-top: 1px solid var(--dsp-line);
  border-bottom: 1px solid var(--dsp-line);
}

.dsp-sec > .dsp__wrap {
  position: relative;
}

.dsp-sec__head {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.dsp-sec__head--left {
  margin-left: 0;
  text-align: left;
}

.dsp-sec__head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.4px;
  color: var(--dsp-ink);
}

.dsp-sec__head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dsp-body);
}

/* A smaller heading for a block that sits below a main section heading. */
.dsp-sec__head--sub {
  margin: 34px 0 14px;
}

.dsp-sec__head--sub h2 {
  font-size: 21px;
}

.dsp-sec__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff4ee;
  border: 1px solid #ffd9c4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #b23c0c;
}

/* Each goal-based track gets an icon and a short promise above its cards. */
.dsp-track {
  margin-bottom: 34px;
}

.dsp-track:last-of-type {
  margin-bottom: 8px;
}

.dsp-track__head {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.dsp-track__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff4ee;
  border: 1px solid #ffd9c4;
  font-size: 19px;
  color: var(--dsp-cta);
}

.dsp-track__head h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dsp-ink);
}

.dsp-track__head p {
  margin: 0;
  max-width: 760px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--dsp-body);
}

/* A track can end with a "see the full curriculum" link instead of cards. Without this the link
   button sits flush against the last tick. */
.dsp-track > .dsp-links {
  margin-top: 16px;
}

/* ----------------------------------------------------------- course cards */

.dsp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 18px;
}

.dsp-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dsp-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  background: var(--dsp-surface);
  box-shadow: var(--dsp-shadow-sm);
  text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.dsp-card:hover {
  transform: translateY(-3px);
  border-color: #f0b699;
  box-shadow: var(--dsp-shadow);
}

.dsp-card__media {
  position: relative;
  background: #0b1220;
}

.dsp-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Icon badge over the banner ties the card to the course's menu icon. */
.dsp-card__icon {
  position: absolute;
  left: 12px;
  bottom: -18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--dsp-line);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
  color: var(--dsp-cta);
  font-size: 17px;
}

.dsp-card__tag {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(7, 22, 40, .82);
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #fff;
}

.dsp-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 9px;
  padding: 26px 16px 16px;
}

.dsp-card__title {
  margin: 0;
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dsp-ink);
}

.dsp-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dsp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--dsp-surface-alt);
  border: 1px solid var(--dsp-line);
  font-size: 12.5px;
  font-weight: 600;
  color: #2f4763;
}

.dsp-chip i {
  color: var(--dsp-cta);
}

.dsp-chip--fee {
  background: #fff4ee;
  border-color: #ffd9c4;
  color: #b23c0c;
}

.dsp-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1 1 auto;
  align-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dsp-card__skills li {
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef4fb;
  font-size: 11.5px;
  font-weight: 600;
  color: #3d5a7a;
}

.dsp-card__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dsp-body);
}

.dsp-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dsp-cta);
}

.dsp-card__foot i {
  transition: transform .15s ease;
}

.dsp-card:hover .dsp-card__foot i {
  transform: translateX(3px);
}

/* ------------------------------------------------------------- area cards */

.dsp-areas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

.dsp-area {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
  text-decoration: none !important;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.dsp-area:hover {
  transform: translateY(-2px);
  border-color: #f0b699;
  box-shadow: var(--dsp-shadow);
}

.dsp-area__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff4ee;
  border: 1px solid #ffd9c4;
  font-size: 18px;
  color: var(--dsp-cta);
}

.dsp-area__body {
  flex: 1 1 auto;
  min-width: 0;
}

.dsp-area__body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--dsp-ink);
}

.dsp-area__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-bottom: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: #2f4763;
}

.dsp-area__meta i {
  margin-right: 5px;
  color: var(--dsp-cta);
}

.dsp-area__courses {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--dsp-muted);
}

.dsp-area__go {
  flex: 0 0 auto;
  font-size: 20px;
  color: #b9c7d8;
  transition: transform .16s ease, color .16s ease;
}

.dsp-area:hover .dsp-area__go {
  transform: translateX(3px);
  color: var(--dsp-cta);
}

/* --------------------------------------------------- feature & route cards */

.dsp-feature {
  padding: 22px 20px;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
}

.dsp-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #fff4ee;
  border: 1px solid #ffd9c4;
  font-size: 19px;
  color: var(--dsp-cta);
}

.dsp-feature h3 {
  margin: 0 0 7px;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dsp-ink);
}

.dsp-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dsp-body);
}

/* A feature card that is itself the action, e.g. the "call us" / "WhatsApp us" tiles on the contact
   page, where making the visitor hunt for a link inside the card would be perverse. */
a.dsp-feature--link {
  display: block;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.dsp-feature--link:hover {
  transform: translateY(-3px);
  border-color: #ffd0b5;
  box-shadow: var(--dsp-shadow);
}

.dsp-feature__value {
  display: block;
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dsp-cta);
  word-break: break-word;
}

.dsp-feature__go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dsp-cta);
}

a.dsp-feature--link:hover .dsp-feature__go i {
  transform: translateX(3px);
}

.dsp-feature__go i {
  transition: transform 0.18s ease;
}

/* When the card is not itself a link the action inside it still has to read as one. */
.dsp-feature__go a {
  color: inherit;
  text-decoration: none;
}

.dsp-feature__go a:hover {
  text-decoration: underline;
}

/* Route directions beside a live map, so "how do I get there" needs no second tab. */
.dsp-route {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.dsp-route .dsp-ticks {
  grid-template-columns: 1fr;
}

/* Directions and address are facts, not a checklist, so drop the green tick colour. */
.dsp-route .dsp-ticks i {
  color: var(--dsp-cta);
}

.dsp-route__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dsp-route__map {
  overflow: hidden;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
}

.dsp-route__map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* --------------------------------------------------------------- CTA band */

.dsp-band {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-radius: var(--dsp-radius-lg);
  background:
    radial-gradient(600px 240px at 90% 0%, rgba(64, 145, 255, .3), transparent 65%),
    linear-gradient(135deg, var(--dsp-navy) 0%, #0d2e52 100%);
  color: #fff;
}

.dsp-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dsp-grid);
  pointer-events: none;
}

.dsp-band__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: 22px;
  color: #ffb37a;
}

.dsp-band__copy {
  position: relative;
  flex: 1 1 320px;
}

.dsp-band__copy h2,
.dsp-band__copy h3 {
  margin: 0 0 5px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.dsp-band__copy p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
}

.dsp-band__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dsp-sec .dsp-band {
  margin-top: 30px;
}

/* --------------------------------------------------- proof: photos & logos */

.dsp-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.dsp-photos figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--dsp-radius);
  border: 1px solid var(--dsp-line);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
}

.dsp-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dsp-photos figcaption {
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--dsp-muted);
}

.dsp-photos__note {
  margin: 30px 0 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--dsp-muted);
}

/* Same hiring artwork the homepage uses, so the two pages make the same claim the same way. */
.dsp-hiring img {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  height: auto;
}

.dsp-hiring img.dsp-hiring__desktop {
  display: block;
}

.dsp-hiring img.dsp-hiring__mobile {
  display: none;
}

@media (max-width: 767px) {
  .dsp-hiring img.dsp-hiring__desktop {
    display: none;
  }

  .dsp-hiring img.dsp-hiring__mobile {
    display: block;
  }
}

/* ----------------------------------------------------------- steps & lists */

.dsp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dsp-step;
}

/* Five steps against the default 230px minimum lay out 4 + 1, which reads as a mistake. A wider
   minimum gives 3 + 2 and roomier cards. */
.dsp-steps--wide {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.dsp-steps li {
  position: relative;
  padding: 20px 18px 18px;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
}

.dsp-steps li::before {
  counter-increment: dsp-step;
  content: counter(dsp-step);
  position: absolute;
  top: -13px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background-image: linear-gradient(180deg, var(--dsp-cta-end) 0%, var(--dsp-cta) 100%);
  box-shadow: 0 4px 12px rgba(209, 69, 15, .28);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.dsp-steps h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 6px 0 6px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dsp-ink);
}

.dsp-steps h3 i {
  color: var(--dsp-cta);
}

.dsp-steps p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dsp-body);
}

.dsp-ticks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dsp-ticks li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--dsp-body);
}

.dsp-ticks i {
  flex: 0 0 20px;
  margin-top: 3px;
  color: #16a34a;
}

/* Where the ticks are full sentences rather than three-word labels, four columns leaves each one
   about 240px wide and breaks the copy into ragged three-line stacks. Two roomy columns instead. */
.dsp-ticks--wide {
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
}

/* ---------------------------------------------------------------- reviews */

.dsp-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 26px 28px;
  border-radius: var(--dsp-radius-lg);
  border: 1px solid var(--dsp-line);
  background: var(--dsp-surface);
  box-shadow: var(--dsp-shadow);
}

.dsp-score__value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-right: 28px;
  border-right: 1px solid var(--dsp-line);
}

.dsp-score__value strong {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--dsp-ink);
}

.dsp-score__meta {
  flex: 1 1 300px;
}

.dsp-score__meta h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--dsp-ink);
}

.dsp-score__meta p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--dsp-body);
}

.dsp-stars {
  display: inline-flex;
  gap: 3px;
  font-size: 16px;
  color: #f59e0b;
}

.dsp-stars--sm {
  font-size: 13px;
}

.dsp-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}

.dsp-review {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 18px;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
}

.dsp-review__quote {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 22px;
  color: #e8eef6;
}

.dsp-review__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #33465f;
}

.dsp-review__by {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px solid #eef2f7;
}

.dsp-review__by img,
.dsp-review__initial {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.dsp-review__initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4ee;
  border: 1px solid #ffd9c4;
  font-size: 16px;
  font-weight: 700;
  color: var(--dsp-cta);
}

.dsp-review__by strong {
  display: block;
  font-size: 14px;
  color: var(--dsp-ink);
}

.dsp-review__by em {
  font-style: normal;
  font-size: 12px;
  color: var(--dsp-muted);
}

/* The gallery cards are square and already branded, so they only need a frame. */
.dsp-placed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.dsp-placed figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--dsp-radius);
  border: 1px solid var(--dsp-line);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}

.dsp-placed figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--dsp-shadow);
}

.dsp-placed img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.dsp-feature--wide {
  max-width: 780px;
  margin: 0 auto;
}

.dsp-feature--wide a {
  color: var(--dsp-cta);
  font-weight: 600;
}

/* ------------------------------------------------------------------- FAQ */

.dsp-faq {
  display: grid;
  gap: 10px;
}

.dsp-faq details {
  overflow: hidden;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
}

.dsp-faq summary {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--dsp-ink);
  list-style: none;
}

.dsp-faq summary::-webkit-details-marker {
  display: none;
}

.dsp-faq summary i {
  flex: 0 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #fff4ee;
  font-size: 13px;
  color: var(--dsp-cta);
}

.dsp-faq details[open] summary {
  background: var(--dsp-surface-alt);
  border-bottom: 1px solid var(--dsp-line);
}

.dsp-faq p {
  margin: 0;
  padding: 14px 18px 17px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--dsp-body);
}

/* ------------------------------------------------------------- link rows */

.dsp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dsp-links--center {
  justify-content: center;
  margin-top: 24px;
}

.dsp-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--dsp-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
  font-size: 14px;
  font-weight: 600;
  color: #24405f;
  text-decoration: none;
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
}

.dsp-links a:hover {
  border-color: var(--dsp-cta);
  color: var(--dsp-cta);
  transform: translateY(-1px);
}

.dsp-links i {
  color: var(--dsp-cta);
}

/* ------------------------------------------------------ list search & paging */

.dsp-search {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 22px;
}

.dsp-search input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 15px;
  border: 1px solid var(--dsp-line);
  border-radius: 11px;
  background: #fff;
  font-size: 15px;
  color: var(--dsp-ink);
}

.dsp-search input:focus {
  outline: none;
  border-color: var(--dsp-cta);
  box-shadow: 0 0 0 3px rgba(209, 69, 15, .16);
}

.dsp-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}

.dsp-filters__item {
  padding: 8px 15px;
  border: 1px solid var(--dsp-line);
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: #24405f;
  text-decoration: none;
}

.dsp-filters__item:hover {
  border-color: var(--dsp-cta);
  color: var(--dsp-cta);
}

.dsp-filters__item.is-on {
  background: var(--dsp-navy);
  border-color: var(--dsp-navy);
  color: #fff;
}

/* Laravel's paginator markup is styled generically so it stops looking like a bare list. */
.dsp-pager {
  margin-top: 30px;
}

.dsp-pager nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.dsp-pager svg {
  width: 16px;
  height: 16px;
}

.dsp-pager a,
.dsp-pager span {
  color: var(--dsp-body);
  font-size: 14px;
  text-decoration: none;
}

.dsp-pager a:hover {
  color: var(--dsp-cta);
}

/* ------------------------------------------------------- legal / policy pages */

/* The privacy, terms and refund pages are long prose. A sticky contents rail on the left keeps
   the reader oriented, and the measure on the right is capped so lines stay readable. */
.dsp-legal {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.dsp-legal__toc {
  position: sticky;
  top: 100px;
  padding: 18px 18px 20px;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  background: #fff;
  box-shadow: var(--dsp-shadow-sm);
}

.dsp-legal__toc h2 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dsp-muted);
}

.dsp-legal__toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dsp-legal;
}

.dsp-legal__toc li {
  counter-increment: dsp-legal;
}

.dsp-legal__toc a {
  display: flex;
  gap: 9px;
  padding: 6px 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--dsp-body);
  text-decoration: none;
}

.dsp-legal__toc a::before {
  content: counter(dsp-legal);
  flex: 0 0 18px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--dsp-cta);
  text-align: right;
}

.dsp-legal__toc a:hover {
  color: var(--dsp-cta);
}

.dsp-legal__body > section {
  padding-bottom: 26px;
  /* Clears the sticky header when a contents link jumps to a section. */
  scroll-margin-top: 100px;
}

.dsp-legal__body > section + section {
  padding-top: 26px;
  border-top: 1px solid var(--dsp-line);
}

.dsp-legal__body h2 {
  margin: 0 0 14px;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--dsp-ink);
}

.dsp-legal__body h3 {
  margin: 22px 0 8px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--dsp-ink);
}

.dsp-legal__body p,
.dsp-legal__body li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dsp-body);
}

.dsp-legal__body p {
  margin: 0 0 14px;
}

/* The site-wide reset strips list markers, which is right for navigation but wrong for prose:
   without them the clauses below read as loose sentences rather than a list. */
.dsp-legal__body ul {
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: disc outside;
}

.dsp-legal__body ol {
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: decimal outside;
}

.dsp-legal__body li::marker {
  color: var(--dsp-cta);
}

.dsp-legal__body li {
  margin-bottom: 8px;
}

.dsp-legal__body strong {
  color: var(--dsp-ink);
  font-weight: 700;
}

.dsp-legal__body a {
  color: var(--dsp-cta);
  font-weight: 600;
}

/* Fee slabs and data-retention periods read far better as a table than as prose. */
.dsp-legal__table {
  width: 100%;
  margin: 0 0 16px;
  border-collapse: collapse;
  border: 1px solid var(--dsp-line);
  border-radius: var(--dsp-radius);
  overflow: hidden;
}

.dsp-legal__table th,
.dsp-legal__table td {
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  border-bottom: 1px solid var(--dsp-line);
  color: var(--dsp-body);
}

.dsp-legal__table th {
  background: var(--dsp-surface-alt);
  font-weight: 700;
  color: var(--dsp-ink);
}

.dsp-legal__table tr:last-child td {
  border-bottom: 0;
}

/* Anything a reader must not skim past, e.g. the non-refundable window. */
.dsp-legal__note {
  display: flex;
  gap: 12px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid #ffd9c4;
  border-left: 4px solid var(--dsp-cta);
  border-radius: 10px;
  background: #fff8f4;
}

.dsp-legal__note i {
  flex: 0 0 18px;
  margin-top: 3px;
  color: var(--dsp-cta);
}

.dsp-legal__note p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .dsp-legal {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dsp-legal__toc {
    position: static;
  }
}

/* -------------------------------------------------------------- responsive */

@media (max-width: 991px) {
  .dsp-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dsp-hero h1 {
    font-size: 27px;
  }

  .dsp-hero__lead {
    font-size: 15.5px;
  }

  .dsp-sec {
    padding: 40px 0;
  }

  .dsp-sec__head h2 {
    font-size: 23px;
  }

  .dsp-band {
    padding: 20px;
  }

  .dsp-band__actions .dsp-btn {
    flex: 1 1 100%;
  }

  .dsp-route {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .dsp-hero {
    padding: 22px 0 32px;
  }

  .dsp-hero h1 {
    font-size: 24px;
  }

  .dsp-hero__actions .dsp-btn {
    flex: 1 1 100%;
  }

  .dsp-grid {
    grid-template-columns: 1fr;
  }

  .dsp-score {
    padding: 20px;
    gap: 16px;
  }

  .dsp-score__value {
    padding-right: 0;
    border-right: 0;
  }

  .dsp-score__value strong {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dsp-btn,
  .dsp-card,
  .dsp-links a,
  .dsp-card__foot i {
    transition: none;
  }

  .dsp-btn:hover,
  .dsp-card:hover,
  .dsp-links a:hover {
    transform: none;
  }
}
