.ndc-pd-wrap,
.ndc-pd-wrap * {
  box-sizing: border-box;
}

.ndc-pd-wrap {
  --ndc-bg: #061420;
  --ndc-card: #071624;
  --ndc-card-2: #071927;
  --ndc-line: rgba(79, 255, 74, 0.22);
  --ndc-green: #52f248;
  --ndc-green-dark: #1fc73a;
  --ndc-text: #ffffff;
  --ndc-muted: #9db4c8;
  --ndc-blue-muted: #a9c4dc;
  --ndc-shadow: 0 16px 30px rgba(82, 242, 72, 0.20);
  --ndc-display-font: 'Oswald', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --ndc-body-font: Inter, Montserrat, Arial, sans-serif;
  /* Full-bleed layout without creating horizontal page scroll.
     Do not use fixed 100vw width here because 100vw can include the browser scrollbar. */
  width: auto !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: var(--ndc-bg);
  color: var(--ndc-text);
  font-family: var(--ndc-body-font);
  padding: 64px clamp(18px, 6vw, 120px);
  overflow-x: clip;
  overflow-y: visible;
}

body:has(.ndc-pd-wrap),
body.ndc-pd-page {
  overflow-x: clip;
}

.ndc-pd-wrap img,
.ndc-pd-wrap iframe,
.ndc-pd-wrap video {
  max-width: 100%;
}

.ndc-pd-wrap > * {
  min-width: 0;
}

.ndc-pd-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 72px;
}

.ndc-pd-section:last-child {
  margin-bottom: 0;
}

.ndc-pd-section-head {
  text-align: center;
  margin-bottom: 44px;
}

.ndc-pd-section-head span,
.ndc-pd-mini {
  display: inline-block;
  color: var(--ndc-green);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 24px;
}

.ndc-pd-section-head h2 {
  color: var(--ndc-text);
  text-transform: uppercase;
  font-family: var(--ndc-display-font);
  letter-spacing: 0.045em;
  line-height: 1;
  font-size: clamp(32px, 3.2vw, 45px);
  margin: 0;
  font-weight: 700;
}

.ndc-pd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ndc-pd-card {
  min-height: 390px;
  background: linear-gradient(180deg, var(--ndc-card) 0%, #06121d 100%);
  border: 1px solid rgba(82, 242, 72, 0.22);
  border-radius: 16px;
  padding: 42px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.ndc-pd-training .ndc-pd-card {
  min-height: 318px;
  padding: 38px 34px 30px;
  text-align: center;
}

.ndc-pd-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(82, 242, 72, 0.08), transparent 40%);
  pointer-events: none;
}

.ndc-pd-card h3 {
  color: var(--ndc-text);
  text-transform: uppercase;
  font-family: var(--ndc-display-font);
  font-size: clamp(36px, 3vw, 45px);
  line-height: 1.04;
  letter-spacing: 0.055em;
  margin: 0 0 34px;
  font-weight: 700;
  position: relative;
  word-break: normal;
  overflow-wrap: normal;
}

.ndc-pd-training .ndc-pd-card h3 {
  text-align: center;
  margin-bottom: 22px;
}

.ndc-pd-price {
  color: var(--ndc-green);
  margin-bottom: 24px;
  position: relative;
}

.ndc-pd-price span {
  font-family: var(--ndc-display-font);
  font-size: clamp(32px, 3vw, 42px);
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 700;
}

.ndc-pd-price small {
  color: var(--ndc-text);
  font-size: 18px;
  font-weight: 800;
  margin-left: 5px;
}

.ndc-pd-training .ndc-pd-price {
  text-align: center;
  margin-top: auto;
  margin-bottom: 28px;
}

.ndc-pd-training .ndc-pd-price small {
  display: block;
  color: var(--ndc-muted);
  font-size: 13px;
  margin: 6px 0 0;
  font-weight: 700;
}

.ndc-pd-features {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  position: relative;
}

.ndc-pd-features li {
  color: var(--ndc-blue-muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 11px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.ndc-pd-features li::before {
  content: '✓';
  color: var(--ndc-text);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  flex: 0 0 auto;
}

.ndc-pd-desc {
  color: var(--ndc-blue-muted);
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
  margin: 0 auto 34px;
  max-width: 360px;
  position: relative;
}

.ndc-pd-btn,
.ndc-pd-event-btn,
.ndc-pd-submit {
  appearance: none;
  border: 0;
  width: 100%;
  border-radius: 10px;
  padding: 17px 22px;
  background: var(--ndc-green);
  color: #020b13;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--ndc-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  margin-top: auto;
  position: relative;
}

.ndc-pd-btn:hover,
.ndc-pd-event-btn:hover,
.ndc-pd-submit:hover {
  transform: translateY(-2px);
  background: #63ff58;
  box-shadow: 0 22px 42px rgba(82, 242, 72, 0.32);
}

.ndc-pd-featured {
  background: var(--ndc-green);
  color: #020b13;
  border-color: rgba(82, 242, 72, 0.65);
  box-shadow: 0 10px 0 rgba(82, 242, 72, 0.08);
}

.ndc-pd-featured::before {
  display: none;
}

.ndc-pd-featured h3,
.ndc-pd-featured .ndc-pd-price,
.ndc-pd-featured .ndc-pd-price small,
.ndc-pd-featured .ndc-pd-desc,
.ndc-pd-featured .ndc-pd-features li,
.ndc-pd-featured .ndc-pd-features li::before,
.ndc-pd-featured .ndc-pd-badge {
  color: #020b13;
}

.ndc-pd-featured h3,
.ndc-pd-featured .ndc-pd-badge,
.ndc-pd-featured .ndc-pd-price,
.ndc-pd-featured .ndc-pd-desc {
  text-align: center;
}

.ndc-pd-featured .ndc-pd-features {
  margin-left: auto;
  margin-right: auto;
}

.ndc-pd-featured .ndc-pd-btn {
  background: #020b13;
  color: #ffffff;
  box-shadow: none;
}

.ndc-pd-featured .ndc-pd-btn:hover {
  background: #071624;
}

.ndc-pd-badge {
  text-transform: uppercase;
  font-family: var(--ndc-display-font);
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0 0 30px;
  font-weight: 700;
  position: relative;
}

.ndc-pd-training .ndc-pd-badge {
  text-align: center;
}


.ndc-pd-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 370px));
  gap: 28px;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  align-items: stretch;
  justify-content: start;
  overflow: visible;
}

.ndc-pd-event-card {
  max-width: 100%;
  min-width: 0;
  background: #111a2c;
  border-radius: 16px;
  overflow: hidden;
  color: var(--ndc-text);
  border: 1px solid rgba(82, 242, 72, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  min-height: 490px;
}

.ndc-pd-event-image {
  height: 210px;
  background: linear-gradient(135deg, #071624, #10243b);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ndc-pd-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ndc-pd-event-placeholder span {
  font-family: var(--ndc-display-font);
  color: rgba(82, 242, 72, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 28px;
}

.ndc-pd-event-body {
  min-width: 0;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ndc-pd-event-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #78ef58;
  color: #020b13;
  border-radius: 999px;
  padding: 10px 18px;
  text-transform: uppercase;
  font-family: var(--ndc-display-font);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 22px;
}

.ndc-pd-event-card h3 {
  font-family: var(--ndc-display-font);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin: 0 0 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.ndc-pd-event-card p {
  color: var(--ndc-blue-muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
  overflow-wrap: anywhere;
}

.ndc-pd-event-footer {
  min-width: 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ndc-pd-event-price {
  color: var(--ndc-blue-muted);
  white-space: nowrap;
}

.ndc-pd-event-price strong {
  color: #ffffff;
  font-family: var(--ndc-display-font);
  font-size: 20px;
  letter-spacing: 0.03em;
}

.ndc-pd-event-price span {
  font-size: 15px;
  font-weight: 700;
}

.ndc-pd-event-btn {
  width: auto;
  min-width: 102px;
  border-radius: 999px;
  padding: 15px 22px;
  font-family: var(--ndc-display-font);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: none;
  margin-top: 0;
}

body.ndc-pd-modal-open {
  overflow: hidden;
}

.ndc-pd-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.ndc-pd-modal.is-open {
  display: flex;
}

.ndc-pd-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 14, 0.78);
  backdrop-filter: blur(5px);
}

.ndc-pd-modal-box {
  width: min(760px, 100%);
  max-height: min(92vh, 900px);
  overflow-y: auto;
  position: relative;
  background: linear-gradient(180deg, #071624, #06101a);
  border: 1px solid rgba(82, 242, 72, 0.25);
  border-radius: 18px;
  color: #ffffff;
  padding: 36px 40px 34px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.ndc-pd-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: transparent;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ndc-pd-modal-close::before,
.ndc-pd-modal-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  transform-origin: center;
}

.ndc-pd-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ndc-pd-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ndc-pd-modal-close:hover {
  background: rgba(82, 242, 72, 0.13);
  border-color: rgba(82, 242, 72, 0.40);
  transform: scale(1.03);
}

.ndc-pd-modal-head {
  margin-bottom: 24px;
  padding-right: 48px;
}

.ndc-pd-modal-head h3 {
  font-family: var(--ndc-display-font);
  font-size: clamp(32px, 4.2vw, 45px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  line-height: 1.05;
  font-weight: 700;
}

.ndc-pd-selected-plan {
  color: var(--ndc-blue-muted);
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.ndc-pd-form-row {
  margin-bottom: 18px;
}

.ndc-pd-form-row label {
  display: block;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
}

.ndc-pd-form-row label span {
  color: var(--ndc-green);
}

.ndc-pd-form input[type='text'],
.ndc-pd-form input[type='tel'],
.ndc-pd-form input[type='email'] {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(82, 242, 72, 0.22);
  background: #06101a;
  color: #ffffff;
  padding: 15px 16px;
  font-size: 16px;
  outline: none;
}

.ndc-pd-form input:focus {
  border-color: rgba(82, 242, 72, 0.70);
  box-shadow: 0 0 0 3px rgba(82, 242, 72, 0.12);
}

.ndc-pd-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ndc-pd-pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ndc-pd-pay-option {
  display: flex !important;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(82, 242, 72, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  padding: 14px 16px;
  margin: 0 !important;
  cursor: pointer;
}

.ndc-pd-pay-option input {
  accent-color: var(--ndc-green);
}

.ndc-pd-pay-option span {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ndc-pd-qr-panel {
  display: none;
  border: 1px solid rgba(82, 242, 72, 0.22);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
  text-align: center;
  background: rgba(82, 242, 72, 0.04);
}

.ndc-pd-qr-panel.is-visible {
  display: block;
}

.ndc-pd-qr-panel img {
  width: min(240px, 100%);
  height: auto;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px;
  margin-bottom: 10px;
}

.ndc-pd-qr-panel p {
  color: var(--ndc-blue-muted);
  margin: 0;
  line-height: 1.5;
}

.ndc-pd-submit {
  margin-top: 10px;
}

.ndc-pd-message {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ndc-blue-muted);
}

.ndc-pd-message.is-error {
  color: #ff8585;
}

.ndc-pd-message.is-success {
  color: var(--ndc-green);
}

@media (max-width: 1100px) {
  .ndc-pd-grid {
    gap: 22px;
  }

  .ndc-pd-card,
  .ndc-pd-training .ndc-pd-card {
    padding: 36px 26px 28px;
  }

  .ndc-pd-features li,
  .ndc-pd-desc {
    font-size: 16px;
  }
}

@media (max-width: 880px) {
  .ndc-pd-wrap {
    padding: 48px 20px;
  }

  .ndc-pd-section {
    margin-bottom: 58px;
  }

  .ndc-pd-section-head {
    margin-bottom: 34px;
  }

  .ndc-pd-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
  }

  .ndc-pd-card,
  .ndc-pd-training .ndc-pd-card {
    min-height: unset;
  }

  .ndc-pd-card h3,
  .ndc-pd-training .ndc-pd-card h3 {
    text-align: center;
    margin-bottom: 24px;
  }

  .ndc-pd-price {
    text-align: center;
  }

  .ndc-pd-features {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 880px) {
  .ndc-pd-events-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .ndc-pd-event-card {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .ndc-pd-section-head span,
  .ndc-pd-mini {
    letter-spacing: 0.28em;
    font-size: 11px;
    margin-bottom: 18px;
  }

  .ndc-pd-section-head h2,
  .ndc-pd-modal-head h3 {
    font-size: 32px;
  }

  .ndc-pd-card,
  .ndc-pd-training .ndc-pd-card {
    border-radius: 14px;
    padding: 32px 20px 24px;
  }

  .ndc-pd-card h3,
  .ndc-pd-training .ndc-pd-card h3 {
    font-size: 32px;
  }

  .ndc-pd-features li,
  .ndc-pd-desc {
    font-size: 15px;
  }

  .ndc-pd-btn,
  .ndc-pd-event-btn,
  .ndc-pd-submit {
    padding: 16px 18px;
  }

  .ndc-pd-modal-box {
    padding: 28px 18px 24px;
    border-radius: 14px;
  }

  .ndc-pd-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .ndc-pd-modal-head {
    padding-right: 40px;
  }

  .ndc-pd-two-cols,
  .ndc-pd-pay-options {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 560px) {
  .ndc-pd-event-image {
    height: 190px;
  }

  .ndc-pd-event-body {
    padding: 24px 20px 22px;
  }

  .ndc-pd-event-card h3 {
    font-size: 28px;
  }

  .ndc-pd-event-card p {
    font-size: 15px;
  }

  .ndc-pd-event-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .ndc-pd-event-btn {
    width: 100%;
  }
}
