﻿/*
 * Th1nk Web Components
 * Use for: th1nk.co.za web pages, Th1nk Online pages — NEW pages only
 * Import alongside: tokens.css
 * DO NOT link this file to any existing page that uses nav-* (unprefixed) class names.
 * All nav HTML must use th1nk-nav-* class names before this file is linked.
 * DO NOT use for slide decks — use deck-components.css instead
 */
/* ============================================================
   â”€â”€ 1. NAVIGATION
   Source: index.html, th1nk-online.html, enneagram.html (all web pages)
   ============================================================ */

/* Fixed top nav shell */
.th1nk-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Inner flex row â€” logo | links | right actions */
.th1nk-nav-inner {
  max-width: var(--max, 1120px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  gap: 1.5rem;
}

/* Logo block: stacked image + sub-label */
.th1nk-nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.th1nk-nav-logo a { text-decoration: none; display: block; }
.th1nk-nav-logo img { width: 120px; height: auto; display: block; }
.th1nk-nav-logo-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
}

/* Centred link list */
.th1nk-nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 0;
  list-style: none;
  align-items: center;
}
.th1nk-nav-links li a {
  color: #7a7a79;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.463), 1.1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.th1nk-nav-links li a:hover { color: var(--ink); background: rgba(0, 0, 0, 0.04); }
.th1nk-nav-links li a.nav-active { color: var(--amber); }

/* Dropdown */
.th1nk-nav-dropdown { position: relative; }
.th1nk-nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #7a7a79;
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.463), 1.1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.th1nk-nav-dropdown-toggle:hover { background: rgba(0, 0, 0, 0.04); }
.th1nk-nav-dropdown-arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: 2px;
}
.th1nk-nav-dropdown.open .th1nk-nav-dropdown-arrow { transform: rotate(180deg); }
.th1nk-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 0.5rem 0;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.th1nk-nav-dropdown.open .th1nk-nav-dropdown-menu { display: block; }
.th1nk-nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #7a7a79;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.th1nk-nav-dropdown-menu a:hover { color: #111; background: rgba(0, 0, 0, 0.03); }

/* Social icon cluster */
.th1nk-nav-social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.th1nk-nav-social a {
  color: #646464;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.th1nk-nav-social a:hover { color: var(--amber); background: rgba(239, 143, 56, 0.08); }
.th1nk-nav-social svg { width: 20px; height: 20px; fill: currentColor; }

/* Nav CTA button */
.th1nk-nav-cta {
  display: inline-block;
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.463), 1.1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  border: 1.5px solid var(--amber);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.th1nk-nav-cta:hover { background: var(--amber); color: #fff; }

/* Burger (mobile) */
.th1nk-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
}
.th1nk-nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.th1nk-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.th1nk-nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.th1nk-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .th1nk-nav-toggle { display: flex; }
  .th1nk-nav-social { display: none; }
  .th1nk-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px; left: 0; right: 0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    justify-content: flex-start;
    flex: unset;
  }
  .th1nk-nav-links.open { display: flex; }
  .th1nk-nav-links li a { padding: 0.65rem 0.5rem; border-radius: 4px; font-size: 15px; }
}

/* Enneagram sub-nav strip
   Source: enneagram.html */
.th1nk-subnav {
  width: 100%;
  background: #F0F2F5;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.th1nk-subnav-inner {
  max-width: var(--max, 1120px);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 44px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.th1nk-subnav-inner::-webkit-scrollbar { display: none; }
.th1nk-subnav a {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a7a79;
  text-decoration: none;
  padding: 0 10px;
  white-space: nowrap;
  height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.th1nk-subnav a:hover { color: var(--ink); }
.th1nk-subnav a.active { color: var(--amber); border-bottom: 2px solid var(--amber); }
.th1nk-subnav-sep {
  width: 1px; height: 16px;
  background: #c8cdd6;
  margin: 0 4px;
  flex-shrink: 0;
  align-self: center;
}


/* ============================================================
   â”€â”€ 2. HERO â€” Web page (photo background)
   Source: index.html, th1nk-online.html
   ============================================================ */

.th1nk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.th1nk-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
}
.th1nk-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(10, 18, 30, 0.82) 0%,
    rgba(26, 37, 53, 0.75) 50%,
    rgba(10, 18, 30, 0.68) 100%
  );
}
.th1nk-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 10rem 2rem 4rem;
}
.th1nk-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.th1nk-hero h1 strong { font-weight: 700; color: var(--teal); }
.th1nk-hero-lead {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
/* Scroll indicator line â€” decorative, 12px intentional */
.th1nk-hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.th1nk-hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: rgba(255, 255, 255, 0.25);
  animation: th1nkScrollPulse 2s ease-in-out infinite;
}
@keyframes th1nkScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.7; transform: scaleY(1.3); }
}

/* Variant: dark gradient hero (no photo), used on pricing, enneagram
   Source: pricing.html, enneagram.html */
.th1nk-hero.dark-grad {
  min-height: auto;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(150deg, #070d18 0%, #1a2535 55%, #1a2038 100%);
}
.th1nk-hero.dark-grad::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(239, 143, 56, 0.08) 0%, transparent 55%);
  pointer-events: none;
}


/* ============================================================
   â”€â”€ 3. EYEBROW LABEL
   Source: index.html, th1nk-online.html (web); HPT deck (slide)
   Variants: .on-dark, .teal, .green, .gold
   ============================================================ */

/* Web variant â€” pill style */
.th1nk-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1.25rem;
  background: rgba(239, 143, 56, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(239, 143, 56, 0.2);
}
/* On dark sections, increase contrast */
.th1nk-eyebrow.on-dark {
  background: rgba(239, 143, 56, 0.18);
  border-color: rgba(239, 143, 56, 0.35);
}

/* Slide variant â€” no pill, larger, Montserrat
   Source: HPT deck, Skills Swap deck, Hidden Wiring deck */
.th1nk-eyebrow-slide {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.th1nk-eyebrow-slide.teal  { color: var(--teal); }
.th1nk-eyebrow-slide.green { color: var(--green); }
.th1nk-eyebrow-slide.gold  { color: var(--gold); }


/* ============================================================
   â”€â”€ 4. SECTION HEADER BLOCK
   Source: index.html, th1nk-online.html
   ============================================================ */

.th1nk-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.th1nk-section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.th1nk-section-header .th1nk-section-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
/* On dark section backgrounds */
.bg-dark .th1nk-section-header h2 { color: #fff; }
.bg-dark .th1nk-section-lead { color: rgba(255, 255, 255, 0.75); }


/* ============================================================
   â”€â”€ 5. BUTTONS
   Source: index.html, th1nk-online.html
   Variants: .btn-primary, .btn-ghost, .btn-outline, .btn-green
   ============================================================ */

.th1nk-btn {
  display: inline-block;
  padding: 0.9rem 1.85rem;
  border-radius: var(--r, 12px);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.th1nk-btn.primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.th1nk-btn.primary:hover {
  background: #d97e2a;
  border-color: #d97e2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 143, 56, 0.4);
}
.th1nk-btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.th1nk-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}
.th1nk-btn.outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  transition: all 0.25s;
}
.th1nk-btn.outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(239, 143, 56, 0.08);
}
.th1nk-btn.green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.th1nk-btn.green:hover {
  background: #45a85a;
  border-color: #45a85a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(87, 194, 109, 0.4);
}

/* CTA row â€” centred button cluster */
.th1nk-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .th1nk-cta-row { flex-direction: column; align-items: center; }
  .th1nk-cta-row .th1nk-btn { width: 100%; max-width: 320px; text-align: center; }
}


/* ============================================================
   â”€â”€ 6. CTA BOX (dark navy with glow)
   Source: index.html, th1nk-online.html
   ============================================================ */

.th1nk-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-alt, #2D2D2D) 100%);
  border-radius: var(--r-lg, 20px);
  padding: 4rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.th1nk-cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(89, 192, 217, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.th1nk-cta-box h2 { color: #fff; margin-bottom: 0.75rem; }
.th1nk-cta-box p  { color: rgba(255, 255, 255, 0.8); font-size: 1.0625rem; margin-bottom: 2rem; }

@media (max-width: 600px) {
  .th1nk-cta-box { padding: 2.5rem 1.5rem; }
}


/* ============================================================
   â”€â”€ 7. PILLAR CARDS (People / Process / Technology)
   Source: index.html
   ============================================================ */

.th1nk-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.th1nk-pillar-card {
  background: #E8ECF2;
  border: 1px solid #D4D9E3;
  border-radius: var(--r-lg, 20px);
  text-align: center;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.06));
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.th1nk-pillar-card:hover {
  box-shadow: var(--shadow, 0 4px 16px rgba(0,0,0,0.07));
  transform: translateY(-3px);
}

/* Coloured top stripe â€” 4px, applied via modifier */
.th1nk-pillar-card-header {
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
}
.th1nk-pillar-card-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.th1nk-pillar-card.people  .th1nk-pillar-card-header::before { background: linear-gradient(90deg, var(--teal), var(--navy)); }
.th1nk-pillar-card.process .th1nk-pillar-card-header::before { background: linear-gradient(90deg, var(--amber), var(--gold)); }
.th1nk-pillar-card.tech    .th1nk-pillar-card-header::before { background: linear-gradient(90deg, var(--green), var(--teal)); }

.th1nk-pillar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 1.25rem;
}
.th1nk-pillar-card.people  .th1nk-pillar-icon { background: rgba(89, 192, 217, 0.15); color: var(--teal); }
.th1nk-pillar-card.process .th1nk-pillar-icon { background: rgba(239, 143, 56, 0.15); color: var(--amber); }
.th1nk-pillar-card.tech    .th1nk-pillar-icon { background: rgba(87, 194, 109, 0.15); color: var(--green); }

.th1nk-pillar-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.5rem; }
.th1nk-pillar-card .pillar-subtitle {
  font-size: 0.875rem;
  color: var(--amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.th1nk-pillar-card-body { padding: 0 1.75rem 2rem; flex: 1; }
.th1nk-pillar-card p { font-size: 0.9375rem; color: var(--charcoal); line-height: 1.7; }


/* ============================================================
   â”€â”€ 8. OUTCOME ITEMS (icon + heading + text)
   Source: index.html
   ============================================================ */

.th1nk-outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.th1nk-outcome-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--r-lg, 20px);
  background: var(--white, #fff);
  border: 1px solid var(--border, #E5E7EB);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.06));
  transition: box-shadow 0.25s, transform 0.25s;
}
.th1nk-outcome-item:hover {
  box-shadow: var(--shadow, 0 4px 16px rgba(0,0,0,0.07));
  transform: translateY(-3px);
}
.th1nk-outcome-icon {
  width: 56px; height: 56px;
  background: rgba(239, 143, 56, 0.12);
  border: 1px solid rgba(239, 143, 56, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin: 0 auto 1.1rem;
}
.th1nk-outcome-item h3 { color: var(--navy); font-size: 1.0625rem; margin-bottom: 0.4rem; }
.th1nk-outcome-item p  { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }


/* ============================================================
   â”€â”€ 9. JOURNEY PHASE FLOW
   Source: index.html
   Variants: numbered circles (p-assess / p-online / p-deeper),
             phase labels (l-start / l-grow / l-scale)
   ============================================================ */

.th1nk-journey-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}
.th1nk-journey-phase {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.th1nk-journey-phase::after {
  content: '';
  position: absolute;
  top: 30px; right: -8px;
  width: 16px; height: 2px;
  background: rgba(0, 0, 0, 0.12);
}
.th1nk-journey-phase:last-child::after { display: none; }

.th1nk-phase-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
}
.th1nk-phase-num.assess { background: linear-gradient(135deg, var(--teal), var(--navy)); }
.th1nk-phase-num.online { background: linear-gradient(135deg, var(--amber), var(--gold)); }
.th1nk-phase-num.deeper { background: linear-gradient(135deg, var(--green), var(--teal)); }

.th1nk-journey-phase h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.4rem; }
.th1nk-journey-phase p  { font-size: 0.9375rem; color: var(--muted); line-height: 1.6; }

/* Phase label tag â€” 12px decorative, intentional */
.th1nk-phase-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.th1nk-phase-label.start { background: rgba(89, 192, 217, 0.15); color: #3aa8c4; }
.th1nk-phase-label.grow  { background: rgba(239, 143, 56, 0.15);  color: #c97020; }
.th1nk-phase-label.scale { background: rgba(87, 194, 109, 0.15);  color: #3a9e52; }

@media (max-width: 700px) {
  .th1nk-journey-flow { flex-direction: column; align-items: center; }
  .th1nk-journey-phase::after { display: none; }
  .th1nk-journey-phase { max-width: 100%; margin-bottom: 2rem; }
}


/* ============================================================
   â”€â”€ 10. EVENT PANEL (Reserve Your Seat / QR code block)
   Source: index.html
   ============================================================ */

.th1nk-event-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white, #fff);
  border-radius: var(--r-lg, 20px);
  overflow: hidden;
  box-shadow: var(--shadow, 0 4px 16px rgba(0,0,0,0.07));
  border: 1px solid var(--border, #E5E7EB);
}
.th1nk-event-panel-left {
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-alt, #2D2D2D) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.th1nk-event-panel-left h2 {
  color: #fff;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}
.th1nk-event-panel-left .summary { color: rgba(255, 255, 255, 0.78); font-size: 0.98rem; line-height: 1.65; }

.th1nk-event-detail-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.th1nk-event-detail-list li { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.th1nk-event-detail-list li svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--amber); stroke-width: 2; fill: none; margin-top: 1px; }
.th1nk-event-detail-list li strong { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 2px; font-weight: 600; }

.th1nk-event-panel-right {
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.th1nk-event-panel-right h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0; }
.th1nk-qr-wrap {
  display: inline-block;
  background: var(--white, #fff);
  padding: 0.75rem;
  border-radius: var(--r, 12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border, #E5E7EB);
}
.th1nk-qr-wrap img { display: block; width: 180px; height: 180px; }
.th1nk-qr-label { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

@media (max-width: 768px) {
  .th1nk-event-panel { grid-template-columns: 1fr; }
  .th1nk-event-panel-left,
  .th1nk-event-panel-right { padding: 2.5rem 1.75rem; }
}


/* ============================================================
   â”€â”€ 11. PRICING CARD
   Source: pricing.html
   Variants: .featured (navy border + badge)
   ============================================================ */

.th1nk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.th1nk-pricing-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #E5E7EB);
  border-radius: var(--r-lg, 20px);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.06));
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.th1nk-pricing-card:hover {
  box-shadow: var(--shadow, 0 4px 16px rgba(0,0,0,0.07));
  transform: translateY(-3px);
}
.th1nk-pricing-card.featured {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px var(--navy), var(--shadow-sm);
}
.th1nk-featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.th1nk-pricing-tier {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.th1nk-pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.th1nk-pricing-features {
  text-align: left;
  flex-grow: 1;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.th1nk-pricing-features li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.th1nk-pricing-features li:last-child { border-bottom: none; }
.th1nk-pricing-features li::before {
  content: 'âœ“';
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}


/* ============================================================
   â”€â”€ 12. FOOTER
   Source: index.html, th1nk-online.html (all web pages)
   ============================================================ */

.th1nk-footer {
  background: #0a0f18;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 1.75rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.th1nk-footer a { color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.2s; }
.th1nk-footer a:hover { color: var(--amber); }


/* ============================================================
   -- 13. PAGE LAYOUT UTILITIES
   Source: index.html (+ all Th1nk Online pages)
   web-components.css previously provided no container/section scaffolding.
   ============================================================ */

.th1nk-container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

.th1nk-section { padding: 5.5rem 0; }
@media (max-width: 900px) { .th1nk-section { padding: 4rem 0; } }
@media (max-width: 600px) { .th1nk-section { padding: 3rem 0; } }

.th1nk-bg-panel { background: var(--panel); }
.th1nk-bg-warm  { background: var(--warm); }
.th1nk-bg-white { background: var(--white); }
.th1nk-bg-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-alt) 100%);
  color: #fff;
}
.th1nk-bg-dark h2 { color: #fff; }
.th1nk-bg-dark .th1nk-section-lead { color: rgba(255,255,255,0.75); }

.th1nk-skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--amber); color: #fff;
  padding: 8px 16px; z-index: 9999;
  font-size: 0.875rem; font-weight: 600;
  transition: top 0.2s;
}
.th1nk-skip-link:focus { top: 0; }

/* Two-column text + image layout */
.th1nk-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.th1nk-two-col img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg-web); display: block; }
@media (max-width: 768px) { .th1nk-two-col { grid-template-columns: 1fr; } }

/* Teal button variant (used by promo teal CTA) */
.th1nk-btn.teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.th1nk-btn.teal:hover { background: #45afc6; border-color: #45afc6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(89,192,217,0.4); }


/* ============================================================
   -- 14. HPT TEASER HERO + photo-over-navy section background
   Source: index.html, high-performance-teams.html
   ============================================================ */

.th1nk-hpt-hero {
  position: relative;
  /* Supply the photo inline on the element, e.g.
     style="background:url('../online/images/High%20Performance%20Team.jpg') center 35%/cover no-repeat;"
     (CSS url() here would resolve relative to this stylesheet, not the page). */
  color: #fff; text-align: center;
}
.th1nk-hpt-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,13,24,0.92) 0%, rgba(26,37,53,0.85) 55%, rgba(30,58,80,0.78) 100%);
}
.th1nk-hpt-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 20%, rgba(89,192,217,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.th1nk-hpt-hero-inner {
  position: relative; z-index: 2;
  padding: 5rem 2rem;
  max-width: var(--max); margin: 0 auto;
}
.th1nk-hpt-hero h2 { color: #fff; font-weight: 300; margin-bottom: 1.25rem; font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
.th1nk-hpt-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.82);
  max-width: 640px; margin: 0 auto 2rem; line-height: 1.7;
}
.th1nk-hpt-hero-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.25rem;
  color: rgba(255,255,255,0.85); font-size: 0.95rem;
}
.th1nk-hpt-hero-meta span strong { color: #fff; font-weight: 700; display: block; font-size: 1.4rem; line-height: 1.2; }
.th1nk-hpt-hero-meta span small { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }

.th1nk-bg-hpt {
  position: relative;
  /* Supply the gradient+photo inline on the element, e.g.
     style="background:linear-gradient(135deg,rgba(26,37,53,0.80),rgba(45,45,45,0.72)),url('../online/images/High%20Performance%20Team.jpg') center/cover no-repeat;" */
  color: #fff;
}
.th1nk-bg-hpt h2 { color: #fff; }
.th1nk-bg-hpt .th1nk-eyebrow { background: rgba(239,143,56,0.18); border-color: rgba(239,143,56,0.35); }


/* ============================================================
   -- 15. JOURNEY — FIVE-PHASE VARIANT  (.th1nk-journey-flow.five)
   Source: index.html. Reuses th1nk-journey-phase / -phase-num / -phase-label.
   ============================================================ */

.th1nk-journey-flow.five {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 0;
  align-items: start;
}
.th1nk-journey-flow.five .th1nk-journey-phase { grid-column: span 2; max-width: none; }
.th1nk-journey-flow.five .th1nk-journey-phase:nth-child(4) { grid-column: 2 / span 2; }
.th1nk-journey-flow.five .th1nk-journey-phase:nth-child(5) { grid-column: 4 / span 2; }
.th1nk-journey-flow.five .th1nk-journey-phase::after { display: none; }
@media (max-width: 900px) {
  .th1nk-journey-flow.five { grid-template-columns: 1fr 1fr; }
  .th1nk-journey-flow.five .th1nk-journey-phase,
  .th1nk-journey-flow.five .th1nk-journey-phase:nth-child(4),
  .th1nk-journey-flow.five .th1nk-journey-phase:nth-child(5) { grid-column: auto; }
}
@media (max-width: 600px) { .th1nk-journey-flow.five { grid-template-columns: 1fr; } }


/* ============================================================
   -- 16. JOURNEY — SIX-STEP LINEAR GRID  (distinct from th1nk-journey-flow)
   Source: how-it-works.html, th1nk-online.html
   ============================================================ */

.th1nk-journey-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; position: relative; }
.th1nk-journey-grid::before {
  content: ''; position: absolute;
  top: 30px; left: calc(100% / 12); right: calc(100% / 12);
  height: 2px; background: linear-gradient(90deg, var(--amber), var(--teal));
  opacity: 0.3; z-index: 0;
}
.th1nk-journey-step { text-align: center; position: relative; z-index: 1; }
.th1nk-journey-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #fff; margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(239,143,56,0.35);
}
.th1nk-journey-step h3 { font-size: 0.88rem; color: var(--navy); margin-bottom: 0.4rem; }
.th1nk-journey-step p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .th1nk-journey-grid { grid-template-columns: repeat(3, 1fr); } .th1nk-journey-grid::before { display: none; } }
@media (max-width: 480px) { .th1nk-journey-grid { grid-template-columns: repeat(2, 1fr); } }


/* ============================================================
   -- 17. PILLAR CARD — full-width top image
   Source: index.html, th1nk-online.html
   ============================================================ */

.th1nk-pillar-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }


/* ============================================================
   -- 18. STAT CARDS (big number)   Source: business-track, mastery-track
   ============================================================ */

.th1nk-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.th1nk-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem; text-align: center;
  box-shadow: var(--shadow-sm-web); transition: box-shadow 0.25s, transform 0.25s;
  border-top: 3px solid var(--amber);
}
.th1nk-stat-card:hover { box-shadow: var(--shadow-web); transform: translateY(-3px); }
.th1nk-stat-num { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 0.75rem; }
.th1nk-stat-label { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.4; }
.th1nk-stat-body { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 768px) { .th1nk-stats-grid { grid-template-columns: 1fr; gap: 1.25rem; } }


/* ============================================================
   -- 19. COHORT CARDS   Source: business-track, mastery-track
   Variants: .gold (mastery), optional .th1nk-cohort-detail chip
   ============================================================ */

.th1nk-cohort-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.th1nk-cohort-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  box-shadow: var(--shadow-sm-web); display: flex; flex-direction: column;
  border-left: 4px solid var(--navy);
  transition: box-shadow 0.25s, transform 0.25s; overflow: hidden;
}
.th1nk-cohort-card:hover { box-shadow: var(--shadow-lg-web); transform: translateY(-4px); }
.th1nk-cohort-card-image {
  width: calc(100% + 4rem); height: 200px; object-fit: cover; display: block;
  margin: -2rem -2rem 1.5rem -2rem; border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.th1nk-cohort-tag {
  display: inline-block; align-self: flex-start;
  background: #E8EEF5; color: var(--navy);
  padding: 0.3rem 0.7rem; border-radius: 5px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 1rem;
}
.th1nk-cohort-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.75rem; }
.th1nk-cohort-desc { font-size: 0.9rem; line-height: 1.65; color: var(--muted); margin-bottom: 1.5rem; flex-grow: 1; }
.th1nk-week-list-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 0.5rem; }
.th1nk-week-list { list-style: none; }
.th1nk-week-list li { padding: 0.5rem 0; font-size: 0.875rem; color: var(--ink); border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; }
.th1nk-week-list li:last-child { border-bottom: none; padding-bottom: 0; }
.th1nk-week-bullet { color: var(--teal); font-weight: 700; margin-right: 0.6rem; flex-shrink: 0; font-size: 1rem; line-height: 1.5; }
.th1nk-cohort-card.gold { border-left: 4px solid var(--gold); }
.th1nk-cohort-card.gold .th1nk-cohort-tag { background: var(--warm); color: var(--gold); }
.th1nk-cohort-detail { background: var(--warm); border-radius: var(--r); padding: 0.85rem 1rem; text-align: center; font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 1.25rem; }
@media (max-width: 900px) { .th1nk-cohort-grid { grid-template-columns: 1fr; } }


/* ============================================================
   -- 20. TRACK CARDS   Source: th1nk-online.   Variants: .business .personal
   ============================================================ */

.th1nk-track-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.th1nk-track-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm-web); position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s; display: flex; flex-direction: column;
}
.th1nk-track-card:hover { box-shadow: var(--shadow-lg-web); transform: translateY(-4px); }
.th1nk-track-card-image { width: 100%; height: 220px; object-fit: cover; object-position: center; display: block; }
.th1nk-track-card-body { padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; flex: 1; position: relative; }
.th1nk-track-card-body::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.th1nk-track-card.business .th1nk-track-card-body::before { background: linear-gradient(90deg, var(--amber), var(--gold)); }
.th1nk-track-card.personal .th1nk-track-card-body::before { background: linear-gradient(90deg, var(--teal), var(--navy)); }
.th1nk-track-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 1rem; }
.th1nk-track-card.business .th1nk-track-tag { background: rgba(239,143,56,0.1); color: var(--amber); }
.th1nk-track-card.personal .th1nk-track-tag { background: rgba(89,192,217,0.1); color: var(--teal); }
.th1nk-track-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.th1nk-track-card p { font-size: 0.93rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.th1nk-track-btn { display: inline-block; padding: 0.7rem 1.4rem; border-radius: var(--r); font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.25s ease; border: 2px solid transparent; margin-top: auto; align-self: flex-start; letter-spacing: 0.01em; }
.th1nk-track-card.business .th1nk-track-btn { background: var(--amber); color: #fff; border-color: var(--amber); }
.th1nk-track-card.business .th1nk-track-btn:hover { background: #d97e2a; border-color: #d97e2a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(239,143,56,0.35); }
.th1nk-track-card.personal .th1nk-track-btn { background: var(--teal); color: #fff; border-color: var(--teal); }
.th1nk-track-card.personal .th1nk-track-btn:hover { background: #45afc6; border-color: #45afc6; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(89,192,217,0.35); }


/* ============================================================
   -- 21. DIFFERENTIATOR GRID   Source: business-track, mastery-track, th1nk-online
   Variant: .on-dark (glass cards for dark sections)
   ============================================================ */

.th1nk-diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.th1nk-diff-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.75rem; box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}
.th1nk-diff-item:hover { box-shadow: var(--shadow-web); transform: translateY(-3px); }
.th1nk-diff-icon { width: 56px; height: 56px; flex-shrink: 0; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--amber); }
.th1nk-diff-text h3 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--teal); }
.th1nk-diff-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 640px) { .th1nk-diff-grid { grid-template-columns: 1fr; } }
.th1nk-diff-grid.on-dark { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.th1nk-diff-grid.on-dark .th1nk-diff-item { flex-direction: column; text-align: center; padding: 1.75rem 1.25rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); box-shadow: none; }
.th1nk-diff-grid.on-dark .th1nk-diff-item:hover { background: rgba(255,255,255,0.1); transform: none; }
.th1nk-diff-grid.on-dark .th1nk-diff-icon { width: 56px; height: 56px; background: rgba(239,143,56,0.15); border: 1px solid rgba(239,143,56,0.3); border-radius: 50%; font-size: 20px; margin: 0 auto 1.1rem; }
.th1nk-diff-grid.on-dark .th1nk-diff-text h3,
.th1nk-diff-grid.on-dark .th1nk-diff-item > h3 { color: #fff; }
.th1nk-diff-grid.on-dark .th1nk-diff-item > p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }


/* ============================================================
   -- 22. PERSONA CARDS   Source: th1nk-online, fractionals, workshop, talk
   ============================================================ */

.th1nk-persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.th1nk-persona-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm-web); position: relative; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; display: flex; flex-direction: column; }
.th1nk-persona-card:hover { box-shadow: var(--shadow-lg-web); transform: translateY(-4px); }
.th1nk-persona-card-image { width: 100%; height: 200px; object-fit: cover; object-position: center 25%; display: block; }
.th1nk-persona-card-image.pos-top    { object-position: center top; }
.th1nk-persona-card-image.pos-face   { object-position: center 20%; }
.th1nk-persona-card-image.pos-centre { object-position: center 30%; }
.th1nk-persona-card-image.pos-right  { object-position: 70% center; }
.th1nk-persona-card-body { padding: 1.5rem 1.5rem 1.75rem; position: relative; flex: 1; }
.th1nk-persona-card-body::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--amber)); }
.th1nk-persona-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.th1nk-persona-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }


/* ============================================================
   -- 23. CONCEPT CARDS   Source: innovation, product-lifecycle
   (left-aligned, panel bg, navy heading — distinct from centred outcome-item)
   ============================================================ */

.th1nk-concept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.th1nk-concept-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm-web); transition: box-shadow 0.25s, transform 0.25s; }
.th1nk-concept-card:hover { box-shadow: var(--shadow-web); transform: translateY(-3px); }
.th1nk-concept-icon { font-size: 2rem; margin-bottom: 1rem; }
.th1nk-concept-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.th1nk-concept-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 768px) { .th1nk-concept-grid { grid-template-columns: 1fr; } }


/* ============================================================
   -- 24. MODULE LIST (numbered steps)   Source: HPT, innovation, product-lifecycle, how-it-works
   ============================================================ */

.th1nk-module-list { list-style: none; }
.th1nk-module-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.th1nk-module-item:last-child { border-bottom: none; }
.th1nk-module-num { width: 40px; height: 40px; flex-shrink: 0; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--amber); }
.th1nk-module-text h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.3rem; }
.th1nk-module-text p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }


/* ============================================================
   -- 25. CHARACTERISTIC CARDS (8-up)   Source: high-performance-teams
   ============================================================ */

.th1nk-char-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.th1nk-char-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-sm-web); transition: box-shadow 0.25s, transform 0.25s; text-align: center; }
.th1nk-char-card:hover { box-shadow: var(--shadow-web); transform: translateY(-3px); }
.th1nk-char-num { font-size: 1.75rem; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 0.6rem; }
.th1nk-char-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.th1nk-char-practice { font-weight: 400; color: inherit; }
.th1nk-char-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .th1nk-char-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .th1nk-char-grid { grid-template-columns: 1fr; } }


/* ============================================================
   -- 26. CADENCE CARDS   Source: high-performance-teams
   ============================================================ */

.th1nk-cadence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.th1nk-cadence-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm-web); border-top: 3px solid var(--teal); transition: box-shadow 0.25s, transform 0.25s; }
.th1nk-cadence-card:hover { box-shadow: var(--shadow-lg-web); transform: translateY(-4px); }
.th1nk-cadence-icon { font-size: 2rem; margin-bottom: 1rem; }
.th1nk-cadence-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.75rem; }
.th1nk-cadence-intro { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.th1nk-cadence-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.th1nk-cadence-list li { font-size: 0.875rem; color: var(--ink); line-height: 1.55; display: flex; gap: 0.6rem; align-items: flex-start; }
.th1nk-cadence-list li::before { content: '✦'; color: var(--teal); font-size: 10px; flex-shrink: 0; margin-top: 4px; }
.th1nk-cadence-note { font-size: 0.85rem; font-style: italic; color: var(--muted); border-top: 1px solid var(--border); padding-top: 0.85rem; margin-top: 0.25rem; line-height: 1.6; }
@media (max-width: 768px) { .th1nk-cadence-grid { grid-template-columns: 1fr; } }


/* ============================================================
   -- 27. PHASE GRID (4-up product lifecycle)   Source: product-lifecycle
   (numeral renamed to th1nk-phase-card-num to avoid clash with journey phase-num)
   ============================================================ */

.th1nk-phase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.th1nk-phase-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.5rem; box-shadow: var(--shadow-sm-web); transition: box-shadow 0.25s, transform 0.25s; border-top: 3px solid var(--amber); }
.th1nk-phase-card:hover { box-shadow: var(--shadow-web); transform: translateY(-3px); }
.th1nk-phase-card-num { font-size: 2.5rem; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 0.75rem; opacity: 0.6; }
.th1nk-phase-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.th1nk-phase-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .th1nk-phase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .th1nk-phase-grid { grid-template-columns: 1fr; } }


/* ============================================================
   -- 28. PROGRAMME PHASES (two-column image cards + arrow)   Source: how-it-works, fractionals
   ============================================================ */

.th1nk-prog-phases { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 0; align-items: stretch; }
.th1nk-prog-phase-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.25rem; box-shadow: var(--shadow-sm-web); display: flex; flex-direction: column; overflow: hidden; }
.th1nk-prog-phase-image { display: block; width: calc(100% + 4.5rem); height: 220px; object-fit: cover; object-position: center center; margin: -2.25rem -2.25rem 1.75rem -2.25rem; }
.th1nk-prog-phase-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.85rem; }
.th1nk-prog-phase-card h3 { color: var(--teal); font-size: 1.15rem; margin-bottom: 0.75rem; }
.th1nk-prog-phase-card > p { font-size: 0.93rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 1rem; }
.th1nk-prog-assess-heading { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.75rem; margin-top: auto; padding-top: 1.25rem; }
.th1nk-prog-assess-list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.25rem; }
.th1nk-prog-assess-item { display: flex; align-items: flex-start; gap: 0.85rem; text-align: left; background: var(--panel); border-radius: var(--r); padding: 1.35rem 1.1rem; }
.th1nk-prog-assess-icon { font-size: 20px; line-height: 1; flex-shrink: 0; margin-top: 0.1rem; }
.th1nk-prog-assess-item h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--teal); margin-bottom: 0.2rem; }
.th1nk-prog-assess-item p { font-size: 0.82rem; color: var(--charcoal); line-height: 1.55; margin-bottom: 0; flex-grow: 0; }
.th1nk-prog-phase-meta { font-size: 12px; color: var(--muted); font-weight: 600; border-top: 1px solid var(--border); padding-top: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.th1nk-prog-phase-meta::before { content: '◷'; font-size: 14px; }
.th1nk-prog-phase-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem; font-size: 13px; font-weight: 700; color: var(--teal); text-decoration: none; transition: gap 0.2s, color 0.2s; }
.th1nk-prog-phase-link:hover { color: var(--amber); gap: 0.7rem; }
.th1nk-prog-phase-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.th1nk-prog-phase-arrow { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--amber); padding: 0 0.5rem; }
@media (max-width: 768px) { .th1nk-prog-phases { grid-template-columns: 1fr; } .th1nk-prog-phase-arrow { display: none; } }


/* ============================================================
   -- 29. FIVE-STAGES SET   Source: five-stages
   stages-flow overview, per-stage section badge (.v1-.v5), criteria grid,
   side-card callout, marker list.
   ============================================================ */

.th1nk-stages-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; position: relative; }
.th1nk-stages-flow::before {
  content: ''; position: absolute; top: 32px; left: calc(100% / 10); right: calc(100% / 10);
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--amber), var(--gold), var(--green), var(--purple)); opacity: 0.35; z-index: 0;
}
.th1nk-stage-tile { position: relative; z-index: 1; text-align: center; padding: 0 0.5rem; text-decoration: none; color: inherit; }
.th1nk-stage-num { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 auto 1rem; box-shadow: 0 6px 16px rgba(0,0,0,0.10); }
.th1nk-stage-tile.s1 .th1nk-stage-num { background: linear-gradient(135deg, var(--teal), var(--navy)); }
.th1nk-stage-tile.s2 .th1nk-stage-num { background: linear-gradient(135deg, var(--amber), var(--gold)); }
.th1nk-stage-tile.s3 .th1nk-stage-num { background: linear-gradient(135deg, var(--gold), var(--amber)); }
.th1nk-stage-tile.s4 .th1nk-stage-num { background: linear-gradient(135deg, var(--green), var(--teal)); }
.th1nk-stage-tile.s5 .th1nk-stage-num { background: linear-gradient(135deg, var(--purple), var(--rose)); }
.th1nk-stage-tile h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem; }
.th1nk-stage-tile p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.th1nk-stage-tile:hover h3 { color: var(--amber); }
@media (max-width: 900px) { .th1nk-stages-flow { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } .th1nk-stages-flow::before { display: none; } }
@media (max-width: 480px) { .th1nk-stages-flow { grid-template-columns: 1fr; } }

.th1nk-stage-section { scroll-margin-top: 110px; }
.th1nk-stage-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; }
.th1nk-stage-badge { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.th1nk-stage-section.v1 .th1nk-stage-badge { background: linear-gradient(135deg, var(--teal), var(--navy)); }
.th1nk-stage-section.v2 .th1nk-stage-badge { background: linear-gradient(135deg, var(--amber), var(--gold)); }
.th1nk-stage-section.v3 .th1nk-stage-badge { background: linear-gradient(135deg, var(--gold), var(--amber)); }
.th1nk-stage-section.v4 .th1nk-stage-badge { background: linear-gradient(135deg, var(--green), var(--teal)); }
.th1nk-stage-section.v5 .th1nk-stage-badge { background: linear-gradient(135deg, var(--purple), var(--rose)); }
.th1nk-stage-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.3rem; }
.th1nk-stage-section h2 { margin-bottom: 0; }
.th1nk-stage-lead { font-size: 1.1rem; color: var(--charcoal); max-width: 760px; margin-bottom: 2.25rem; line-height: 1.7; }
.th1nk-stage-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.th1nk-stage-body p + p { margin-top: 1rem; }
@media (max-width: 900px) { .th1nk-stage-body { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 600px) { .th1nk-stage-header { flex-direction: column; align-items: flex-start; } }

.th1nk-criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.th1nk-criteria-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem 1.25rem; box-shadow: var(--shadow-sm-web); transition: box-shadow 0.25s, transform 0.25s; }
.th1nk-criteria-item:hover { box-shadow: var(--shadow-web); transform: translateY(-2px); }
.th1nk-criteria-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; letter-spacing: 0.01em; }
.th1nk-criteria-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.th1nk-side-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-sm-web); }
.th1nk-side-card h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--amber); margin-bottom: 0.6rem; }
.th1nk-side-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; }
.th1nk-side-card p { font-size: 0.95rem; color: var(--charcoal); line-height: 1.65; }
.th1nk-side-card .th1nk-btn { margin-top: 1.25rem; }

.th1nk-marker-list { list-style: none; padding: 0; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.85rem; }
.th1nk-marker-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.98rem; color: var(--charcoal); line-height: 1.65; }
.th1nk-marker-list li::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); margin-top: 0.55rem; }
.th1nk-stage-section.v1 .th1nk-marker-list li::before { background: var(--teal); }
.th1nk-stage-section.v2 .th1nk-marker-list li::before { background: var(--amber); }
.th1nk-stage-section.v3 .th1nk-marker-list li::before { background: var(--gold); }
.th1nk-stage-section.v4 .th1nk-marker-list li::before { background: var(--green); }
.th1nk-stage-section.v5 .th1nk-marker-list li::before { background: var(--purple); }
.th1nk-marker-list li strong { color: var(--navy); font-weight: 700; }


/* ============================================================
   -- 30. MATURITY TRACK + LIFECYCLE FLOW + CALLOUT  Source: high-performance-teams
   (place maturity/lifecycle inside a th1nk-bg-dark section)
   ============================================================ */

.th1nk-maturity-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.th1nk-maturity-stage { padding: 2rem 1.5rem; position: relative; }
.th1nk-maturity-stage::after { content: ''; position: absolute; right: 0; top: 2rem; bottom: 2rem; width: 1px; background: rgba(255,255,255,0.1); }
.th1nk-maturity-stage:last-child::after { display: none; }
.th1nk-stage-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 0.35rem; }
.th1nk-stage-name { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.th1nk-stage-name.crawl { color: #E07070; }
.th1nk-stage-name.walk { color: #F4C56A; }
.th1nk-stage-name.run { color: #68D39A; }
.th1nk-stage-name.fly { color: var(--teal); }
.th1nk-stage-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
@media (max-width: 768px) { .th1nk-maturity-track { grid-template-columns: repeat(2, 1fr); } .th1nk-maturity-stage::after { display: none; } }
@media (max-width: 480px) { .th1nk-maturity-track { grid-template-columns: 1fr; } }

.th1nk-callout-box { background: linear-gradient(135deg, rgba(89,192,217,0.08) 0%, rgba(26,37,53,0.04) 100%); border: 1px solid rgba(89,192,217,0.2); border-radius: var(--r-lg); padding: 2.5rem; margin: 2rem 0; }
.th1nk-callout-box p { font-size: 1.05rem; font-weight: 500; color: var(--navy); line-height: 1.7; }
.th1nk-callout-box p strong { color: var(--teal); }


/* ============================================================
   -- 31. EVENT META (hero stat/pricing callout)  Source: fractionals, workshop, talk
   Variant: .th1nk-event-meta-priced (stacked, strikethrough price)
   ============================================================ */

.th1nk-event-meta { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin: 0 auto 2.5rem; padding: 1.25rem 1.75rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r); backdrop-filter: blur(6px); max-width: 720px; }
.th1nk-event-meta-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.th1nk-event-meta-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }
.th1nk-event-meta-value { font-size: 0.95rem; font-weight: 600; color: #fff; letter-spacing: 0.01em; }
.th1nk-event-meta-value strong { color: var(--amber); font-weight: 700; }
.th1nk-event-meta.th1nk-event-meta-priced { flex-direction: column; gap: 0.75rem; text-align: center; }
.th1nk-event-meta-heading { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }
.th1nk-event-meta-price-row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.th1nk-event-meta-price-was { font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,0.55); text-decoration: line-through; }
.th1nk-event-meta-price-now { font-size: 1.3rem; font-weight: 800; color: var(--amber); }
.th1nk-event-meta-vdiv { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
@media (max-width: 600px) { .th1nk-event-meta { gap: 1.25rem; padding: 1rem 1.25rem; } }


/* ============================================================
   -- 32. STAT CALLOUT (two stats + quote)  Source: fractionals, workshop, talk
   ============================================================ */

.th1nk-stat-callout { background: linear-gradient(135deg, var(--navy) 0%, var(--dark-alt) 100%); border-radius: var(--r-lg); padding: 3.5rem 2.5rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.th1nk-stat-callout::before { content: ''; position: absolute; top: -80px; left: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(239,143,56,0.12) 0%, transparent 70%); pointer-events: none; }
.th1nk-stat-callout::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(89,192,217,0.1) 0%, transparent 70%); pointer-events: none; }
.th1nk-stat-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2.5rem; align-items: center; max-width: 720px; margin: 0 auto; position: relative; }
.th1nk-stat-block { text-align: center; }
.th1nk-stat-number { font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--amber); margin-bottom: 0.5rem; }
.th1nk-stat-block.alt .th1nk-stat-number { color: var(--teal); }
.th1nk-stat-text { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.th1nk-stat-text strong { color: #fff; font-weight: 600; }
.th1nk-stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.15); }
.th1nk-stat-quote { margin-top: 2.5rem; font-size: 1rem; color: rgba(255,255,255,0.7); font-style: italic; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; position: relative; }
.th1nk-stat-quote-attr { display: block; margin-top: 0.75rem; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-style: normal; }
@media (max-width: 600px) { .th1nk-stat-grid { grid-template-columns: 1fr; gap: 1.5rem; } .th1nk-stat-divider { width: 60px; height: 1px; margin: 0 auto; } }


/* ============================================================
   -- 33. PROMO / CROSS-SELL BLOCK   Source: fractionals, workshop, talk
   Variants: .navy .teal .reverse .bridge
   ============================================================ */

.th1nk-promo-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg-web); position: relative; }
.th1nk-promo-block::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; pointer-events: none; z-index: 1; }
.th1nk-promo-block.navy { background: linear-gradient(135deg, var(--navy) 0%, var(--dark-alt) 100%); }
.th1nk-promo-block.navy::before { background: radial-gradient(circle, rgba(239,143,56,0.12) 0%, transparent 70%); }
.th1nk-promo-block.teal { background: linear-gradient(135deg, #0f2230 0%, #1a3a4a 100%); }
.th1nk-promo-block.teal::before { background: radial-gradient(circle, rgba(89,192,217,0.18) 0%, transparent 70%); }
.th1nk-promo-content { padding: 3.25rem 3rem; color: #fff; display: flex; flex-direction: column; gap: 1.1rem; justify-content: center; position: relative; z-index: 2; }
.th1nk-promo-content .th1nk-eyebrow { align-self: flex-start; margin-bottom: 0; background: rgba(239,143,56,0.18); border-color: rgba(239,143,56,0.35); }
.th1nk-promo-block.teal .th1nk-promo-content .th1nk-eyebrow { color: var(--teal); background: rgba(89,192,217,0.18); border-color: rgba(89,192,217,0.35); }
.th1nk-promo-content h2 { color: #fff; margin-bottom: 0; }
.th1nk-promo-content p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.7; margin-bottom: 0; }
.th1nk-promo-content .th1nk-btn { align-self: flex-start; margin-top: 0.75rem; }
.th1nk-promo-image { position: relative; min-height: 340px; overflow: hidden; }
.th1nk-promo-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.th1nk-promo-block.teal .th1nk-promo-image img { object-position: center 35%; }
.th1nk-promo-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,37,53,0.45) 0%, rgba(26,37,53,0) 30%); pointer-events: none; }
.th1nk-promo-block.teal .th1nk-promo-image::after { background: linear-gradient(90deg, rgba(15,34,48,0.45) 0%, rgba(15,34,48,0) 30%); }
.th1nk-promo-block.reverse .th1nk-promo-image { order: -1; }
@media (max-width: 768px) { .th1nk-promo-block { grid-template-columns: 1fr; } .th1nk-promo-image { min-height: 220px; order: -1; } .th1nk-promo-content { padding: 2.25rem 1.75rem; } .th1nk-promo-content .th1nk-btn { align-self: stretch; text-align: center; } }
/* Bridge modifier — light card, prose content (workshop "from the talk to the workshop") */
.th1nk-promo-block.bridge { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-web); }
.th1nk-promo-block.bridge::before { display: none; content: none; }
.th1nk-promo-block.bridge .th1nk-promo-content { color: var(--charcoal); }
.th1nk-promo-block.bridge .th1nk-promo-content .th1nk-eyebrow { align-self: flex-start; margin-bottom: 0.5rem; color: var(--amber); background: rgba(239,143,56,0.08); border-color: rgba(239,143,56,0.2); }
.th1nk-promo-block.bridge .th1nk-promo-content h2 { color: var(--navy); }
.th1nk-promo-block.bridge .th1nk-promo-content p { color: var(--charcoal); font-size: 1rem; line-height: 1.7; }
.th1nk-promo-block.bridge .th1nk-promo-content p strong { color: var(--navy); font-weight: 600; }
.th1nk-promo-block.bridge .th1nk-promo-content ul { margin: 0.25rem 0 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; color: var(--charcoal); font-size: 1rem; line-height: 1.7; }
.th1nk-promo-block.bridge .th1nk-promo-image { min-height: 360px; }
.th1nk-promo-block.bridge .th1nk-promo-image::after { display: none; content: none; }
@media (max-width: 768px) { .th1nk-promo-block.bridge .th1nk-promo-image { min-height: 240px; } }


/* ============================================================
   -- 34. SPEAKER CARD   Source: th1nk-talk-hidden-wiring
   ============================================================ */

.th1nk-speaker-card { display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; align-items: center; max-width: 880px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.25rem; box-shadow: var(--shadow-sm-web); }
.th1nk-speaker-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center 15%; border-radius: 50%; box-shadow: var(--shadow-web); }
.th1nk-speaker-card .th1nk-eyebrow { color: var(--amber); background: rgba(239,143,56,0.08); border-color: rgba(239,143,56,0.2); margin-bottom: 0.75rem; }
.th1nk-speaker-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 700; }
.th1nk-speaker-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 700px) { .th1nk-speaker-card { grid-template-columns: 1fr; text-align: center; padding: 1.75rem; gap: 1.5rem; } .th1nk-speaker-card img { max-width: 180px; margin: 0 auto; } }


/* ============================================================
   -- 35. TAKEAWAY CHECKLIST   Source: th1nk-talk-hidden-wiring
   ============================================================ */

.th1nk-takeaway-list { max-width: 760px; margin: 2.5rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 2rem; }
.th1nk-takeaway-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.th1nk-takeaway-tick { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: rgba(239,143,56,0.12); color: var(--amber); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; margin-top: 1px; }
.th1nk-takeaway-text { font-size: 0.95rem; color: var(--charcoal); line-height: 1.55; }
@media (max-width: 600px) { .th1nk-takeaway-list { grid-template-columns: 1fr; } }


/* ============================================================
   -- 36. FAQ (Q&A blocks)   Source: pricing
   ============================================================ */

.th1nk-faq-wrap { max-width: 760px; margin: 0 auto; }
.th1nk-faq-item { padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.th1nk-faq-item:first-child { padding-top: 0; }
.th1nk-faq-item:last-child { border-bottom: none; }
.th1nk-faq-item h3 { font-size: 0.97rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 600; }
.th1nk-faq-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }


/* ============================================================
   -- 37. PHASE-1 SINGLE PRICING CARD   Source: pricing
   ============================================================ */

.th1nk-phase1-card { max-width: 640px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.75rem 3rem; box-shadow: var(--shadow-web); text-align: center; }
.th1nk-phase1-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1.25rem; }
.th1nk-phase1-price-row { display: flex; align-items: baseline; justify-content: center; gap: 1rem; margin-bottom: 0.5rem; }
.th1nk-phase1-price-was { font-size: 1.6rem; font-weight: 700; color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(107,114,128,0.6); }
.th1nk-phase1-price-now { font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.th1nk-phase1-badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); background: rgba(239,143,56,0.1); border: 1px solid rgba(239,143,56,0.3); padding: 0.3rem 0.75rem; border-radius: 100px; margin-bottom: 1.5rem; }
.th1nk-phase1-includes { font-size: 0.88rem; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: 0.5rem; }


/* ============================================================
   -- 38. COMPARISON BAND (Delivery vs Innovation)   Source: innovation
   ============================================================ */

.th1nk-comparison-band { background: var(--navy); }
.th1nk-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.th1nk-compare-col { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 2rem; }
.th1nk-compare-col.delivery { border-top: 3px solid var(--teal); }
.th1nk-compare-col.innovation { border-top: 3px solid var(--amber); }
.th1nk-compare-col-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 0.5rem; }
.th1nk-compare-col h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.th1nk-compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.th1nk-compare-list li { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.55; padding-left: 1.2rem; position: relative; }
.th1nk-compare-list li::before { content: '✦'; position: absolute; left: 0; color: var(--teal); font-size: 10px; top: 4px; }
.th1nk-compare-col.innovation .th1nk-compare-list li::before { color: var(--amber); }
@media (max-width: 768px) { .th1nk-comparison { grid-template-columns: 1fr; } }


/* ============================================================
   -- 39. CALENDAR BUTTON   Source: th1nk-talk-hidden-wiring
   ============================================================ */

.th1nk-calendar-btn-wrap { margin-top: 1.25rem; width: 100%; text-align: center; }
.th1nk-calendar-btn-label { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.th1nk-calendar-btn { display: inline-block; padding: 0.65rem 1.5rem; background: rgba(89,192,217,0.15); border: 1px solid rgba(89,192,217,0.4); border-radius: 8px; color: var(--teal); font-size: 0.85rem; font-weight: 600; text-decoration: none; letter-spacing: 0.03em; transition: background 0.2s; }
.th1nk-calendar-btn:hover { background: rgba(89,192,217,0.25); }


/* ============================================================
   -- END OF WEB COMPONENTS
   ============================================================ */