/* =========================
   VD · Showcase Template
   ========================= */

.vd-showcase-page {
  --vd-dark: #0c2931;
  --vd-light: #ededed;
  --vd-mid: #4a5f6a;
  --vd-soft: #b7c5cd;
  --vd-accent: #ff810a;
  --vd-muted: rgba(12, 41, 49, 0.65);
  --vd-field-border: rgba(12, 41, 49, 0.35);
  --vd-field-focus: rgba(255, 129, 10, 0.45);

  --vd-section-bg: #0c2931;
  --vd-section-text: #ededed;

  --vd-h1-size: clamp(30px, 6vw, 64px);
  --vd-h2-size: clamp(1.5rem, 3.4vw, 2.4rem);
  --vd-lead-size: clamp(16px, 2.6vw, 24px);
  --vd-body-size: clamp(1rem, 2.5vw, 1.1rem);
  --vd-eyebrow-size: clamp(12px, 1.2vw, 16px);

  --vd-section-padding: clamp(56px, 9vw, 120px);
  --vd-section-padding-compact: clamp(40px, 6vw, 96px);
  --vd-section-padding-xl: clamp(140px, 20vw, 240px);

  --vd-radius-pill: 9999px;
  --vd-duration-fast: 0.2s;
  --vd-duration: 0.3s;
  --vd-duration-slow: 0.35s;
  --vd-ease: ease;

  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--vd-section-text);
  background: var(--vd-dark);
}

.vd-showcase-page * {
  box-sizing: border-box;
}

/* =========================
   Showcase base
   ========================= */

.vd-showcase-surface {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: var(--vd-section-padding) 16px;
  background: var(--vd-section-bg, var(--vd-dark));
  color: var(--vd-section-text);
}

.vd-showcase-surface::before,
.vd-showcase-surface::after {
  content: none;
}

.vd-showcase-surface > * {
  position: relative;
  z-index: 1;
}

.vd-showcase-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 4vw, 40px);
}

.vd-showcase-hero {
  --vd-section-bg: #0c2931;
  --vd-section-text: #ededed;
}

.vd-showcase-process {
  --vd-section-bg: #4a5f6a;
  --vd-section-text: #ededed;
}

.vd-showcase-sectors {
  --vd-section-bg: #ededed;
  --vd-section-text: #0c2931;
}

.vd-showcase-faq {
  --vd-section-bg: #0c2931;
  --vd-section-text: #ededed;
}

.vd-showcase-hero .vd-showcase-glass {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 0;
  padding: clamp(32px, 6vw, 60px);
  background: transparent;
  border: none;
  box-shadow: none;
}

.vd-showcase-hero .vd-showcase-wrap {
  grid-template-columns: 1fr;
  align-items: center;
}

.vd-showcase-text {
  display: grid;
  gap: 18px;
}

.vd-showcase-eyebrow {
  font-size: var(--vd-eyebrow-size);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--vd-section-text);
  margin: 0;
}

.vd-showcase-title {
  font-size: var(--vd-h1-size);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--vd-section-text);
  text-shadow: none;
}

.vd-showcase-lead {
  font-family: 'Libre Baskerville', serif;
  font-size: var(--vd-lead-size);
  color: var(--vd-section-text);
  line-height: 1.8;
  margin: 0;
}

.vd-showcase-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--vd-radius-pill);
  background: transparent;
  border: 1px solid currentColor;
  color: var(--vd-section-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color var(--vd-duration) var(--vd-ease), border-color var(--vd-duration) var(--vd-ease);
  margin-top: 20px;
}

.vd-showcase-cta-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vd-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--vd-duration-slow) var(--vd-ease);
  z-index: -1;
}

.vd-showcase-cta-main:hover {
  color: var(--vd-dark);
  border-color: var(--vd-accent);
}

.vd-showcase-cta-main:hover::before {
  transform: scaleX(1);
}

.vd-showcase-hero-img {
  width: clamp(220px, 45vw, 420px);
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  animation: vd-showcase-float 8s ease-in-out infinite;
}

@keyframes vd-showcase-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 1024px) {
  .vd-showcase-hero .vd-showcase-wrap {
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(32px, 5vw, 60px);
  }

  .vd-showcase-text {
    text-align: right;
    justify-items: end;
  }

  .vd-showcase-cta-main {
    justify-self: end;
  }
}

@media (max-width: 1023px) {
  .vd-showcase-text {
    text-align: center;
    justify-items: center;
  }

  .vd-showcase-cta-main {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .vd-showcase-hero-img {
    display: none;
  }

  .vd-showcase-cta-main {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    margin-top: 16px;
    padding: 10px 20px;
  }
}

.vd-showcase-process .vd-showcase-title {
  text-align: center;
}

.vd-showcase-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.vd-showcase-process .vd-showcase-card {
  padding: 0;
  display: grid;
  gap: 14px;
  text-align: center;
}

.vd-showcase-head {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 4.6vw, 1.6rem);
  line-height: 1.2;
  color: var(--vd-section-text);
}

.vd-showcase-intro {
  margin: 0 auto;
  max-width: 780px;
  color: var(--vd-section-text);
  opacity: 0.95;
  font-weight: 500;
  line-height: 1.55;
  font-size: clamp(0.98rem, 3.8vw, 1.06rem);
}

.vd-showcase-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(237, 237, 237, 0.35), transparent);
  margin: 6px 0 2px;
}

.vd-showcase-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 6px 0 4px;
}

.vd-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: var(--vd-radius-pill);
  border: 1px solid currentColor;
  background: transparent;
  color: var(--vd-section-text);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: color var(--vd-duration) var(--vd-ease), border-color var(--vd-duration) var(--vd-ease);
}

.vd-showcase-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vd-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--vd-duration-slow) var(--vd-ease);
  z-index: -1;
}

.vd-showcase-cta:hover {
  color: var(--vd-dark);
  border-color: var(--vd-accent);
}

.vd-showcase-cta:hover::before {
  transform: scaleX(1);
}

.vd-showcase-cta:focus-visible {
  outline: 2px solid rgba(255, 129, 10, 0.65);
  outline-offset: 2px;
}

.vd-showcase-sectors {
  padding-top: 0;
  padding-bottom: 0;
}

.vd-showcase-sectors .vd-showcase-title {
  display: block;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-block: clamp(24px, 4vw, 48px);
  text-align: center;
}

.vd-showcase-rail {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
}

.vd-showcase-rail::-webkit-scrollbar {
  display: none;
}

.vd-showcase-sectors .vd-showcase-card {
  flex: 0 0 100vw;
  max-width: 100vw;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--vd-duration-fast) var(--vd-ease), background var(--vd-duration-fast) var(--vd-ease),
    border-color var(--vd-duration-fast) var(--vd-ease);
}

.vd-showcase-media {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  max-height: 360px;
  border-radius: 0;
  overflow: hidden;
}

.vd-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-showcase-card-body {
  padding: 16px 16px 0;
  text-align: center;
}

.vd-showcase-faq-card {
  opacity: 0;
  transform: translateY(24px);
}

.vd-showcase-card-body h3 {
  color: var(--vd-section-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.3rem;
  font-size: clamp(1.05rem, 4.6vw, 1.35rem);
  line-height: 1.25;
}

.vd-showcase-card-body p {
  color: var(--vd-section-text);
  opacity: 1;
  margin: 0;
  font-size: clamp(0.98rem, 3.8vw, 1.06rem);
  line-height: 1.4;
}

.vd-showcase-pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px 0 18px;
}

.vd-showcase-dot {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  margin: 0;
  min-width: 0;
  line-height: 0;
  display: inline-block;
  cursor: pointer;
  transition: background var(--vd-duration-fast) var(--vd-ease), border-color var(--vd-duration-fast) var(--vd-ease),
    transform var(--vd-duration-fast) var(--vd-ease);
}

.vd-showcase-dot[aria-current='true'] {
  background: currentColor;
  border-color: currentColor;
}

.vd-showcase-dot:focus-visible {
  outline: 2px solid rgba(255, 129, 10, 0.65);
  outline-offset: 2px;
}

.vd-showcase-dot:hover {
  transform: scale(1.08);
}

.vd-showcase-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.vd-showcase-cta-under {
  padding: 0 12px 24px;
  display: flex;
  justify-content: center;
}

.vd-showcase-cta-text {
  margin-left: 6px;
}

@media (min-width: 1024px) {
  .vd-showcase-rail {
    padding: 0 0 24px;
  }

  .vd-showcase-sectors .vd-showcase-card {
    min-height: auto;
  }

  .vd-showcase-media {
    aspect-ratio: 16 / 7;
    max-height: 420px;
    border-radius: 0;
  }

  .vd-showcase-cta-under {
    padding: 0 24px 24px;
  }
}

.vd-showcase-faq .vd-showcase-wrap {
  gap: clamp(20px, 4vw, 40px);
}

.vd-showcase-faq-page .vd-showcase-faq-groups {
  display: grid;
  gap: 18px;
}

.vd-showcase-faq-page .vd-showcase-faq-group {
  display: grid;
  gap: 10px;
}

.vd-showcase-faq-page .vd-showcase-group-title {
  margin: 0 0 2px;
  color: var(--vd-section-text);
  opacity: 0.95;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

@media (min-width: 1024px) {
  .vd-showcase-faq .vd-showcase-wrap {
    grid-template-columns: minmax(280px, 360px) 1fr;
    align-items: start;
    column-gap: clamp(28px, 6vw, 64px);
  }

  .vd-showcase-side {
    position: sticky;
    top: 28px;
  }

  .vd-showcase-faq-page .vd-showcase-side {
    top: 0;
    margin-top: 0;
  }
}

.vd-showcase-side .vd-showcase-title {
  margin: 0 0 8px;
  text-align: left;
}

.vd-showcase-side {
  position: relative;
  z-index: 2;
}

.vd-showcase-faq-page .vd-showcase-side {
  margin-top: clamp(16px, 6vw, 32px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding-block: clamp(12px, 4vw, 28px);
}

.vd-showcase-faq-page .vd-showcase-intro {
  margin: 0;
  text-align: center;
  padding-inline: clamp(8px, 2vw, 16px);
  color: var(--vd-section-text);
  opacity: 0.9;
  font-weight: 500;
  line-height: 1.55;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
}

.vd-showcase-faq-page .vd-showcase-intro a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--vd-accent), var(--vd-accent));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size var(--vd-duration) var(--vd-ease);
}

.vd-showcase-faq-page .vd-showcase-intro a:hover {
  background-size: 100% 2px;
}

.vd-showcase-lead a {
  color: var(--vd-section-text);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  transition: border-color var(--vd-duration-fast) var(--vd-ease), opacity var(--vd-duration-fast) var(--vd-ease);
}

.vd-showcase-lead a:hover {
  border-bottom-color: var(--vd-accent);
  opacity: 1;
}

.vd-showcase-stack {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 0;
}

.vd-showcase-stack::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 129, 10, 0.5), rgba(255, 129, 10, 0.12));
  border-radius: 2px;
}

.vd-showcase-faq details.vd-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 18px;
  transition: border-color var(--vd-duration-fast) var(--vd-ease), transform var(--vd-duration-fast) var(--vd-ease);
}

.vd-showcase-faq details.vd-showcase-card:hover {
  transform: translateY(-1px);
}

.vd-showcase-faq details.vd-showcase-card[open] {
  border-color: currentColor;
}

.vd-showcase-ribbon {
  display: none;
}

.vd-showcase-faq-page .vd-showcase-ribbon {
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--vd-light);
  color: var(--vd-dark);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font: 700 0.62rem/1 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

.vd-showcase-faq-page details[open] .vd-showcase-ribbon {
  display: inline-flex;
}

.vd-showcase-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0;
  color: var(--vd-section-text);
  font: 700 1rem/1.25 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.vd-showcase-faq-page .vd-showcase-question {
  flex: 0 1 auto;
  min-width: 0;
}

.vd-showcase-faq summary .vd-showcase-ico {
  margin-left: auto;
}

.vd-showcase-faq-page summary {
  row-gap: 8px;
}

.vd-showcase-faq summary::-webkit-details-marker {
  display: none;
}

.vd-showcase-ico {
  flex: 0 0 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  transition: transform 0.25s var(--vd-ease), background var(--vd-duration-fast) var(--vd-ease),
    border-color var(--vd-duration-fast) var(--vd-ease);
}

.vd-showcase-ico svg {
  width: 14px;
  height: 14px;
  fill: var(--vd-section-text);
  transition: transform 0.25s var(--vd-ease);
}

.vd-showcase-faq details[open] .vd-showcase-ico {
  background: currentColor;
  border-color: currentColor;
}

.vd-showcase-faq details[open] .vd-showcase-ico svg {
  fill: var(--vd-light);
  transform: rotate(45deg);
}

.vd-showcase-answer {
  padding: 0 0 4px;
  overflow: hidden;
  color: var(--vd-section-text);
  font: 500 0.95rem/1.55 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.vd-showcase-answer.is-animating {
  opacity: 0.98;
}

.vd-showcase-faq-page details.vd-showcase-card {
  cursor: pointer;
}

.vd-showcase-faq summary:focus-visible {
  outline: 2px solid rgba(255, 129, 10, 0.65);
  outline-offset: 3px;
  border-radius: 14px;
}

@media (max-width: 420px) {
  .vd-showcase-sectors .vd-showcase-title {
    width: calc(100% - 24px);
    padding-block: clamp(16px, 5vw, 24px);
  }

  .vd-showcase-faq-page summary {
    row-gap: 6px;
  }
}

.vd-showcase-animate {
  opacity: 0;
}

.vd-showcase-animate.vd-showcase-heading-split {
  opacity: 1;
}

.vd-showcase-word {
  display: inline-block;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .vd-showcase-animate {
    opacity: 1 !important;
    transform: none !important;
  }

  .vd-showcase-faq-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .vd-showcase-cta,
  .vd-showcase-cta-main,
  .vd-showcase-dot {
    transition: none;
  }

  .vd-showcase-rail {
    scroll-behavior: auto;
  }
}
