/* Construction Toolbox Talks — matches processpanda_construction_toolbox_talks_bootstrap.html */

.ttc-page {
  --ttc-green: #39b54a;
  --ttc-green-dark: #2b9839;
  --ttc-black: #081014;
  --ttc-charcoal: #11181d;
  --ttc-light: #f6f8f8;
  --ttc-text: #1c252b;
  --ttc-muted: #657078;
  --ttc-line: #dde3e6;
  color: var(--ttc-text);
  background: #fff;
}

.ttc-accent { color: var(--ttc-green); }

.ttc-section-title {
  margin: 0;
  text-align: center;
  font-size: 45px;
  font-weight: 730;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111;
}

.ttc-section-title--left { text-align: left; }

.ttc-subtext {
  color: var(--ttc-muted);
  max-width: 780px;
  margin: 0.65rem auto 0;
  margin-bottom: 42px;
  text-align: center;
  font-size: 1.25rem;
}

.ttc-subtext--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.ttc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--ttc-green);
  border: 1px solid var(--ttc-green);
  color: #fff !important;
  font-weight: 750;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ttc-btn:hover {
  background: var(--ttc-green-dark);
  border-color: var(--ttc-green-dark);
  color: #fff !important;
}

.ttc-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  font-weight: 600;
}

.ttc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff !important;
}

.ttc-btn--cta {
  padding: 12px 32px;
  flex-shrink: 0;
  gap: 10px;
}

.ttc-btn--cta i {
  font-size: 0.75rem;
}

/* ---------- Hero ---------- */
/* Match header (#00060f) so no dark seam/line under the sticky nav */
body:has(.ttc-page) .header {
  border-bottom: none;
}

.ttc-hero {
  background:
    radial-gradient(circle at 75% 15%, rgba(57, 181, 74, 0.15), transparent 30%),
    linear-gradient(180deg, #00060f 0%, #071015 100%);
  color: #fff;
  padding: 28px 0 36px;
  overflow: hidden;
}

.ttc-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: center;
}

.ttc-hero-copy h1 {
  margin: 0;
  font-size: 66px;
  line-height: 64px;
  font-weight: 520;
  letter-spacing: -0.055em;
  color: #fff;
}

.ttc-hero-lead {
  margin: 1.5rem 0 0;
  color: #dbe3e7;
  font-size: 1.23rem;
  line-height: 1.65;
  max-width: 560px;
}

.ttc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.ttc-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.42));
}

/* ---------- Pain ---------- */
.ttc-pain {
  background: #fff;
  padding: 42px 0 58px;
}

.ttc-pain-head { text-align: center; margin-bottom: 1.5rem; }

.ttc-pain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ttc-pain-card {
  height: 100%;
  background: #fff;
  border: 1px solid #edf0f2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
}

.ttc-pain-icon {
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
}

.ttc-pain-icon img {
  display: block;
  width: auto;
  height: 96px;
  max-width: 100%;
  object-fit: contain;
}

.ttc-pain-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 750;
  color: #111;
}

.ttc-pain-card p {
  color: #59646b;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.45;
}

/* ---------- Works ---------- */
.ttc-works { padding: 0 0 28px; }

.ttc-works-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2.5fr);
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dce2e5;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.ttc-works-copy {
  background: var(--ttc-black);
  color: #fff;
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
}

.ttc-works-copy h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
  max-width: none;
}

.ttc-works-lead {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 430;
}

.ttc-works-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 32px;
  row-gap: 30px;
  margin-top: 3.25rem;
  width: 100%;
}

.ttc-feature-mini {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0;
  min-width: 0;
}

.ttc-feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 0;
  margin-top: 0;
}

.ttc-feature-icon img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.ttc-feature-mini strong {
  display: block;
  font-size: 1.16rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.ttc-feature-mini span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-top: 5px;
  line-height: 1.45;
}

.ttc-works-image {
  background: #dbeaf2;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.ttc-works-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Track ---------- */
.ttc-track { padding: 40px 0 44px; }

.ttc-track-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 20px;
  margin-top: 2rem;
}

.ttc-track-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ttc-track-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  line-height: 0;
  margin-top: 1px;
}

.ttc-track-icon img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.ttc-track-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 650;
  color: #111;
  line-height: 1.25;
}

.ttc-track-item span {
  display: block;
  color: #616b71;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 4px;
}

/* ---------- Site videos ---------- */
.ttc-site-videos { padding: 0 0 28px; }

.ttc-site-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fafbfb;
  border: 1px solid #e5e9eb;
  border-radius: 18px;
  padding: 32px;
}

.ttc-site-media img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ttc-site-point {
  display: flex;
  gap: 14px;
  margin: 20px 0;
}

.ttc-site-point i {
  font-size: 1.7rem;
  color: var(--ttc-green-dark);
  flex: 0 0 auto;
  margin-top: 2px;
}

.ttc-site-point strong {
  display: block;
  font-size: 1.4rem;
  color: #111;
}

.ttc-site-point span {
  display: block;
  color: #5d686f;
  font-size: 1.18rem;
  margin-top: 1px;
  line-height: 1.45;
}

/* ---------- Bottom cards ---------- */
.ttc-bottom { padding: 0 0 28px; }

.ttc-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 5.5fr) minmax(0, 7fr);
  gap: 24px;
  align-items: stretch;
}

.ttc-bottom-card {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e3e7e9;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.ttc-bottom-card--light {
  background: #f4f6f7;
  border-color: #e5e9eb;
}

.ttc-bottom-card--dark {
  background: var(--ttc-black);
  color: #fff;
  border-color: var(--ttc-black);
}

.ttc-bottom-split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.95fr);
  gap: 8px;
  align-items: center;
  height: 100%;
  min-height: 100%;
}

.ttc-bottom-split--dark {
  grid-template-columns: minmax(0, 1.54fr) minmax(0, 1.05fr);
}

.ttc-bottom-copy {
  padding: 28px 22px 28px 28px;
}

.ttc-bottom-copy h2 {
  margin: 0;
  font-size: 29px;
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: inherit;
}

.ttc-bottom-lead {
  margin: 0.7rem 0 0;
  line-height: 1.5;
  font-size: 1.22rem;
  color: #5d686f;
}

.ttc-bottom-card--dark .ttc-bottom-lead {
  color: #c4cdd1;
}

.ttc-inductions-media {
  padding: 16px 18px 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttc-inductions-media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.ttc-comply-media {
  padding: 16px 16px 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttc-comply-media img {
  width: 100%;
  max-height: 300px;
  display: block;
  object-fit: contain;
}

.ttc-bullets {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
}

.ttc-bullets li {
  margin: 0.55rem 0;
  padding-left: 1.7rem;
  position: relative;
  color: inherit;
  font-size: 1.1rem;
  line-height: 1.4;
}

.ttc-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background-color: var(--ttc-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 4.9-4.9L12.5 5.2z'/%3E%3C/svg%3E");
  background-size: 0.68rem 0.68rem;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Benefits ---------- */
.ttc-benefits { padding: 28px 0 34px; }

.ttc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ttc-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.ttc-benefit-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  line-height: 0;
}

.ttc-benefit-icon img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.ttc-benefit strong {
  display: block;
  font-size: 1.23rem;
  font-weight: 670;
  color: #111;
  line-height: 1.25;
}

.ttc-benefit span {
  display: block;
  color: #647078;
  font-size: 1rem;
  margin-top: 4px;
  line-height: 1.3;
}

/* ---------- CTA ---------- */
.ttc-cta { padding: 0 0 28px; }

.ttc-cta .container {
  padding-left: 28px;
  padding-right: 28px;
}

.ttc-cta-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px 32px;
  background: #0a1318;
  color: #fff;
  border-radius: 14px;
  padding: 28px 48px;
}

.ttc-cta-copy {
  min-width: 0;
  flex: 1 1 260px;
}

.ttc-cta-panel h2 {
  font-size: 2.3rem;
  font-weight: 770;
  margin: 0;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ttc-cta-panel p {
  color: #d4dce0;
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  line-height: 1.45;
}

@media (min-width: 1200px) {
  .ttc-cta .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .ttc-cta-panel {
    padding: 32px 176px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .ttc-hero { padding-top: 24px; }
  .ttc-hero-row,
  .ttc-works-card,
  .ttc-site-panel,
  .ttc-bottom-grid,
  .ttc-bottom-split,
  .ttc-bottom-split--dark {
    grid-template-columns: 1fr;
  }

  .ttc-works-copy { padding: 30px 24px; }

  .ttc-pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttc-track-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttc-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttc-inductions-media,
  .ttc-comply-media {
    padding: 0 16px 18px;
  }
}

@media (max-width: 575.98px) {
  .ttc-hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .ttc-works-features {
    grid-template-columns: 1fr;
  }

  .ttc-pain-grid,
  .ttc-track-grid {
    grid-template-columns: 1fr;
  }

  .ttc-site-panel {
    padding: 20px;
  }

  .ttc-cta-panel {
    padding: 22px 20px;
  }

  .ttc-cta-panel h2 {
    font-size: 1.4rem;
  }
}

/* ========== Redesign: intro (post-hero) ========== */
.ttc-r-intro {
  --ttc-r-green: #248636;
  --ttc-r-ink: #0f1728;
  --ttc-r-muted: #516075;
  --ttc-r-soft: #e8f5eb;
  padding: 52px 0 56px;
  background: #fff;
  color: var(--ttc-r-ink);
}

.ttc-r-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 56px;
  align-items: center;
}

.ttc-r-intro-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttc-r-green);
}

.ttc-r-intro-title {
  margin: 0 0 16px;
  max-width: 25ch;
  font-size: 45px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ttc-r-ink);
}

.ttc-r-intro-lead {
  margin: 0;
  max-width: 57ch;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ttc-r-muted);
}

.ttc-r-intro-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  position: relative;
}

.ttc-r-intro-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    #d5e6da 0 4px,
    transparent 4px 8px
  );
}

.ttc-r-intro-steps li {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.ttc-r-intro-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttc-r-soft);
  color: var(--ttc-r-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.ttc-r-intro-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttc-r-soft);
  color: var(--ttc-r-ink);
  font-size: 23px;
  line-height: 1;
}

.ttc-r-intro-step-text {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ttc-r-ink);
}

@media (max-width: 991px) {
  .ttc-r-intro {
    padding: 40px 0 44px;
  }

  .ttc-r-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .ttc-r-intro-title {
    font-size: 28px;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .ttc-r-intro-title {
    font-size: 24px;
  }

  .ttc-r-intro-lead {
    font-size: 15px;
  }

  .ttc-r-intro-steps {
    gap: 22px;
  }

  .ttc-r-intro-step-text {
    font-size: 16px;
  }

  .ttc-r-intro-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

/* ========== Redesign: from requirement to record ========== */
.ttc-r-record {
  --ttc-r-green: #248636;
  --ttc-r-ink: #0f1728;
  --ttc-r-muted: #516075;
  padding: 8px 0 48px;
  background: #fff;
}

.ttc-r-record-panel {
  position: relative;
  overflow: hidden;
  padding: 40px 36px 36px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(36, 134, 54, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 90%, rgba(36, 134, 54, 0.1), transparent 50%),
    linear-gradient(160deg, #10161c 0%, #0a0f14 55%, #12181e 100%);
  color: #fff;
}

.ttc-r-record-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttc-r-green);
}

.ttc-r-record-title {
  margin: 0 0 14px;
  max-width: 50ch;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.ttc-r-record-lead {
  margin: 0 0 28px;
  max-width: 84ch;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
}

.ttc-r-record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ttc-r-record-card {
  min-width: 0;
  padding: 22px 22px 18px;
  background: #fff;
  border-radius: 16px;
  color: var(--ttc-r-ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.ttc-r-record-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8ecf0;
}

.ttc-r-record-card-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0f1728;
  font-size: 20px;
  line-height: 1;
}

.ttc-r-record-card-head h3 {
  margin: 0 0 4px;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ttc-r-ink);
}

.ttc-r-record-card-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--ttc-r-muted);
}

.ttc-r-record-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.ttc-r-record-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 0;
  border-bottom: 1px solid #eef1f4;
}

.ttc-r-record-list li:last-child {
  border-bottom: 0;
}

.ttc-r-record-status {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.ttc-r-record-status--ok {
  background: var(--ttc-r-green);
}

.ttc-r-record-status--warn {
  background: #e0a03a;
  font-size: 13px;
}

.ttc-r-record-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.ttc-r-record-avatar--ok {
  background: var(--ttc-r-green);
}

.ttc-r-record-avatar--warn {
  background: #e0a03a;
}

.ttc-r-record-avatar--action {
  background: #c53b2d;
}

.ttc-r-record-label {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 550;
  color: var(--ttc-r-ink);
}

.ttc-r-record-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  margin: 0;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ttc-r-record-pill--ok {
  background: #e8f6ec;
  color: #1f7a30;
}

.ttc-r-record-pill--warn {
  background: #f8ecd8;
  color: #9a6410;
}

.ttc-r-record-pill--action {
  background: #f8e4e4;
  color: #b42318;
}

@media (max-width: 991px) {
  .ttc-r-record-panel {
    padding: 32px 24px 28px;
  }

  .ttc-r-record-title {
    font-size: 28px;
    max-width: none;
  }

  .ttc-r-record-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ttc-r-record-title {
    font-size: 24px;
  }

  .ttc-r-record-lead {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .ttc-r-record-card {
    padding: 18px 16px 14px;
  }

  .ttc-r-record-label {
    font-size: 14px;
  }

  .ttc-r-record-pill {
    min-width: 0;
    font-size: 11px;
    padding: 4px 8px;
  }
}

/* ========== Redesign: see the training style ========== */
.ttc-r-style {
  --ttc-r-green: #39d353;
  --ttc-r-ink: #f4f7f5;
  --ttc-r-muted: #c5d0c9;
  padding: 8px 0 48px;
  background: #fff;
  color: var(--ttc-r-ink);
}
.ttc-r-style-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #06140f;
  padding: 48px 56px;
}
.ttc-r-style-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/pages/toolbox-talks/construction/redesign/style-section-bg.webp?v=1") center / cover no-repeat;
}
.ttc-r-style-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px 22px;
  align-items: stretch;
  width: 88%;
  max-width: 1480px;
  margin: 0 auto;
}
.ttc-r-style-box {
  min-width: 0;
  border-radius: 16px;
  border: 1px solid rgba(57, 211, 83, 0.35);
  background: rgba(4, 16, 12, 0.55);
  box-shadow: 0 0 0 1px rgba(57, 211, 83, 0.08) inset;
}
.ttc-r-style-box--copy {
  /* padding: 28px 26px 30px; */
  padding: 100px 52px 46px;
}
.ttc-r-style-box--videos {
  display: grid;
  gap: 20px;
  align-content: center;
  padding: 40px 44px;
}
.ttc-r-style-kicker {
  margin: 0 0 17px;
  margin-top: 16px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ttc-r-green);
}
.ttc-r-style-title {
  margin: 0 0 14px;
  max-width: 20ch;
  font-size: 45px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.ttc-r-style-lead {
  margin: 0 0 45px;
  max-width: 48ch;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ttc-r-muted);
}
.ttc-r-style-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 30px;
}
.ttc-r-style-feats li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 21px;
  align-items: start;
  margin: 0;
}
.ttc-r-style-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(57, 211, 83, 0.55);
  color: var(--ttc-r-green);
  font-size: 43px;
  flex-shrink: 0;
  margin-top: 2px;
  margin-left: 10px;
}
.ttc-r-style-feats h3 {
  margin: 0 0 6px;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 650;
  color: #fff;
}
.ttc-r-style-feats p {
  margin: 0;
  font-size: 19px;
  max-width: 500px;
  line-height: 1.5;
  font-weight: 350;
  color: var(--ttc-r-muted);
}
.ttc-r-style-card {
  min-width: 0;
}
.ttc-r-style-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0e171d;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.ttc-r-style-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.ttc-r-style-thumb--playable {
  cursor: pointer;
}
.ttc-r-style-thumb--playable.is-playing {
  cursor: default;
}
.ttc-r-style-thumb--playable.is-playing img {
  visibility: hidden;
}
.ttc-r-style-thumb .ttl-r-action-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.ttc-r-style-thumb .tt-style-play-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}
.ttc-r-style-thumb .tt-style-play-toggle i {
  margin-left: 2px;
}
.ttc-r-style-thumb .tt-style-play-toggle .fa-pause {
  margin-left: 0;
}
.ttc-r-style-thumb .tt-style-play-toggle:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.04);
}
.ttc-r-style-thumb.is-playing .tt-style-play-toggle {
  opacity: 0;
  pointer-events: none;
}
.ttc-r-style-thumb.is-playing:hover .tt-style-play-toggle,
.ttc-r-style-thumb.is-paused .tt-style-play-toggle {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 991px) {
  .ttc-r-style-shell {
    padding: 32px 28px;
  }
  .ttc-r-style-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    max-width: none;
  }
  .ttc-r-style-title {
    max-width: none;
    font-size: 28px;
  }
  .ttc-r-style-box--videos {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ttc-r-style {
    padding: 4px 0 36px;
  }
  .ttc-r-style-shell {
    border-radius: 16px;
    padding: 18px 14px;
  }
  .ttc-r-style-box--copy {
    padding: 22px 16px 24px;
  }
  .ttc-r-style-box--videos {
    padding: 18px;
    gap: 14px;
  }
  .ttc-r-style-title {
    font-size: 24px;
  }
  .ttc-r-style-lead {
    font-size: 15px;
    margin-bottom: 22px;
    max-width: none;
  }
  .ttc-r-style-feats {
    gap: 18px;
  }
  .ttc-r-style-feat-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .ttc-r-style-feats h3 {
    font-size: 16px;
  }
  .ttc-r-style-feats p {
    font-size: 14px;
  }
  .ttc-r-style-thumb .tt-style-play-toggle {
    width: 52px;
    height: 52px;
    font-size: 1rem;
  }
}

/* ========== Redesign: built around recognised guidance ========== */
.ttc-r-guidance {
  --ttc-r-green: #248636;
  --ttc-r-ink: #0f1728;
  --ttc-r-muted: #516075;
  padding: 8px 0 48px;
  background: #fff;
}

.ttc-r-guidance-panel {
  padding: 36px 36px 32px;
  border-radius: 24px;
  background: #f4f7f8;
}

.ttc-r-guidance-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttc-r-green);
}

.ttc-r-guidance-title {
  margin: 0 0 14px;
  max-width: 100%;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ttc-r-ink);
}

.ttc-r-guidance-lead {
  margin: 0 0 26px;
  max-width: 93ch;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ttc-r-muted);
}

.ttc-r-guidance-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
}

.ttc-r-guidance-points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 450;
  color: var(--ttc-r-ink);
}

.ttc-r-guidance-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttc-r-green);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.ttc-r-guidance-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #cfe3f5;
  background: #eef6fc;
}

.ttc-r-guidance-note-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2f6fed;
  font-size: 22px;
  line-height: 1;
  margin-top: 1px;
}

.ttc-r-guidance-note strong {
  display: block;
  margin: 0 0 4px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ttc-r-ink);
}

.ttc-r-guidance-note p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ttc-r-muted);
}

@media (max-width: 991px) {
  .ttc-r-guidance-panel {
    padding: 28px 22px 24px;
  }

  .ttc-r-guidance-title {
    font-size: 28px;
    max-width: none;
  }

  .ttc-r-guidance-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .ttc-r-guidance-title {
    font-size: 24px;
  }

  .ttc-r-guidance-lead {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .ttc-r-guidance-points li {
    font-size: 15px;
  }

  .ttc-r-guidance-note {
    padding: 16px;
  }

  .ttc-r-guidance-note strong {
    font-size: 15px;
  }

  .ttc-r-guidance-note p {
    font-size: 14px;
  }
}

/* ========== Redesign: coverage across site ========== */
.ttc-r-coverage {
  --ttc-r-green: #248636;
  --ttc-r-ink: #0f1728;
  --ttc-r-muted: #516075;
  --ttc-r-soft: #e8f5eb;
  padding: 8px 0 40px;
  background: #fff;
}

.ttc-r-coverage-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttc-r-green);
}

.ttc-r-coverage-title {
  margin: 0 0 12px;
  max-width: 1005;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ttc-r-ink);
}

.ttc-r-coverage-lead {
  margin: 0 0 28px;
  max-width: 100%;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 480;
  color: var(--ttc-r-muted);
}

.ttc-r-coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.ttc-r-coverage-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
  padding: 20px 22px;
  background: #f6f8f9;
  border: 1px solid #e8ecf0;
  border-radius: 14px;
}

.ttc-r-coverage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttc-r-soft);
  color: var(--ttc-r-ink);
  font-size: 27px;
  line-height: 1;
}

.ttc-r-coverage-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ttc-r-ink);
}

.ttc-r-coverage-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ttc-r-muted);
}

.ttc-r-coverage-more {
  margin: 0;
  max-width: 91ch;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ttc-r-muted);
}

@media (max-width: 991px) {
  .ttc-r-coverage-title {
    font-size: 28px;
    max-width: none;
  }

  .ttc-r-coverage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ttc-r-coverage-title {
    font-size: 24px;
  }

  .ttc-r-coverage-lead {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .ttc-r-coverage-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .ttc-r-coverage-card h3 {
    font-size: 16px;
  }

  .ttc-r-coverage-card p,
  .ttc-r-coverage-more {
    font-size: 14px;
  }
}

/* ========== Redesign: deliver the right talk ========== */
.ttc-r-deliver {
  --ttc-r-green: #248636;
  --ttc-r-ink: #0f1728;
  --ttc-r-muted: #516075;
  --ttc-r-soft: #e8f5eb;
  padding: 8px 0 48px;
  background: #fff;
}

.ttc-r-deliver-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 36px 48px;
  align-items: center;
}

.ttc-r-deliver-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttc-r-green);
}

.ttc-r-deliver-title {
  margin: 0 0 28px;
  max-width: 21ch;
  font-size: 45px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ttc-r-ink);
}

.ttc-r-deliver-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.ttc-r-deliver-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 450;
  color: var(--ttc-r-ink);
}

.ttc-r-deliver-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttc-r-soft);
  color: var(--ttc-r-green);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.ttc-r-deliver-card {
  min-width: 0;
  padding: 24px 24px 20px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 40, 0.05);
}

.ttc-r-deliver-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ttc-r-deliver-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttc-r-soft);
  color: var(--ttc-r-ink);
  font-size: 23px;
  line-height: 1;
}

.ttc-r-deliver-card-head h3 {
  margin: 0 0 4px;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ttc-r-ink);
}

.ttc-r-deliver-card-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--ttc-r-muted);
}

.ttc-r-deliver-bars {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.ttc-r-deliver-bar-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--ttc-r-ink);
}

.ttc-r-deliver-bar-meta strong {
  font-weight: 700;
  color: var(--ttc-r-ink);
}

.ttc-r-deliver-track {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #e8ecf0;
  overflow: hidden;
}

.ttc-r-deliver-fill {
  display: block;
  height: 100%;
  width: var(--ttc-progress, 0%);
  border-radius: inherit;
  background: var(--ttc-r-green);
}

.ttc-r-deliver-fill--warn {
  background: #e0a03a;
}

.ttc-r-deliver-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8ecd8;
}

.ttc-r-deliver-alert-icon {
  color: #c47a12;
  font-size: 19px;
  line-height: 1;
}

.ttc-r-deliver-alert p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #7a4f1d;
}

.ttc-r-deliver-alert strong {
  font-weight: 700;
}

@media (max-width: 991px) {
  .ttc-r-deliver-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ttc-r-deliver-title {
    font-size: 28px;
    max-width: none;
    margin-bottom: 22px;
  }
}

@media (max-width: 767px) {
  .ttc-r-deliver-title {
    font-size: 24px;
  }

  .ttc-r-deliver-steps li {
    font-size: 15px;
  }

  .ttc-r-deliver-card {
    padding: 20px 16px 16px;
  }
}

/* ========== Redesign: confirm understanding ========== */
.ttc-r-confirm {
  --ttc-r-green: #248636;
  --ttc-r-ink: #0f1728;
  --ttc-r-muted: #516075;
  --ttc-r-soft: #e8f5eb;
  padding: 48px 0;
  background: #f4f7f8;
}

.ttc-r-confirm-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 28px 40px;
  align-items: start;
  margin-bottom: 22px;
}

.ttc-r-confirm-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttc-r-green);
}

.ttc-r-confirm-title {
  margin: 0 0 14px;
  max-width: 22ch;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ttc-r-ink);
}

.ttc-r-confirm-lead {
  margin: 0;
  max-width: 48ch;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 450;
  color: var(--ttc-r-muted);
}

.ttc-r-confirm-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: start;
}

.ttc-r-confirm-quiz {
  padding: 20px 20px 18px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 40, 0.08);
}

.ttc-r-confirm-quiz-meta {
  margin-bottom: 14px;
}

.ttc-r-confirm-quiz-meta > span:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ttc-r-muted);
}

.ttc-r-confirm-quiz-bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e8ecf0;
  overflow: hidden;
}

.ttc-r-confirm-quiz-bar > span {
  display: block;
  height: 100%;
  width: var(--ttc-progress, 0%);
  border-radius: inherit;
  background: var(--ttc-r-green);
}

.ttc-r-confirm-quiz-q {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ttc-r-ink);
}

.ttc-r-confirm-quiz-opts {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ttc-r-confirm-quiz-opts li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #e4e7ec;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--ttc-r-ink);
  background: #fff;
}

.ttc-r-confirm-quiz-opts li.is-selected {
  border-color: var(--ttc-r-green);
  background: #eef8f0;
  color: var(--ttc-r-green);
}

.ttc-r-confirm-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #c5ccd6;
  display: inline-flex;
  flex-shrink: 0;
}

.ttc-r-confirm-quiz-opts li.is-selected .ttc-r-confirm-radio {
  border-color: var(--ttc-r-green);
  background:
    radial-gradient(circle at center, var(--ttc-r-green) 0 4px, transparent 5px);
}

.ttc-r-confirm-quiz-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  background: var(--ttc-r-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.ttc-r-confirm-pass {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 40, 0.08);
}

.ttc-r-confirm-pass-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--ttc-r-green);
  color: #fff;
  font-size: 20px;
}

.ttc-r-confirm-pass strong {
  display: block;
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ttc-r-ink);
}

.ttc-r-confirm-pass > p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ttc-r-muted);
}

.ttc-r-confirm-pass ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ttc-r-confirm-pass li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--ttc-r-ink);
}

.ttc-r-confirm-pass li span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ttc-r-soft);
  color: var(--ttc-r-green);
  font-size: 20px;
}

.ttc-r-confirm-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #cfe3f5;
  background: #eef6fc;
}

.ttc-r-confirm-note-icon {
  color: #2f6fed;
  font-size: 20px;
  line-height: 1;
  margin-top: 1px;
}

.ttc-r-confirm-note p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ttc-r-ink);
}

@media (max-width: 991px) {
  .ttc-r-confirm {
    padding: 40px 0;
  }

  .ttc-r-confirm-grid {
    grid-template-columns: 1fr;
  }

  .ttc-r-confirm-title {
    font-size: 28px;
    max-width: none;
  }

  .ttc-r-confirm-visual {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .ttc-r-confirm-title {
    font-size: 24px;
  }

  .ttc-r-confirm-lead {
    font-size: 15px;
  }

  .ttc-r-confirm-quiz,
  .ttc-r-confirm-pass {
    padding: 18px 16px;
  }

  .ttc-r-confirm-note p {
    font-size: 14px;
  }
}

/* ========== Redesign: visible workforce records ========== */
.ttc-r-records {
  --ttc-r-green: #248636;
  --ttc-r-ink: #0f1728;
  --ttc-r-muted: #516075;
  --ttc-r-soft: #e8f5eb;
  padding: 48px 0;
  background: #fff;
}

.ttc-r-records-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 28px 36px;
  align-items: start;
  margin-bottom: 36px;
}

.ttc-r-records-kicker {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ttc-r-green);
}

.ttc-r-records-title {
  margin: 0 0 14px;
  max-width: 23ch;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ttc-r-ink);
}

.ttc-r-records-lead {
  margin: 0;
  max-width: 51ch;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ttc-r-muted);
}

.ttc-r-records-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 40, 0.05);
}

.ttc-r-records-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.ttc-r-records-table th,
.ttc-r-records-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 16px;
  line-height: 1.35;
  border-bottom: 1px solid #eef1f4;
}

.ttc-r-records-table th {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: black;
  background: #f7f9fa;
}

.ttc-r-records-table td {
  font-weight: 600;
  color: var(--ttc-r-muted);
}

.ttc-r-records-table tr:last-child td {
  border-bottom: 0;
}

.ttc-r-records-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.ttc-r-records-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ttc-r-records-status--ready {
  color: #1f7a30;
}

.ttc-r-records-status--ready::before {
  background: var(--ttc-r-green);
}

.ttc-r-records-status--due {
  color: #9a6410;
}

.ttc-r-records-status--due::before {
  background: #e0a03a;
}

.ttc-r-records-status--action {
  color: #b42318;
}

.ttc-r-records-status--action::before {
  background: #c53b2d;
}

.ttc-r-records-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 28px 32px;
  align-items: center;
}

.ttc-r-records-summary-title {
  margin: 0 0 22px;
  max-width: 24ch;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ttc-r-ink);
}

.ttc-r-records-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
}

.ttc-r-records-points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 450;
  color: var(--ttc-r-ink);
}

.ttc-r-records-point-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--ttc-r-soft);
  color: var(--ttc-r-ink);
  font-size: 23px;
}

.ttc-r-records-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 28px 26px;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(36, 134, 54, 0.18), transparent 55%),
    linear-gradient(160deg, #12181e 0%, #0a0f14 100%);
  color: #fff;
}

.ttc-r-records-cta-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.ttc-r-records-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ttc-r-records-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--ttc-r-green);
  border: 1px solid var(--ttc-r-green);
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}

.ttc-r-records-btn:hover {
  background: #1d6c2c;
  border-color: #1d6c2c;
  color: #fff !important;
}

.ttc-r-records-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  font-weight: 650;
}

.ttc-r-records-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff !important;
}

@media (max-width: 991px) {
  .ttc-r-records {
    padding: 40px 0;
  }

  .ttc-r-records-top,
  .ttc-r-records-bottom {
    grid-template-columns: 1fr;
  }

  .ttc-r-records-title {
    font-size: 28px;
    max-width: none;
  }

  .ttc-r-records-summary-title {
    font-size: 24px;
    max-width: none;
  }

  .ttc-r-records-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ttc-r-records-points li {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .ttc-r-records-title {
    font-size: 24px;
  }

  .ttc-r-records-lead {
    font-size: 15px;
  }

  .ttc-r-records-summary-title {
    font-size: 22px;
  }

  .ttc-r-records-cta {
    padding: 22px 18px;
  }

  .ttc-r-records-cta-title {
    font-size: 18px;
  }

  .ttc-r-records-actions {
    flex-direction: column;
  }

  .ttc-r-records-btn {
    width: 100%;
  }
}
