/* ═══════════════════════════════════════════════════════
   AWARENESS SDF — Test / Redesign Page
   Fonts: Barlow Condensed (headings) + DM Sans (body)
   All classes prefixed .t- to avoid conflicts
═══════════════════════════════════════════════════════ */

/* ── Scoped vars ────────────────────────────────────── */
.t-wrap {
  --t-yellow:  var(--asdf-color-primary,   #fdca00);
  --t-dark:    #0d0d0d;
  --t-text:    var(--asdf-color-text,      #181818);
  --t-light:   var(--asdf-color-light-text,#fafafa);
  --t-off-white: #f8f7f4;
  --t-border:  #e5e7eb;
  --t-muted:   #6b7280;
  --t-font-h:  'Barlow Condensed', var(--asdf-font-heading,'Inter'), sans-serif;
  --t-font-b:  'DM Sans',         var(--asdf-font-body,'Inter'),    sans-serif;
  --t-radius:  20px;
  --t-radius-sm: 12px;
  font-family: var(--t-font-b);
  color: var(--t-text);
}

/* ── Headings ────────────────────────────────────────── */
.t-wrap h1, .t-wrap h2, .t-wrap h3,
.t-display { font-family: var(--t-font-h); letter-spacing: 0.01em; line-height: 1.05; margin: 0; }

/* ── Container ──────────────────────────────────────── */
.t-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Labels ─────────────────────────────────────────── */
.t-label {
  display: inline-block;
  font-family: var(--t-font-b);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t-muted);
}
.t-label--yellow {
  background: var(--t-yellow);
  color: var(--t-text);
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
}

/* ── Buttons ─────────────────────────────────────────── */
.t-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--t-font-b);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--t-radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
}
.t-btn--primary {
  background: var(--t-yellow);
  color: var(--t-text);
  border-color: var(--t-text);
}
.t-btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }
.t-btn--ghost {
  background: transparent;
  color: var(--t-text);
  border-color: var(--t-text);
}
.t-btn--ghost:hover { background: var(--t-text); color: var(--t-light); }
.t-btn--ghost-light {
  background: transparent;
  color: var(--t-light);
  border-color: rgba(255,255,255,0.35);
}
.t-btn--ghost-light:hover { background: rgba(255,255,255,0.08); }
.t-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ── HERO ────────────────────────────────────────────── */
.t-hero {
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.t-hero__inner {
  display: flex;
  flex-direction: column;
}
.t-hero__text {
  order: 2;
  padding: 3rem 1.25rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.t-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.t-hero__eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--t-yellow);
  border-radius: 2px;
  flex-shrink: 0;
}
.t-hero__h1 {
  font-family: var(--t-font-h);
  font-size: clamp(2.75rem, 9vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
  color: var(--t-text);
}
.t-hero__h1 em {
  font-style: normal;
  color: var(--t-yellow);
  -webkit-text-stroke: 1px var(--t-text);
}
.t-hero__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--t-text);
  opacity: 0.78;
  max-width: 32rem;
}
.t-hero__img-wrap {
  order: 1;
  position: relative;
}
.t-hero__img {
  width: 100%;
  height: 52vw;
  min-height: 240px;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.t-hero__img-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--t-yellow);
  border: 2px solid var(--t-text);
  border-radius: var(--t-radius);
  padding: 0.875rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.t-hero__badge-num {
  font-family: var(--t-font-h);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--t-text);
}
.t-hero__badge-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t-text);
  opacity: 0.7;
}

/* ── STATS BAR ───────────────────────────────────────── */
.t-stats {
  background: var(--t-dark);
  padding: 2.25rem 1.25rem;
}
.t-stats__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.t-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
}
.t-stat__num {
  font-family: var(--t-font-h);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--t-yellow);
  line-height: 1;
  flex-shrink: 0;
  min-width: 4rem;
}
.t-stat__divider {
  display: none;
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.t-stat__text { display: flex; flex-direction: column; gap: 0.125rem; }
.t-stat__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-light);
  line-height: 1.3;
}
.t-stat__sub {
  font-size: 0.8125rem;
  color: var(--t-light);
  opacity: 0.5;
}

/* ── FEATURES INTRO ─────────────────────────────────── */
.t-intro {
  background: var(--t-off-white);
  padding: 4rem 1.25rem;
}
.t-intro__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.t-intro__h2 {
  font-family: var(--t-font-h);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--t-text);
  line-height: 1.05;
}
.t-intro__h2 span { color: var(--t-yellow); -webkit-text-stroke: 1px var(--t-text); }
.t-intro__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.t-intro__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--t-text);
  opacity: 0.8;
  white-space: pre-line;
}
.t-intro__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
.t-pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  border: 1.5px solid var(--t-border);
  border-radius: var(--t-radius-sm);
  padding: 0.75rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-text);
}
.t-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--t-yellow);
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--t-text);
}

/* ── FEATURE CARDS ───────────────────────────────────── */
.t-cards {
  background: #fff;
  padding: 4rem 1.25rem;
}
.t-cards__inner { max-width: 1280px; margin: 0 auto; }
.t-cards__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.t-cards__h2 {
  font-family: var(--t-font-h);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--t-text);
}
.t-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.t-card {
  border: 1.5px solid var(--t-border);
  border-radius: var(--t-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.t-card__img-wrap { position: relative; overflow: hidden; }
.t-card__img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.t-card:hover .t-card__img { transform: scale(1.04); }
.t-card__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--t-font-h);
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--t-yellow);
  color: var(--t-text);
  border: 1.5px solid var(--t-text);
  padding: 0.25rem 0.625rem;
  border-radius: 8px;
  letter-spacing: 0.04em;
}
.t-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.t-card__title {
  font-family: var(--t-font-h);
  font-size: 1.4375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--t-text);
  line-height: 1.1;
}
.t-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--t-text);
  opacity: 0.75;
  flex: 1;
}
.t-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--t-text);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.t-card__link:hover { color: var(--t-muted); }
.t-card__link svg { width: 16px; height: 16px; }

/* ── FEATURE LIST ────────────────────────────────────── */
.t-list {
  background: var(--t-dark);
  padding: 4rem 1.25rem;
}
.t-list__inner { max-width: 1280px; margin: 0 auto; }
.t-list__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
  margin-bottom: 3.5rem;
}
.t-list__badge {
  display: inline-block;
  background: var(--t-yellow);
  color: var(--t-text);
  border: 1.5px solid var(--t-text);
  padding: 0.3125rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.t-list__h2 {
  font-family: var(--t-font-h);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--t-yellow);
  max-width: 30rem;
  line-height: 1.05;
}
.t-list__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--t-light);
  opacity: 0.75;
  max-width: 32rem;
}
.t-list__cols {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.t-list__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.t-list__row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--t-radius-sm);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  outline: none;
}
.t-list__row:focus-visible {
  outline: 2px solid var(--t-yellow);
  outline-offset: 2px;
}
.t-list__row--active {
  background: rgba(253,202,0,0.06);
  border-color: var(--t-yellow);
}
.t-list__row:not(.t-list__row--active):hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.t-list__icon {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(253,202,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(253,202,0,0.25);
  margin-top: 2px;
}
.t-list__icon img { width: 1.125rem; height: 1.125rem; }
.t-list__row-title {
  font-family: var(--t-font-h);
  font-size: 1.1875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--t-yellow);
  margin-bottom: 0.375rem;
  line-height: 1.1;
}
.t-list__row-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--t-light);
  opacity: 0.7;
}
.t-list__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}
.t-list__image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--t-radius);
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

/* ── FAQ ─────────────────────────────────────────────── */
.t-faq {
  background: var(--t-off-white);
  padding: 4rem 1.25rem;
}
.t-faq__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.t-faq__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.t-faq__h2 {
  font-family: var(--t-font-h);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--t-text);
  line-height: 1.05;
}
.t-faq__h2 span { color: var(--t-yellow); -webkit-text-stroke: 1px var(--t-text); }
.t-faq__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--t-text);
  opacity: 0.75;
}
.t-faq__cta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--t-radius);
  border: 1.5px solid var(--t-border);
}
.t-faq__cta-title {
  font-family: var(--t-font-h);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--t-text);
}
.t-faq__cta p { font-size: 0.9375rem; color: var(--t-text); opacity: 0.7; line-height: 1.5; }
.t-faq__right { display: flex; flex-direction: column; gap: 0.75rem; }

/* Accordion */
.t-acc-item {
  background: #fff;
  border: 1.5px solid var(--t-border);
  border-radius: var(--t-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.t-acc-item.is-open {
  border-color: var(--t-text);
}
.t-acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.t-acc-item.is-open .t-acc-btn {
  background: var(--t-yellow);
}
.t-acc-q {
  font-family: var(--t-font-b);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--t-text);
  line-height: 1.4;
}
.t-acc-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--t-text);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--t-text);
  transition: transform 0.25s;
  line-height: 1;
}
.t-acc-item.is-open .t-acc-icon { transform: rotate(45deg); }
.t-acc-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
}
.t-acc-item.is-open .t-acc-body { display: block; }
.t-acc-body p {
  font-size: 0.9375rem;
  color: var(--t-text);
  opacity: 0.8;
  line-height: 1.7;
}

/* ── CTA ─────────────────────────────────────────────── */
.t-cta {
  background: var(--t-dark);
  padding: 5rem 1.25rem;
  text-align: center;
}
.t-cta__inner {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.t-cta__h2 {
  font-family: var(--t-font-h);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--t-light);
}
.t-cta__h2 em { font-style: normal; color: var(--t-yellow); }
.t-cta__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--t-light);
  opacity: 0.7;
  max-width: 30rem;
}
.t-cta__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.t-cta__input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--t-light);
  padding: 0.9375rem 1.25rem;
  border-radius: var(--t-radius-sm);
  font-family: var(--t-font-b);
  font-size: 1rem;
  min-height: 52px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.t-cta__input::placeholder { color: rgba(255,255,255,0.35); }
.t-cta__input:focus { border-color: var(--t-yellow); }
.t-cta__disclaimer {
  font-size: 0.8125rem;
  color: var(--t-light);
  opacity: 0.4;
  line-height: 1.5;
  max-width: 28rem;
}

/* ══════════════════════════════════════════════════════
   TABLET ≥ 640px
══════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .t-inner { padding: 0 2rem; }

  .t-hero__text { padding: 3.5rem 2rem 4rem; }

  .t-stats { padding: 2.5rem 2rem; }
  .t-stats__inner { flex-direction: row; gap: 0; justify-content: space-around; }
  .t-stat { flex-direction: column; align-items: center; text-align: center; gap: 0.375rem; flex: 1; }
  .t-stat__divider { display: block; }
  .t-stat__num { font-size: 3.25rem; min-width: auto; }

  .t-intro { padding: 4.5rem 2rem; }
  .t-intro__inner { padding: 0; }

  .t-cards { padding: 4.5rem 2rem; }
  .t-cards__grid { grid-template-columns: repeat(2, 1fr); }

  .t-list { padding: 4.5rem 2rem; }
  .t-list__inner { padding: 0; }
  .t-list__btns { justify-content: center; }

  .t-faq { padding: 4.5rem 2rem; }
  .t-faq__inner { padding: 0; }

  .t-cta { padding: 6rem 2rem; }
  .t-cta__form { flex-direction: row; align-items: center; }
  .t-cta__input { flex: 1; }
}

/* ══════════════════════════════════════════════════════
   DESKTOP ≥ 900px
══════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  /* Hero two-column */
  .t-hero__inner { flex-direction: row; min-height: 560px; }
  .t-hero__text {
    order: 1;
    flex: 1;
    padding: 5rem 3rem 5rem 2rem;
    justify-content: center;
  }
  .t-hero__img-wrap {
    order: 2;
    flex: 1;
  }
  .t-hero__img { height: 100%; max-height: none; min-height: 560px; }

  /* Stats horizontal dividers */
  .t-stat { position: relative; }
  .t-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,0.12);
  }
  .t-stat__divider { display: none; }

  /* Intro two-column */
  .t-intro__inner { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .t-intro__h2 { flex: 1.1; }
  .t-intro__right { flex: 0.9; padding-top: 0.5rem; }

  /* Cards three-column */
  .t-cards__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }

  /* Feature list two-column */
  .t-list__cols { flex-direction: row; align-items: flex-start; gap: 3.5rem; }
  .t-list__rows { flex: 1; min-width: 0; }
  .t-list__image { flex: 1; min-width: 0; }

  /* FAQ two-column */
  .t-faq__inner { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .t-faq__left { flex: 0.8; position: sticky; top: 6rem; }
  .t-faq__right { flex: 1.2; }
}

/* ══════════════════════════════════════════════════════
   LARGE ≥ 1200px
══════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .t-hero__text { padding: 5rem 4rem 5rem 2rem; }
  .t-intro { padding: 6rem 2rem; }
  .t-cards { padding: 6rem 2rem; }
  .t-list { padding: 6rem 2rem; }
  .t-faq { padding: 6rem 2rem; }
}

/* ─── ABOUT PAGE — two-col sections ─────────────────── */
.tp-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .tp-split { flex-direction: row; align-items: center; gap: 3.5rem; }
  .tp-split--reverse { flex-direction: row-reverse; }
  .tp-split > * { flex: 1; min-width: 0; }
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.tp-contact {
  background: #fff;
  padding: 4rem 1.25rem 5rem;
}
.tp-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: flex-start;
}
.tp-contact__form-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tp-contact__intro { display: flex; flex-direction: column; gap: 1rem; }
.tp-contact__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.tp-contact__eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--t-yellow, #fdca00);
  border-radius: 2px;
  flex-shrink: 0;
}
.tp-contact__h1 {
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
  color: var(--t-yellow, #fdca00);
  -webkit-text-stroke: 1px var(--t-text, #181818);
  margin: 0;
}
.tp-contact__body {
  font-family: var(--t-font-b, 'DM Sans', sans-serif);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--t-text, #181818);
  opacity: 0.8;
  white-space: pre-line;
}
.tp-contact__img-col { width: 100%; }
.tp-contact__img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  max-height: 480px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ─── BOOK PAGE ──────────────────────────────────────── */
.tp-book-hero {
  background: #fff;
  padding: 4rem 1.25rem;
}
.tp-book-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.tp-book-hero__img {
  width: 100%;
  aspect-ratio: 6 / 4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: block;
}
.tp-book-hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tp-book-hero__h1 {
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--t-text, #181818);
  margin: 0;
}
.tp-book-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.tp-book-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--t-off-white, #f8f7f4);
  border-radius: var(--t-radius-sm, 12px);
  border-top: 3px solid var(--t-yellow, #fdca00);
}
.tp-book-feature h3 {
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--t-text, #181818);
  margin: 0;
}
.tp-book-feature p {
  font-size: 0.875rem;
  color: var(--t-text, #181818);
  opacity: 0.7;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 640px) {
  .tp-contact { padding: 5rem 2rem 6rem; }
  .tp-contact__img { max-height: 540px; }
  .tp-book-hero { padding: 5rem 2rem; }
}

@media (min-width: 900px) {
  .tp-contact__inner { flex-direction: row; align-items: flex-start; }
  .tp-contact__form-col { flex: 1.1; }
  .tp-contact__img-col  { flex: 0.9; }
  .tp-contact__img { max-height: 640px; }

  .tp-book-hero__inner { flex-direction: row; align-items: center; gap: 3.5rem; }
  .tp-book-hero__img   { flex: 1; min-width: 0; aspect-ratio: auto; height: 480px; }
  .tp-book-hero__text  { flex: 1; min-width: 0; }
}

@media (min-width: 1200px) {
  .tp-contact { padding: 6rem 2rem; }
  .tp-book-hero { padding: 5.5rem 2rem; }
}

/* ── Courses page ─────────────────────────────────────── */
.t-courses-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: var(--t-dark, #0d0d0d);
}
.t-courses-hero__overlay {
  position: absolute;
  inset: 0;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.90) 40%, rgba(13,13,13,0.55) 100%);
}
.t-courses-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.t-courses-hero__h1 {
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
  color: #fff;
  margin: 0;
  max-width: 26rem;
}
.t-courses-hero__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 30rem;
  margin: 0;
}
.t-courses-learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.t-courses-conf-section {
  position: relative;
  background-color: var(--t-dark, #0d0d0d);
  padding: 5rem 1.25rem;
}
.t-courses-conf-section__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.65) 100%);
}
.t-courses-conf-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.t-courses-conf-section__h2 {
  font-family: var(--t-font-h, 'Barlow Condensed', sans-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--t-yellow, #fdca00);
  margin: 0;
  max-width: 28rem;
}
.t-courses-conf-section__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 36rem;
}

.asdf-gains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .asdf-gains-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 640px) {
  .t-courses-learn-grid { grid-template-columns: repeat(3, 1fr); }
  .t-courses-hero__content { padding: 6rem 2rem; }
  .t-courses-conf-section { padding: 5rem 2rem; }
}
@media (min-width: 900px) {
  .t-courses-learn-grid { grid-template-columns: repeat(6, 1fr); }
  .t-courses-conf-section__inner { flex-direction: row; align-items: center; gap: 4rem; }
  .t-courses-conf-section__h2 { flex: 1; min-width: 0; max-width: none; }
  .t-courses-conf-section__right { flex: 1; min-width: 0; max-width: none; }
}
@media (min-width: 1200px) {
  .t-courses-hero__content { padding: 7rem 2rem; }
  .t-courses-conf-section { padding: 6rem 2rem; }
}
