/* ===========================
   Branding Playbook · Refined Layout
   =========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --primary-green: #0a9e49;
  --primary-dark: #07381d;
  --accent-yellow: #e5e516;
  --text-primary: #1a1f26;
  --text-secondary: #52606d;
  --text-tertiary: #8a95a1;
  --surface: #ffffff;
  --surface-alt: #f7f9fb;
  --surface-soft: #fafbfc;
  --line-soft: rgba(26, 31, 38, 0.06);
  --line-medium: rgba(26, 31, 38, 0.10);
  --line-strong: rgba(26, 31, 38, 0.15);
  --shadow-sm: 0 2px 8px rgba(15, 24, 34, 0.04), 0 1px 2px rgba(15, 24, 34, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 24, 34, 0.08), 0 2px 4px rgba(15, 24, 34, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 24, 34, 0.12), 0 4px 8px rgba(15, 24, 34, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --spacing: clamp(20px, 4vw, 36px);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: var(--surface);
}

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  position: relative;
}

/* Subtle background texture - branding grid inspired */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  background-image:
    /* Dot pattern - like registration marks */
    radial-gradient(circle at center, rgba(10, 158, 73, 0.18) 1px, transparent 1px),
    /* Fine grid - design system inspired */
    linear-gradient(90deg, rgba(26, 31, 38, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(26, 31, 38, 0.03) 1px, transparent 1px);
  background-size:
    32px 32px,
    96px 96px,
    96px 96px;
  background-position:
    0 0,
    0 0,
    0 0;
  pointer-events: none;
}

/* Corner accent - brand identity markers */
body::after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  z-index: -1;
  opacity: 0.15;
  background:
    radial-gradient(circle at top right, rgba(10, 158, 73, 0.08) 0%, transparent 70%),
    conic-gradient(from 45deg at 100% 0%, transparent 0deg, rgba(229, 229, 22, 0.04) 45deg, transparent 90deg);
  pointer-events: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/* ===========================
   Floating logo
   =========================== */

.floating-logo {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1000;
}

.floating-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-logo img {
  width: 110px;
  height: auto;
}

.floating-logo a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line-medium);
}

/* ===========================
   Hero
   =========================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 16vw, 160px) clamp(32px, 6vw, 64px) clamp(90px, 14vw, 140px);
  overflow: hidden;
  background: var(--surface);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.pattern-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 22s ease-in-out infinite;
}

.pattern-line.line-2 {
  animation-delay: 3s;
}

.pattern-line.line-3 {
  animation-delay: 6s;
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 1200;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -1200;
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 8vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 24px);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 16px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--primary-green);
  border: 1px solid rgba(10, 158, 73, 0.18);
  border-radius: 100px;
  background: rgba(10, 158, 73, 0.04);
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1.0625rem, 2.4vw, 1.1875rem);
  line-height: 1.6;
  max-width: 640px;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  color: var(--text-secondary);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.hero-meta-item i {
  width: 18px;
  height: 18px;
  color: var(--primary-green);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta,
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  background: var(--primary-green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 158, 73, 0.25), 0 2px 4px rgba(10, 158, 73, 0.15);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.hero-cta:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 158, 73, 0.3), 0 4px 8px rgba(10, 158, 73, 0.2);
}

.hero-cta:active,
.cta-button:active {
  transform: translateY(0);
}

.hero-cta i,
.cta-button i {
  width: 18px;
  height: 18px;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 400;
  margin-top: 4px;
}

.hero-secondary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 14px 16px;
  border-radius: 100px;
  background: transparent;
  transition: all 0.2s ease;
}

.hero-secondary:hover,
.cta-secondary:hover {
  color: var(--accent-yellow);
  background: rgba(10, 158, 73, 0.06);
  transform: translateY(-2px);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: stretch;
}

.snapshot-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 28px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 158, 73, 0.12);
  backdrop-filter: blur(10px);
}

.snapshot-card h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
}

.snapshot-list {
  display: grid;
  gap: 14px;
}

.snapshot-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
}

.snapshot-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.snapshot-label {
  font-weight: 600;
  color: var(--text-primary);
}

.snapshot-value {
  color: var(--text-secondary);
  text-align: right;
}

.snapshot-footer {
  background: rgba(10, 158, 73, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: 1px solid rgba(10, 158, 73, 0.14);
}

/* ===========================
   Layout shell
   =========================== */

.playbook-main {
  padding: clamp(70px, 12vw, 120px) clamp(20px, 6vw, 60px) clamp(90px, 14vw, 140px);
  background: linear-gradient(180deg, rgba(244, 247, 249, 0.45) 0%, rgba(248, 250, 251, 0.95) 100%);
}

.playbook-shell {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(0, 3fr);
  gap: clamp(32px, 6vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
}

.section-nav {
  position: relative;
}

.section-nav__toggle {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.section-nav__toggle i {
  width: 18px;
  height: 18px;
}

.section-nav__inner {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 158, 73, 0.12);
  backdrop-filter: blur(10px);
}

.section-nav__heading {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.section-nav__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.section-nav__link i {
  width: 18px;
  height: 18px;
  color: rgba(10, 158, 73, 0.7);
}

.section-nav__link:hover {
  color: var(--primary-green);
  background: rgba(10, 158, 73, 0.08);
}

.section-nav__link.active,
.section-nav__link[aria-current="true"] {
  background: rgba(10, 158, 73, 0.12);
  color: var(--primary-green);
  transform: translateX(4px);
}

.section-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-nav__note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.content-column {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 10vw, 100px);
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.content-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-green);
  font-weight: 600;
}

.content-title {
  margin: 0;
  font-size: clamp(1.875rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

.content-lede {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 8px;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 48px);
  align-items: start;
}

.prose {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 65ch;
}

.prose p {
  margin: 0 0 1.25em 0;
}

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

.detail-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vw, 26px);
}

.detail-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}

.detail-card h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(16, 20, 24, 0.12);
  font-size: 0.95rem;
}

.detail-list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-list dt {
  font-weight: 600;
  color: var(--text-primary);
}

.detail-list dd {
  margin: 0;
  color: var(--text-secondary);
  text-align: right;
}

.pricing-ladder {
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: tier;
}

.pricing-step {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-radius: 14px;
  background: rgba(10, 158, 73, 0.05);
  border: 1px solid rgba(10, 158, 73, 0.1);
  display: grid;
  gap: 4px;
  transition: transform 0.2s ease;
}

.pricing-step::before {
  position: absolute;
  counter-increment: tier;
  content: counter(tier, decimal-leading-zero);
  top: 14px;
  left: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(10, 158, 73, 0.8);
}

.pricing-step.is-past {
  opacity: 0.55;
}

.pricing-step.is-active {
  background: rgba(10, 158, 73, 0.12);
  border-color: rgba(10, 158, 73, 0.3);
  box-shadow: inset 0 0 0 1px rgba(10, 158, 73, 0.12);
}

.step-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.step-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.step-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Compact Pricing */
.detail-card--compact {
  padding: 20px;
}

.pricing-compact {
  display: grid;
  gap: 8px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 14px;
  border-radius: 8px;
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  transition: all 0.2s ease;
  gap: 8px;
}

.pricing-item small {
  flex-basis: 100%;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.pricing-item.is-past {
  opacity: 0.5;
}

.pricing-item.is-active {
  background: rgba(10, 158, 73, 0.08);
  border-color: rgba(10, 158, 73, 0.2);
  box-shadow: 0 0 0 1px rgba(10, 158, 73, 0.08);
}

.pricing-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-item.is-active .pricing-name {
  color: var(--primary-green);
}

.pricing-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-item.is-active .pricing-amount {
  color: var(--primary-green);
  font-size: 1.125rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(10, 158, 73, 0.12), rgba(10, 158, 73, 0.06));
  border: 1px solid rgba(10, 158, 73, 0.2);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-green);
}

.contact-link i {
  width: 18px;
  height: 18px;
}

/* ===========================
   Objectives
   =========================== */

.feature-grid {
  display: grid;
  gap: clamp(18px, 4vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-green);
}

.feature-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===========================
   Audience
   =========================== */

.audience-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(10, 158, 73, 0.12);
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.92rem;
}

.audience-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(16, 20, 24, 0.03);
  border-left: 3px solid rgba(10, 158, 73, 0.3);
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--text-secondary);
}

.audience-note i {
  width: 20px;
  height: 20px;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* ===========================
   Modules timeline
   =========================== */

.module-timeline {
  list-style: none;
  display: grid;
  gap: 16px;
  position: relative;
}

.module-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.module-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.module-index {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(10, 158, 73, 0.8);
  padding-top: 4px;
}

.module-content h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.module-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===========================
   Trainer
   =========================== */

.trainer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 32px);
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 158, 73, 0.16);
  background: linear-gradient(150deg, rgba(10, 158, 73, 0.14), rgba(255, 255, 255, 0.95));
  box-shadow: var(--shadow-md);
  align-items: stretch;
}

.trainer-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--primary-green);
}

.trainer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.trainer-body {
  display: grid;
  gap: 18px;
  color: var(--text-primary);
  align-content: start;
}

.trainer-highlights h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 158, 73, 0.75);
}

.trainer-list {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-left: 18px;
}

.trainer-list li {
  margin: 0;
}

/* ===========================
   Venue
   =========================== */

.venue-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 36px);
  align-items: stretch;
}

.venue-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3vw, 26px);
  display: grid;
  gap: 16px;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 20, 24, 0.08);
  min-height: 320px;
}

.map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* ===========================
   Testimonials
   =========================== */

.testimonial-carousel {
  display: grid;
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(10, 158, 73, 0.14);
  box-shadow: var(--shadow-md);
}

/* Voices from classrooms - trainees section */
#voices .testimonial-carousel {
  background: linear-gradient(135deg, rgba(10, 158, 73, 0.04), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(10, 158, 73, 0.12);
}

/* Voices from boardrooms - industry leaders section */
#voicese .testimonial-carousel {
  background: linear-gradient(135deg, var(--primary-dark), rgba(10, 158, 73, 0.92));
  border: 1px solid rgba(10, 158, 73, 0.3);
  box-shadow: 0 12px 40px rgba(10, 158, 73, 0.2), var(--shadow-md);
}

#voicese .testimonial-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
}

#voicese .author-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#voicese .testimonial-name {
  color: #ffffff;
  font-weight: 700;
}

#voicese .testimonial-position {
  color: rgba(255, 255, 255, 0.85);
}

#voicese .carousel-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#voicese .carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

#voicese .carousel-dot {
  background: rgba(255, 255, 255, 0.25);
}

#voicese .carousel-dot.active {
  background: #ffffff;
  width: 20px;
}

.testimonial-slider {
  position: relative;
  display: grid;
  min-height: 220px;
}

.testimonial-card {
  display: grid;
  gap: 18px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: absolute;
  inset: 0;
  padding: 6px;
  pointer-events: none;
}

.testimonial-card.active {
  position: absolute;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(10, 158, 73, 0.12);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info {
  display: grid;
  gap: 4px;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-position {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

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

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 158, 73, 0.12);
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  background: rgba(10, 158, 73, 0.2);
}

.carousel-dots {
  display: inline-flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 20, 24, 0.12);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--primary-green);
}

/* Trainees section dots */
#voices .carousel-dot {
  background: rgba(10, 158, 73, 0.15);
}

#voices .carousel-dot.active {
  background: var(--primary-green);
}

/* ===========================
   Team
   =========================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 4vw, 22px);
}

.team-member {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(10, 158, 73, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.team-name {
  margin: 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.team-role {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===========================
   CTA block
   =========================== */

.cta-section {
  display: flex;
  justify-content: center;
}

.cta-card {
  background: var(--primary-green);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 40px);
  max-width: 820px;
  text-align: center;
  border: 1px solid rgba(10, 158, 73, 0.22);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 16px;
}

.cta-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  color: #fff;
  letter-spacing: -0.015em;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.92);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cta-secondary i {
  width: 18px;
  height: 18px;
}

/* ===========================
   Footer
   =========================== */

.footer {
  background: #0b1e13;
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(40px, 8vw, 70px) clamp(20px, 6vw, 60px) 36px;
}

.footer-content {
  display: grid;
  gap: clamp(26px, 4vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.footer-section p {
  margin: 0 0 12px;
}

.footer-section a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: #fff;
}

.social-links {
  display: inline-flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  display: inline-flex;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.66);
}

/* ===========================
   Motion reveal
   =========================== */

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-revealed {
  opacity: 1;
  transform: none;
}

/* ===========================
   Responsive adjustments
   =========================== */

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    max-width: 460px;
  }

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

  .playbook-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-nav__toggle {
    display: inline-flex;
  }

  .section-nav__inner {
    position: relative;
    top: auto;
    display: none;
  }

  .section-nav__inner.is-open {
    display: flex;
    margin-top: 16px;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    padding-top: 140px;
  }

  .floating-logo {
    top: 20px;
    left: 20px;
  }

  .hero-meta {
    gap: 12px 18px;
  }

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

  .trainer-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .trainer-avatar {
    max-width: 320px;
    margin: 0 auto;
  }

  .trainer-body {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-secondary {
    align-self: stretch;
    justify-content: center;
  }

  .playbook-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .content-title {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }

  .feature-card,
  .detail-card,
  .module-step,
  .testimonial-carousel,
  .team-member {
    padding: 18px;
  }

  .testimonial-slider {
    min-height: 180px;
  }

  .testimonial-card {
    position: absolute;
    padding: 4px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  #voicese .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-author {
    gap: 12px;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }

  .carousel-controls {
    gap: 12px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    width: 16px;
    height: 16px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.active {
    width: 20px;
  }

  #voicese .carousel-dot.active {
    width: 18px;
  }
}

@media (max-width: 600px) {
  .floating-logo img {
    width: 96px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-nav__toggle {
    font-size: 0.95rem;
  }

  .section-nav__inner {
    padding: 18px;
  }

  .audience-pill-group {
    gap: 8px;
  }

  .audience-pill {
    font-size: 0.85rem;
  }

  .module-step {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    padding: 12px;
    gap: 12px;
  }

  .testimonial-slider {
    min-height: 160px;
  }

  .testimonial-card {
    position: absolute;
    padding: 0;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  #voicese .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-author {
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .testimonial-info {
    flex: 1;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-position {
    font-size: 0.8rem;
  }

  .carousel-controls {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-btn i {
    width: 14px;
    height: 14px;
  }

  .carousel-dots {
    gap: 6px;
    order: -1;
    width: 100%;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .carousel-dot.active {
    width: 16px;
  }

  #voicese .carousel-dot {
    width: 6px;
    height: 6px;
  }

  #voicese .carousel-dot.active {
    width: 14px;
  }

  .team-member {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}
