/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand:        #D97757;
  --brand-dark:   #b85e3e;
  --brand-light:  #fdf0eb;
  --brand-xlight: #fef8f5;
  --text:         #111827;
  --text-2:       #374151;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --bg:           #f9fafb;
  --white:        #ffffff;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.12);
  --transition:   .18s ease;
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HERO ── */
.hero {
  background: #000000;
  color: var(--white);
  padding: 3.5rem 1.5rem 6rem;
  text-align: center;
  position: relative;
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.organizer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.org-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.org-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}
.org-logo-item span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.3;
}
.org-logo-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
}
.pill {
  display: inline-block;
  background: rgba(217,119,87,.25);
  color: #f4a37a;
  border: 1px solid rgba(217,119,87,.4);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #f4a37a, #D97757);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.25rem;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.meta-chip--price {
  background: rgba(217,119,87,.3);
  border-color: rgba(217,119,87,.5);
  color: #fbd5c0;
  font-weight: 700;
}
.meta-chip--scarcity {
  background: rgba(220, 38, 38, .22);
  border-color: rgba(248, 113, 113, .55);
  color: #fecaca;
  font-weight: 700;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(217,119,87,.45);
}
.btn-hero:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,119,87,.5);
}
.hero-note {
  margin-top: 1rem;
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}

/* ── SECTIONS ── */
.section {
  padding: 5rem 1.5rem;
}
.section--alt {
  background: var(--white);
}
.container {
  max-width: 960px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: var(--brand);
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ── WHO IT'S FOR — 3 or 4 cards ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow var(--transition), transform var(--transition);
}
.icon-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.icon-card-icon {
  font-size: 2rem;
  margin-bottom: .9rem;
  display: block;
}
.icon-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.icon-card p {
  font-size: .925rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── OBJECTIVES ── */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--brand-xlight);
  border: 1px solid #f5ddd1;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.obj-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: .05em;
  background: rgba(217,119,87,.12);
  border-radius: 6px;
  padding: .25rem .5rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.objective-item p {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── MODULES ── */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.module-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.module-item:last-child { border-bottom: none; }
.module-item:hover { background: var(--brand-xlight); }
.module-badge {
  flex-shrink: 0;
  background: var(--brand);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 6px;
  margin-top: .25rem;
  white-space: nowrap;
}
.module-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem;
}
.module-body p {
  font-size: .925rem;
  color: var(--text-2);
  line-height: 1.6;
}
.module-body p em { font-style: italic; color: var(--muted); }

/* ── LEARNING PORTAL ── */
.portal-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(135deg, #000 0%, #1a0f00 100%);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.portal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(217,119,87,.18) 0%, transparent 65%);
  pointer-events: none;
}
.portal-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(217,119,87,.2);
  border: 1px solid rgba(217,119,87,.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4a37a;
}
.portal-content {
  flex: 1;
}
.portal-content .section-eyebrow {
  color: #f4a37a;
  margin-bottom: .5rem;
}
.portal-content h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}
.portal-content p {
  font-size: .97rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: .75rem;
}
.portal-content p strong { color: var(--white); }
.portal-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #f4a37a;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(244,163,122,.35);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.portal-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.portal-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(217,119,87,.2);
  border: 2px solid rgba(217,119,87,.45);
  text-align: center;
}
.portal-badge-duration {
  font-size: 2.2rem;
  font-weight: 900;
  color: #f4a37a;
  line-height: 1;
}
.portal-badge-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
}
.price-includes-featured {
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px dashed var(--border);
  font-weight: 700;
  color: var(--brand-dark);
}
.price-includes-featured svg { color: var(--brand); }

/* ── FACILITATOR ── */
.facilitator-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--brand-xlight);
  border: 1px solid #f0d5c8;
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
}
.facilitator-photo {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 3px solid var(--brand);
  box-shadow: 0 4px 16px rgba(217,119,87,.3);
}
.facilitator-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .25rem;
}
.facilitator-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: .9rem;
}
.facilitator-bio {
  font-size: .975rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── EVENT DETAILS + PRICE ── */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.details-info h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.event-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.event-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.detail-icon {
  width: 36px;
  height: 36px;
  background: var(--brand-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.event-detail-list li div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.event-detail-list li strong {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.event-detail-list li span {
  font-size: .975rem;
  color: var(--text);
  line-height: 1.5;
}
.event-detail-list li a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* price box */
.price-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 2rem;
  text-align: center;
}
.price-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: .25rem;
}
.price-per {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.price-includes {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.price-includes li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-2);
}
.price-includes li svg { color: #16a34a; flex-shrink: 0; }
.btn-primary {
  display: block;
  width: 100%;
  padding: .9rem 1.5rem;
  background: var(--brand);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.price-note {
  margin-top: .9rem;
  font-size: .8rem;
  color: var(--muted);
}

/* ── SCARCITY ── */
.scarcity-callout {
  background: linear-gradient(135deg, #fff5f0, #ffe8dd);
  border: 1px solid #f5c4a8;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
  text-align: left;
}
.scarcity-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b85e3e;
  margin-bottom: .5rem;
}
.scarcity-callout p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
.scarcity-callout p strong {
  color: var(--text);
}
.scarcity-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, .6);
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(220, 38, 38, .55); }
  70%  { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}
.scarcity-banner {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(220, 38, 38, .15);
  border: 1px solid rgba(248, 113, 113, .35);
  color: #fecaca;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
}
.scarcity-banner strong {
  color: #fff;
  font-weight: 800;
}

/* ── FORM SECTION ── */
.form-wrapper {
  max-width: 620px;
  margin: 2.5rem auto 0;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
/* ── Form fields ── */
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.field label {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}
.req { color: var(--brand); margin-left: .1em; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(217,119,87,.15);
}
.field input.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.error-msg {
  font-size: .8rem;
  color: #ef4444;
  margin-top: .3rem;
  min-height: 1rem;
}
/* checkbox */
.checkbox-field { margin-top: .25rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-2);
}
.checkbox-label input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.checkmark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  margin-top: .15rem;
  background: var(--white);
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}
.checkbox-label input[type="checkbox"]:checked ~ .checkmark,
.checkbox-label:has(input:checked) .checkmark {
  background: var(--brand);
  border-color: var(--brand);
}
.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after,
.checkbox-label:has(input:checked) .checkmark::after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.checkbox-label input[type="checkbox"]:focus ~ .checkmark {
  box-shadow: 0 0 0 3px rgba(217,119,87,.2);
}
.checkbox-label.invalid .checkmark { border-color: #ef4444; }
.checkbox-label a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
/* honeypot */
.hidden { display: none !important; }
/* submit button */
.btn-submit {
  width: 100%;
  margin-top: .75rem;
  padding: .9rem 1.5rem;
  background: var(--brand);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.btn-submit:hover { background: var(--brand-dark); }
.btn-submit:active { transform: scale(.98); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; }
.btn-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.btn-submit.loading .btn-spinner { display: block; }
.btn-submit.loading .btn-text { opacity: .8; }
@keyframes spin { to { transform: rotate(360deg); } }
/* success */
.success-msg {
  text-align: center;
  padding: 2.5rem 1rem;
}
.success-msg svg { margin-bottom: 1.25rem; }
.success-msg h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; color: #16a34a; }
.success-msg p { color: var(--muted); font-size: 1rem; }

/* ── REFRAME BLOCK ── */
.section--accent {
  background: var(--brand-xlight);
  border-top: 3px solid var(--brand);
  border-bottom: 3px solid #f0d5c8;
}
.reframe-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.reframe-block h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.reframe-block h2 em {
  font-style: normal;
  color: var(--brand);
}
.reframe-block p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.reframe-block p:last-child { margin-bottom: 0; }

/* ── VALUE GRID ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.value-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.value-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
  display: block;
}
.value-item h3 {
  font-size: .975rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--text);
}
.value-item p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── DARK REGISTRATION SECTION ── */
.section--dark {
  background: #000000;
}
.section-eyebrow--light {
  color: rgba(217,119,87,.9);
}
.section-title--light {
  color: var(--white);
}
.section-sub--light {
  color: rgba(255,255,255,.6);
}

/* ── TERMS PAGE ── */
.hero--slim { padding: 2.5rem 1.5rem 3rem; }
.form-section { max-width: 720px; margin: -2rem auto 3rem; padding: 0 1rem; }
.terms-card h3 { font-size: 1.05rem; font-weight: 700; margin: 1.75rem 0 .5rem; color: var(--text); }
.terms-card p { color: var(--text-2); margin-bottom: .5rem; font-size: .95rem; }
.last-updated { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.terms-back { margin-top: 2.5rem; text-align: center; }

/* ── PAST SEMINARS ── */
.seminars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.seminar-photo {
  grid-column: span 2;
  overflow: hidden;
  border-radius: 12px;
  background: var(--border);
}
.seminar-photo--bottom {
  grid-column: span 3;
}
.seminar-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.seminar-photo:hover img {
  transform: scale(1.03);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: start;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.testimonial p {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}
.testimonial cite {
  font-size: .85rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}
.testimonial p::before { content: '\201C'; }
.testimonial p::after  { content: '\201D'; }
.feedback-highlights {
  margin-top: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.feedback-highlight-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  white-space: nowrap;
  padding-top: .1rem;
}
.feedback-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
}
.feedback-highlight-list li {
  font-size: .95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.feedback-highlight-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: .85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--white);
}
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: .75rem;
}
.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}
footer p { color: var(--muted); }
footer a { color: var(--muted); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .objectives-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .price-box { position: static; }
  .facilitator-card { flex-direction: column; }
  .portal-card { flex-direction: column; }
  .portal-badge { width: 72px; height: 72px; }
  .module-item { flex-direction: column; gap: .75rem; padding: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .seminars-grid { grid-template-columns: 1fr 1fr; }
  .seminar-photo, .seminar-photo--bottom { grid-column: span 1; }
  .feedback-highlights { flex-direction: column; gap: 1rem; }
  .feedback-highlight-label { white-space: normal; }
}
@media (max-width: 520px) {
  .form-row.two-col { grid-template-columns: 1fr; }
  .card { padding: 1.5rem; }
  .section { padding: 3.5rem 1rem; }
  .hero { padding: 3rem 1rem 5rem; }
}
