/* ============================================================
   dkh-components.css — Buttons, cards, hero, sections, pricing
   ============================================================ */

/* ── BUTTONS ───────────────────────────────────────────── */
.dkh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--dkh-radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background var(--dkh-duration) var(--dkh-ease),
    color var(--dkh-duration) var(--dkh-ease),
    box-shadow var(--dkh-duration) var(--dkh-ease),
    transform var(--dkh-duration) var(--dkh-ease);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.dkh-btn:hover {
  transform: translateY(-1px);
}

/* Primary */
.dkh-btn--primary {
  background: var(--dkh-accent);
  color: #fff;
  border-color: var(--dkh-accent);
}

.dkh-btn--primary:hover {
  background: var(--dkh-accent-aa-light);
  border-color: var(--dkh-accent-aa-light);
  box-shadow: 0 8px 24px rgba(124,92,252,0.35);
}

/* Outline on dark */
.dkh-btn--outline-dark {
  background: transparent;
  color: var(--dkh-fg-dark-primary);
  border-color: rgba(240,237,248,0.3);
}

.dkh-btn--outline-dark:hover {
  background: rgba(240,237,248,0.08);
  border-color: rgba(240,237,248,0.6);
}

/* Outline on light */
.dkh-btn--outline-light {
  background: transparent;
  color: var(--dkh-fg-light-primary);
  border-color: rgba(14,14,24,0.25);
}

.dkh-btn--outline-light:hover {
  background: rgba(14,14,24,0.05);
  border-color: rgba(14,14,24,0.5);
}

/* Ghost on dark */
.dkh-btn--ghost-dark {
  background: transparent;
  color: var(--dkh-fg-dark-secondary);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.dkh-btn--ghost-dark:hover {
  color: var(--dkh-fg-dark-primary);
}

/* Small variant */
.dkh-btn--sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Large variant */
.dkh-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ── HERO DARK ─────────────────────────────────────────── */
.dkh-hero--dark {
  background: var(--dkh-bg-dark);
  position: relative;
  overflow: hidden;
  padding: calc(64px + 80px) 0 clamp(80px, 10vw, 140px);
}

.dkh-hero--dark__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.dkh-hero--dark__label {
  color: var(--dkh-accent-aa-dark);
}

.dkh-hero--dark__h1 {
  font-size: var(--dkh-display);
  font-weight: 700;
  color: var(--dkh-fg-dark-primary);
  line-height: 1.1;
  margin: 12px 0 20px;
}

.dkh-hero--dark__content {
  /* Left content column in dark hero split layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dkh-hero--dark__subline {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--dkh-fg-dark-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.dkh-hero--dark__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dkh-hero--dark__visual {
  position: relative;
}

.dkh-hero--dark__mockup {
  width: 100%;
  height: auto;
  border-radius: var(--dkh-radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 8px 24px rgba(124,92,252,0.15);
}

/* SVG halo arc decoration */
.dkh-hero--dark__halo-arc {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

/* ── HERO LIGHT (sub-pages) ─────────────────────────────── */
.dkh-hero--light {
  background: var(--dkh-bg-light);
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}

.dkh-hero--light__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.dkh-hero--light__label {
  color: var(--dkh-accent-aa-light);
  margin-bottom: 12px;
}

.dkh-hero--light__h1 {
  font-size: var(--dkh-display);
  color: var(--dkh-fg-light-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}

.dkh-hero--light__subline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--dkh-fg-light-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 36px;
}

.dkh-hero--light__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Hero with split right element */
.dkh-hero--light__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ── SECTION BACKGROUNDS ────────────────────────────────── */
.dkh-section--dark {
  background: var(--dkh-bg-dark);
}

.dkh-section--dark-alt {
  background: var(--dkh-bg-dark-alt);
}

.dkh-section--light {
  background: var(--dkh-bg-light);
}

.dkh-section--white {
  background: var(--dkh-bg-white);
}

.dkh-section--cream {
  background: var(--dkh-bg-cream);
}

/* ── SECTION TYPOGRAPHY (context-aware) ─────────────────── */
.dkh-section--dark h2,
.dkh-section--dark h3,
.dkh-section--dark-alt h2,
.dkh-section--dark-alt h3,
.dkh-hero--dark .dkh-section-title {
  color: var(--dkh-fg-dark-primary);
}

.dkh-section--dark p,
.dkh-section--dark li,
.dkh-section--dark-alt p,
.dkh-section--dark-alt li {
  color: var(--dkh-fg-dark-secondary);
}

.dkh-section--light h2,
.dkh-section--white h2,
.dkh-section--cream h2 {
  color: var(--dkh-fg-light-primary);
}

.dkh-section--light p,
.dkh-section--white p,
.dkh-section--cream p,
.dkh-section--light li,
.dkh-section--white li,
.dkh-section--cream li {
  color: var(--dkh-fg-light-secondary);
}

/* ── SOCIAL PROOF STRIP ─────────────────────────────────── */
.dkh-proof-strip {
  padding: 20px 0;
}

.dkh-proof-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.dkh-proof-strip__label {
  color: var(--dkh-fg-dark-secondary);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-align: center;
}

.dkh-proof-strip__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.dkh-proof-strip__badge {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dkh-fg-dark-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--dkh-radius-sm);
  padding: 6px 14px;
  letter-spacing: 0.02em;
}

/* ── TRANSFORMATION SECTION ─────────────────────────────── */
.dkh-transform__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.dkh-transform__doc,
.dkh-transform__deck {
  background: var(--dkh-bg-white);
  border: 1px solid rgba(14,14,24,0.08);
  border-radius: var(--dkh-radius-md);
  padding: 24px;
  box-shadow: var(--dkh-shadow-sm);
}

.dkh-transform__doc-title,
.dkh-transform__deck-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dkh-fg-light-secondary);
  margin-bottom: 12px;
}

.dkh-transform__doc-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dkh-transform__doc-line {
  height: 10px;
  background: var(--dkh-bg-light);
  border-radius: 4px;
}

.dkh-transform__doc-line:first-child { width: 90%; }
.dkh-transform__doc-line:nth-child(2) { width: 75%; }
.dkh-transform__doc-line:nth-child(3) { width: 85%; }
.dkh-transform__doc-line:nth-child(4) { width: 60%; }
.dkh-transform__doc-line:nth-child(5) { width: 80%; }

.dkh-transform__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.dkh-transform__arrow-icon {
  width: 48px;
  height: 48px;
  background: var(--dkh-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.dkh-transform__arrow-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dkh-accent-aa-light);
  letter-spacing: 0.04em;
}

.dkh-transform__deck-img {
  width: 100%;
  height: auto;
  border-radius: var(--dkh-radius-sm);
}

/* Value callouts row */
.dkh-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dkh-callout {
  padding: 28px;
  background: var(--dkh-bg-white);
  border: 1px solid rgba(14,14,24,0.06);
  border-radius: var(--dkh-radius-md);
  box-shadow: var(--dkh-shadow-sm);
}

.dkh-callout__icon {
  width: 40px;
  height: 40px;
  background: var(--dkh-bg-cream);
  border-radius: var(--dkh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dkh-accent-aa-light);
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.dkh-callout__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
  margin-bottom: 8px;
}

.dkh-callout__text {
  font-size: 0.9rem;
  color: var(--dkh-fg-light-secondary);
  line-height: 1.6;
}

/* ── HOW IT WORKS STEPS ─────────────────────────────────── */
.dkh-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.dkh-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.dkh-step__number {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--dkh-bg-light);
  line-height: 1;
  user-select: none;
  min-width: 80px;
  text-align: right;
}

.dkh-step__body {
  padding-top: 8px;
}

.dkh-step__title {
  font-size: var(--dkh-h3);
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
  margin-bottom: 8px;
}

.dkh-step__desc {
  font-size: 0.9375rem;
  color: var(--dkh-fg-light-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dkh-step__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--dkh-radius-md);
  border: 1px solid rgba(14,14,24,0.08);
  box-shadow: var(--dkh-shadow-md);
  margin-top: 16px;
}

/* ── USE CASE GRID ──────────────────────────────────────── */
.dkh-use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dkh-use-case {
  background: var(--dkh-bg-white);
  border: 1px solid rgba(14,14,24,0.07);
  border-radius: var(--dkh-radius-md);
  padding: 28px;
  transition: box-shadow var(--dkh-duration) var(--dkh-ease), transform var(--dkh-duration) var(--dkh-ease);
}

.dkh-use-case:hover {
  box-shadow: var(--dkh-shadow-md);
  transform: translateY(-2px);
}

.dkh-use-case__icon {
  width: 44px;
  height: 44px;
  background: var(--dkh-bg-cream);
  border-radius: var(--dkh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dkh-accent-aa-light);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.dkh-use-case__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
  margin-bottom: 8px;
}

.dkh-use-case__desc {
  font-size: 0.9rem;
  color: var(--dkh-fg-light-secondary);
  line-height: 1.65;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.dkh-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dkh-testimonial {
  background: var(--dkh-bg-light);
  border-radius: var(--dkh-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dkh-testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dkh-fg-light-primary);
  font-style: italic;
  flex: 1;
}

.dkh-testimonial__quote::before {
  content: '"';
  color: var(--dkh-accent-aa-light);
  font-size: 2rem;
  line-height: 0;
  display: block;
  margin-bottom: 8px;
  font-style: normal;
}

.dkh-testimonial__attribution {
  border-top: 1px solid rgba(14,14,24,0.08);
  padding-top: 16px;
}

.dkh-testimonial__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
}

.dkh-testimonial__role {
  font-size: 0.875rem;
  color: var(--dkh-fg-light-secondary);
  margin-top: 2px;
}

/* ── PRICING CARDS ──────────────────────────────────────── */
.dkh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.dkh-pricing-card {
  background: var(--dkh-bg-white);
  border: 1px solid rgba(14,14,24,0.1);
  border-radius: var(--dkh-radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--dkh-duration) var(--dkh-ease);
}

.dkh-pricing-card:hover {
  box-shadow: var(--dkh-shadow-lg);
}

.dkh-pricing-card--highlight {
  border-color: var(--dkh-accent);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(124,92,252,0.08), var(--dkh-shadow-md);
}

.dkh-pricing-card--highlight-dark {
  background: var(--dkh-bg-dark-alt);
  border-color: rgba(157,127,255,0.4);
}

.dkh-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dkh-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--dkh-radius-pill);
  white-space: nowrap;
}

.dkh-pricing-card__tier {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dkh-pricing-card__light .dkh-pricing-card__tier {
  color: var(--dkh-accent-aa-light);
}

.dkh-pricing-card__dark .dkh-pricing-card__tier,
.dkh-pricing-card--highlight-dark .dkh-pricing-card__tier {
  color: var(--dkh-accent-aa-dark);
}

.dkh-pricing-card--highlight .dkh-pricing-card__tier {
  color: var(--dkh-accent-aa-light);
}

.dkh-pricing-card__tagline {
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.dkh-pricing-card:not(.dkh-pricing-card--highlight-dark) .dkh-pricing-card__tagline {
  color: var(--dkh-fg-light-secondary);
}

.dkh-pricing-card--highlight-dark .dkh-pricing-card__tagline {
  color: var(--dkh-fg-dark-secondary);
}

.dkh-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.dkh-pricing-card__amount {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.dkh-pricing-card:not(.dkh-pricing-card--highlight-dark) .dkh-pricing-card__amount {
  color: var(--dkh-fg-light-primary);
}

.dkh-pricing-card--highlight-dark .dkh-pricing-card__amount {
  color: var(--dkh-fg-dark-primary);
}

.dkh-pricing-card__currency {
  font-size: 1.25rem;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 6px;
}

.dkh-pricing-card:not(.dkh-pricing-card--highlight-dark) .dkh-pricing-card__currency {
  color: var(--dkh-fg-light-secondary);
}

.dkh-pricing-card--highlight-dark .dkh-pricing-card__currency {
  color: var(--dkh-fg-dark-secondary);
}

.dkh-pricing-card__period {
  font-size: 0.875rem;
}

.dkh-pricing-card:not(.dkh-pricing-card--highlight-dark) .dkh-pricing-card__period {
  color: var(--dkh-fg-light-secondary);
}

.dkh-pricing-card--highlight-dark .dkh-pricing-card__period {
  color: var(--dkh-fg-dark-secondary);
}

.dkh-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.dkh-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.dkh-pricing-card:not(.dkh-pricing-card--highlight-dark) .dkh-pricing-card__feature {
  color: var(--dkh-fg-light-secondary);
}

.dkh-pricing-card--highlight-dark .dkh-pricing-card__feature {
  color: var(--dkh-fg-dark-secondary);
}

.dkh-pricing-card__feature i {
  color: var(--dkh-accent-aa-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.dkh-pricing-card--highlight-dark .dkh-pricing-card__feature i {
  color: var(--dkh-accent-aa-dark);
}

.dkh-pricing-card__limit {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--dkh-radius-sm);
  margin-bottom: 20px;
}

.dkh-pricing-card:not(.dkh-pricing-card--highlight-dark) .dkh-pricing-card__limit {
  background: var(--dkh-bg-light);
  color: var(--dkh-fg-light-secondary);
}

.dkh-pricing-card--highlight-dark .dkh-pricing-card__limit {
  background: rgba(255,255,255,0.06);
  color: var(--dkh-fg-dark-secondary);
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.dkh-cta-banner {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dkh-cta-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.dkh-cta-banner__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dkh-fg-dark-primary);
  margin-bottom: 12px;
}

.dkh-cta-banner__sub {
  font-size: 1rem;
  color: var(--dkh-fg-dark-secondary);
  margin-bottom: 32px;
}

.dkh-cta-banner__bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── FEATURE COMPARISON TABLE ───────────────────────────── */
.dkh-feature-table {
  width: 100%;
  border-collapse: collapse;
}

.dkh-feature-table th {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid rgba(14,14,24,0.12);
}

.dkh-feature-table th:first-child {
  width: 40%;
}

.dkh-feature-table th:not(:first-child) {
  text-align: center;
}

.dkh-feature-table td {
  font-size: 0.9rem;
  color: var(--dkh-fg-light-secondary);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(14,14,24,0.06);
}

.dkh-feature-table td:not(:first-child) {
  text-align: center;
}

.dkh-feature-table tr:last-child td {
  border-bottom: none;
}

.dkh-feature-table__check {
  color: var(--dkh-accent-aa-light);
}

.dkh-feature-table__partial {
  color: var(--dkh-accent-warm-aa);
}

.dkh-feature-table__x {
  color: #DC2626;
}

.dkh-feature-table__highlight th {
  color: var(--dkh-accent-aa-light);
  font-weight: 700;
}

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.dkh-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.dkh-faq__item {
  background: var(--dkh-bg-white);
  border: 1px solid rgba(14,14,24,0.08);
  border-radius: var(--dkh-radius-md);
  overflow: hidden;
}

.dkh-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dkh-fg-light-primary);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background var(--dkh-duration) var(--dkh-ease);
}

.dkh-faq__question:hover {
  background: var(--dkh-bg-light);
}

.dkh-faq__question i {
  color: var(--dkh-accent-aa-light);
  flex-shrink: 0;
  transition: transform var(--dkh-duration) var(--dkh-ease);
}

.dkh-faq__item.is-open .dkh-faq__question i {
  transform: rotate(180deg);
}

.dkh-faq__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--dkh-fg-light-secondary);
  line-height: 1.7;
}

.dkh-faq__item.is-open .dkh-faq__answer {
  display: block;
}

/* ── INTEGRATION BADGES ─────────────────────────────────── */
.dkh-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.dkh-integration-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--dkh-bg-white);
  border: 1px solid rgba(14,14,24,0.1);
  border-radius: var(--dkh-radius-md);
  box-shadow: var(--dkh-shadow-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dkh-fg-light-primary);
}

.dkh-integration-badge i {
  font-size: 1.25rem;
  color: var(--dkh-accent-aa-light);
}

/* ── TEMPLATE CARDS ─────────────────────────────────────── */
.dkh-template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dkh-template-card {
  background: var(--dkh-bg-white);
  border: 1px solid rgba(14,14,24,0.08);
  border-radius: var(--dkh-radius-md);
  overflow: hidden;
  transition: box-shadow var(--dkh-duration) var(--dkh-ease), transform var(--dkh-duration) var(--dkh-ease);
  cursor: pointer;
}

.dkh-template-card:hover {
  box-shadow: var(--dkh-shadow-md);
  transform: translateY(-3px);
}

.dkh-template-card__thumb {
  aspect-ratio: 4/3;
  background: var(--dkh-bg-cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dkh-template-card__slide-preview {
  width: 85%;
  height: 85%;
}

.dkh-template-card__body {
  padding: 16px;
}

.dkh-template-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
  margin-bottom: 6px;
}

.dkh-template-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dkh-template-card__slides {
  font-size: 0.8rem;
  color: var(--dkh-fg-light-secondary);
}

.dkh-template-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--dkh-radius-pill);
  background: var(--dkh-bg-cream);
  color: var(--dkh-accent-aa-light);
}

/* Filter tabs */
.dkh-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.dkh-filter-tab {
  padding: 8px 16px;
  border-radius: var(--dkh-radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(14,14,24,0.12);
  background: var(--dkh-bg-white);
  color: var(--dkh-fg-light-secondary);
  cursor: pointer;
  transition: all var(--dkh-duration) var(--dkh-ease);
}

.dkh-filter-tab:hover,
.dkh-filter-tab.is-active {
  background: var(--dkh-accent);
  border-color: var(--dkh-accent);
  color: #fff;
}

/* ── TEAM CARDS ─────────────────────────────────────────── */
.dkh-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dkh-team-card {
  text-align: center;
}

.dkh-team-card__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--dkh-bg-cream);
}

.dkh-team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
  margin-bottom: 4px;
}

.dkh-team-card__title {
  font-size: 0.875rem;
  color: var(--dkh-accent-aa-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.dkh-team-card__bio {
  font-size: 0.875rem;
  color: var(--dkh-fg-light-secondary);
  line-height: 1.6;
}

/* ── VALUES ─────────────────────────────────────────────── */
.dkh-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dkh-value {
  padding: 32px;
  border-left: 3px solid var(--dkh-accent);
}

.dkh-value__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
  margin-bottom: 10px;
}

.dkh-value__desc {
  font-size: 0.9375rem;
  color: var(--dkh-fg-light-secondary);
  line-height: 1.7;
}

/* ── CONTACT FORM ───────────────────────────────────────── */
.dkh-contact-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.dkh-form__group {
  margin-bottom: 20px;
}

.dkh-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dkh-fg-light-primary);
  margin-bottom: 6px;
}

.dkh-form__input,
.dkh-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(14,14,24,0.15);
  border-radius: var(--dkh-radius-sm);
  font-size: 0.9375rem;
  color: var(--dkh-fg-light-primary);
  background: var(--dkh-bg-white);
  transition: border-color var(--dkh-duration) var(--dkh-ease), box-shadow var(--dkh-duration) var(--dkh-ease);
}

.dkh-form__input:focus,
.dkh-form__textarea:focus {
  outline: none;
  border-color: var(--dkh-accent);
  box-shadow: 0 0 0 3px rgba(124,92,252,0.12);
}

.dkh-form__textarea {
  min-height: 160px;
  resize: vertical;
}

.dkh-contact-form {
  /* Contact form wrapper */
}

.dkh-contact-info {
  background: var(--dkh-bg-cream);
  border-radius: var(--dkh-radius-lg);
  padding: 32px;
}

.dkh-contact-info__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dkh-fg-light-primary);
  margin-bottom: 24px;
}

.dkh-contact-info__item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.dkh-contact-info__item i {
  color: var(--dkh-accent-aa-light);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dkh-contact-info__item-content {
  font-size: 0.9375rem;
  color: var(--dkh-fg-light-secondary);
  line-height: 1.6;
}

.dkh-contact-info__item-content a {
  color: var(--dkh-accent-aa-light);
  text-decoration: none;
}

.dkh-contact-info__item-content a:hover {
  text-decoration: underline;
}

/* ── FOUNDING STORY 2-col ───────────────────────────────── */
.dkh-founding-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.dkh-founding-text p {
  font-size: 1rem;
  color: var(--dkh-fg-light-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.dkh-founding-text p:last-child { margin-bottom: 0; }

.dkh-founding-img {
  border-radius: var(--dkh-radius-lg);
  box-shadow: var(--dkh-shadow-lg);
  width: 100%;
  height: auto;
}

/* ── MOBILE RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .dkh-template-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dkh-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .dkh-hero--dark__inner {
    grid-template-columns: 1fr;
  }

  .dkh-hero--dark__visual {
    order: -1;
  }

  .dkh-transform__flow {
    grid-template-columns: 1fr;
  }

  .dkh-callouts {
    grid-template-columns: 1fr;
  }

  .dkh-use-cases {
    grid-template-columns: repeat(2, 1fr);
  }

  .dkh-testimonials {
    grid-template-columns: 1fr;
  }

  .dkh-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .dkh-founding-split,
  .dkh-contact-split,
  .dkh-hero--light__inner--split {
    grid-template-columns: 1fr;
  }

  .dkh-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dkh-template-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dkh-use-cases {
    grid-template-columns: 1fr;
  }

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

  .dkh-step__number {
    font-size: 3rem;
    text-align: left;
  }
}
