:root {
  --pk-color-background: #f5f5f2;
  --pk-color-surface: #ffffff;
  --pk-color-surface-muted: #ecece7;
  --pk-color-text: #111111;
  --pk-color-text-muted: #5c5c55;
  --pk-color-border: #d6d6cf;
  --pk-color-primary: #f7c600;
  --pk-color-primary-dark: #d9a900;
  --pk-color-primary-soft: #fff6bf;
  --pk-color-accent: #ffd91a;
  --pk-color-accent-soft: #fff7c7;
  --pk-color-on-primary: #111111;
  --pk-color-footer: #090909;
  --pk-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.1);
  --pk-shadow-md: 0 18px 48px rgb(0 0 0 / 0.18);
  --pk-radius-sm: 4px;
  --pk-radius-md: 6px;
  --pk-radius-lg: 8px;
  --pk-content-width: 72rem;
  --pk-font-sans: Inter, ui-sans-serif, system-ui, sans-serif;
}

body {
  background:
    linear-gradient(180deg, #f5f5f2 0%, #ffffff 34rem),
    var(--pk-color-background);
  color: var(--pk-color-text);
  font-family: var(--pk-font-sans);
}

.pk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgb(247 198 0 / 0.42);
  background: rgb(9 9 9 / 0.96);
  backdrop-filter: blur(12px);
}

.pk-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: var(--pk-content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pk-header__logo,
.pk-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pk-header__logo-icon,
.pk-footer__brand-logo-icon {
  font-size: 1.5rem;
}

.pk-header__logo-image,
.pk-footer__brand-logo-image {
  width: auto;
  height: 2rem;
}

.pk-header__logo-text,
.pk-footer__brand-logo-text {
  color: var(--pk-color-primary);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0;
}

.pk-header__logo:hover .pk-header__logo-text,
.pk-header__nav-link:hover,
.pk-header__dropdown-trigger:hover,
.pk-header__dropdown-item:hover,
.pk-header__mobile-link:hover,
.pk-header__mobile-dropdown-trigger:hover,
.pk-header__mobile-sub-link:hover {
  color: var(--pk-color-primary);
}

.pk-header__nav {
  display: none;
}

.pk-header__nav-link,
.pk-header__dropdown-trigger,
.pk-header__dropdown-item,
.pk-header__mobile-link,
.pk-header__mobile-dropdown-trigger,
.pk-header__mobile-sub-link {
  color: #e9e9e3;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.pk-header__nav-link--active {
  color: var(--pk-color-primary);
}

.pk-header__dropdown {
  position: relative;
}

.pk-header__dropdown-trigger,
.pk-header__mobile-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pk-header__dropdown-arrow,
.pk-header__mobile-dropdown-arrow {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 160ms ease;
}

.pk-header__dropdown-arrow--open,
.pk-header__mobile-dropdown-arrow--open {
  transform: rotate(180deg);
}

.pk-header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 12rem;
  margin-top: 0.5rem;
  padding: 0.4rem;
  border: 1px solid var(--pk-color-border);
  border-radius: var(--pk-radius-lg);
  background: var(--pk-color-surface);
  box-shadow: var(--pk-shadow-md);
}

.pk-header__dropdown-item {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: var(--pk-radius-md);
  color: var(--pk-color-text);
}

.pk-header__dropdown-item:hover {
  background: var(--pk-color-primary-soft);
}

.pk-header__cta,
.pk-header__mobile-cta,
.pk-hero__button,
.pk-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pk-radius-md);
  background: var(--pk-color-primary);
  color: var(--pk-color-on-primary);
  font-size: 0.875rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.pk-header__cta {
  display: none;
  padding: 0.55rem 1rem;
}

.pk-header__cta:hover,
.pk-header__mobile-cta:hover,
.pk-contact__submit:hover {
  background: var(--pk-color-primary-dark);
}

.pk-header__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgb(247 198 0 / 0.5);
  border-radius: var(--pk-radius-md);
  background: #181818;
  color: var(--pk-color-primary);
}

.pk-header__mobile-menu {
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid var(--pk-color-border);
  background: #111111;
}

.pk-header__mobile-link,
.pk-header__mobile-dropdown-trigger {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.pk-header__mobile-submenu {
  padding: 0 0 0.5rem 1rem;
}

.pk-header__mobile-sub-link {
  display: block;
  padding: 0.4rem 0;
}

.pk-header__mobile-cta {
  margin-top: 0.75rem;
  padding: 0.65rem 1rem;
}

.pk-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgb(247 198 0 / 0.36), transparent 28rem),
    linear-gradient(135deg, #050505 0%, #111111 54%, #292929 100%);
}

.pk-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.08), rgb(0 0 0 / 0.24)),
    rgb(0 0 0 / 0.08);
}

.pk-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--pk-content-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.pk-hero__headline {
  max-width: 48rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.pk-hero__subheadline {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: #ecece6;
  font-size: 1.125rem;
  line-height: 1.75;
}

.pk-hero__button {
  margin-top: 2rem;
  padding: 0.8rem 1.35rem;
  background: var(--pk-color-accent);
  color: #111111;
  box-shadow: var(--pk-shadow-md);
}

.pk-hero__button:hover {
  background: #e5b800;
  transform: translateY(-1px);
}

.pk-hero__image {
  max-width: 100%;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--pk-radius-lg);
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.25);
}

.pk-primary-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #090909;
  background-image:
    radial-gradient(circle at 88% 20%, rgb(247 198 0 / 0.3), transparent 24rem),
    linear-gradient(135deg, #050505 0%, #121212 58%, #2a2a2a 100%);
  background-size: cover;
  color: #ffffff;
}

.pk-primary-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.54));
}

.pk-primary-cta__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.pk-primary-cta__content {
  flex: 1;
  text-align: center;
}

.pk-primary-cta__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.pk-primary-cta__description {
  max-width: 44rem;
  margin: 1rem auto 0;
  color: #ecece6;
  font-size: 1.125rem;
  line-height: 1.75;
}

.pk-primary-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--pk-radius-md);
  background: var(--pk-color-accent);
  color: #111111;
  font-size: 0.875rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--pk-shadow-md);
  transition: background 160ms ease, transform 160ms ease;
}

.pk-primary-cta__button:hover {
  background: #e5b800;
  transform: translateY(-1px);
}

.pk-primary-cta__secondary {
  margin-top: 1rem;
  color: #c8c8c0;
  font-size: 0.875rem;
}

.pk-primary-cta__secondary-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgb(247 198 0 / 0.8);
  text-underline-offset: 0.2em;
  transition: color 160ms ease;
}

.pk-primary-cta__secondary-link:hover {
  color: #ffe56b;
}

.pk-primary-cta__image {
  width: 100%;
  max-width: 20rem;
  flex-shrink: 0;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--pk-radius-lg);
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.3);
}

.pk-trust,
.pk-card-grid,
.pk-steps,
.pk-faq,
.pk-contact {
  width: 100%;
}

.pk-trust {
  padding: 2.5rem 0;
  border-top: 1px solid var(--pk-color-border);
  border-bottom: 1px solid var(--pk-color-border);
  background: #fff8cf;
}

.pk-trust__container,
.pk-card-grid__container,
.pk-steps__container,
.pk-faq__container,
.pk-contact__container {
  max-width: var(--pk-content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pk-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pk-trust__item {
  text-align: center;
}

.pk-trust__icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  color: var(--pk-color-primary);
}

.pk-trust__title,
.pk-card-grid__card-title,
.pk-steps__item-title {
  margin: 0;
  color: var(--pk-color-text);
  font-size: 1rem;
  font-weight: 900;
}

.pk-trust__text,
.pk-card-grid__card-description,
.pk-steps__item-text,
.pk-contact__info-value {
  margin-top: 0.35rem;
  color: var(--pk-color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pk-card-grid {
  padding: 5rem 0;
  background: var(--pk-color-background);
}

.pk-card-grid__header {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.pk-card-grid__title,
.pk-steps__title,
.pk-faq__title,
.pk-contact__title {
  margin: 0;
  color: var(--pk-color-text);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.pk-card-grid__subtitle,
.pk-faq__subtitle,
.pk-contact__subtitle {
  max-width: 44rem;
  margin-top: 0.9rem;
  color: var(--pk-color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.pk-card-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pk-card-grid__card {
  padding: 1.5rem;
  border: 1px solid var(--pk-color-border);
  border-radius: var(--pk-radius-lg);
  background: var(--pk-color-surface);
  box-shadow: var(--pk-shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pk-card-grid__card:hover {
  border-color: rgb(247 198 0 / 0.58);
  box-shadow: var(--pk-shadow-md);
  transform: translateY(-1px);
}

.pk-card-grid__card-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: var(--pk-radius-md);
}

.pk-card-grid__card-body {
  margin-top: 1rem;
}

.pk-card-grid__card-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--pk-color-primary);
}

.pk-card-grid__card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--pk-color-primary);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
}

.pk-steps {
  padding: 5rem 0;
  background: #eef6ee;
}

.pk-steps__title,
.pk-faq__header {
  text-align: center;
}

.pk-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.pk-steps__item {
  padding: 1.5rem;
  border: 1px solid var(--pk-color-border);
  border-radius: var(--pk-radius-lg);
  background: var(--pk-color-surface);
  text-align: center;
  box-shadow: var(--pk-shadow-sm);
}

.pk-steps__image {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  object-fit: cover;
}

.pk-steps__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--pk-color-accent);
  color: var(--pk-color-on-primary);
  font-size: 0.875rem;
  font-weight: 900;
}

.pk-faq {
  padding: 5rem 0;
  background: var(--pk-color-surface);
}

.pk-faq__container {
  max-width: 48rem;
}

.pk-faq__list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.pk-faq__item {
  overflow: hidden;
  border: 1px solid var(--pk-color-border);
  border-radius: var(--pk-radius-lg);
  background: var(--pk-color-surface);
}

.pk-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--pk-color-text);
  font-size: 0.875rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.pk-faq__question:hover {
  background: var(--pk-color-primary-soft);
}

.pk-faq__question-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--pk-color-primary);
}

.pk-faq__answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--pk-color-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.pk-contact {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, #fff6bf 0%, #f5f5f2 100%),
    var(--pk-color-primary-soft);
}

.pk-contact__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.pk-contact__info {
  display: grid;
  gap: 1.25rem;
}

.pk-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pk-contact__info-label {
  color: var(--pk-color-text);
  font-size: 0.875rem;
  font-weight: 900;
}

.pk-contact__social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pk-contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--pk-color-text-muted);
  box-shadow: var(--pk-shadow-sm);
}

.pk-contact__form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgb(247 198 0 / 0.32);
  border-radius: var(--pk-radius-lg);
  background: var(--pk-color-surface);
  box-shadow: var(--pk-shadow-md);
}

.pk-contact__field-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--pk-color-text);
  font-size: 0.875rem;
  font-weight: 800;
}

.pk-contact__field-help,
.pk-contact__status {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.pk-contact__field-help {
  color: var(--pk-color-text-muted);
}

.pk-contact__status--success {
  color: #166534;
}

.pk-contact__status--error {
  color: #b91c1c;
}

.pk-contact__field-input,
.pk-contact__field-textarea {
  width: 100%;
  border: 1px solid var(--pk-color-border);
  border-radius: var(--pk-radius-md);
  padding: 0.65rem 0.75rem;
  color: var(--pk-color-text);
  font-size: 0.875rem;
}

.pk-contact__field-input:focus,
.pk-contact__field-textarea:focus {
  outline: 2px solid rgb(247 198 0 / 0.28);
  border-color: var(--pk-color-primary);
}

.pk-contact__field-textarea {
  min-height: 8rem;
  resize: vertical;
}

.pk-contact__submit {
  width: 100%;
  border: 0;
  padding: 0.8rem 1rem;
  cursor: pointer;
}

.pk-form {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, #fff6bf 0%, #f5f5f2 100%),
    var(--pk-color-primary-soft);
}

.pk-form__container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pk-form__header {
  margin-bottom: 1.75rem;
  text-align: center;
}

.pk-form__title {
  margin: 0;
  color: var(--pk-color-text);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
}

.pk-form__subtitle,
.pk-form__description {
  max-width: 42rem;
  margin: 0.75rem auto 0;
  color: var(--pk-color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.pk-form__form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgb(247 198 0 / 0.32);
  border-radius: var(--pk-radius-lg);
  background: var(--pk-color-surface);
  box-shadow: var(--pk-shadow-md);
}

.pk-form__field,
.pk-form__status,
.pk-form__submit {
  grid-column: 1 / -1;
}

.pk-form__field--half,
.pk-form__field--third,
.pk-form__field--two-thirds {
  grid-column: 1 / -1;
}

.pk-form__field-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--pk-color-text);
  font-size: 0.875rem;
  font-weight: 800;
}

.pk-form__required {
  color: #b91c1c;
}

.pk-form__field-help,
.pk-form__status,
.pk-form__empty {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.pk-form__field-help,
.pk-form__empty {
  color: var(--pk-color-text-muted);
}

.pk-form__status--success {
  color: #166534;
}

.pk-form__status--error {
  color: #b91c1c;
}

.pk-form__field-input,
.pk-form__field-textarea,
.pk-form__field-select {
  width: 100%;
  border: 1px solid var(--pk-color-border);
  border-radius: var(--pk-radius-md);
  padding: 0.65rem 0.75rem;
  color: var(--pk-color-text);
  font-size: 0.875rem;
  background: #ffffff;
}

.pk-form__field-input:focus,
.pk-form__field-textarea:focus,
.pk-form__field-select:focus {
  outline: 2px solid rgb(247 198 0 / 0.28);
  border-color: var(--pk-color-primary);
}

.pk-form__field-textarea {
  min-height: 8rem;
  resize: vertical;
}

.pk-form__choice-group {
  display: grid;
  gap: 0.65rem;
}

.pk-form__choice-label,
.pk-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--pk-color-text-muted);
  font-size: 0.875rem;
}

.pk-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--pk-radius-md);
  background: var(--pk-color-primary);
  color: #ffffff;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease;
}

.pk-form__submit:hover {
  background: var(--pk-color-primary-dark);
}

.pk-form__submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.pk-footer {
  width: 100%;
  border-top: 1px solid rgb(247 198 0 / 0.36);
  background: var(--pk-color-footer);
  color: #ffffff;
}

.pk-footer__container {
  max-width: var(--pk-content-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.pk-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pk-footer__brand-logo-text {
  color: #ffffff;
}

.pk-footer__brand-description {
  max-width: 24rem;
  margin-top: 0.75rem;
  color: #b8c7be;
  font-size: 0.875rem;
  line-height: 1.6;
}

.pk-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pk-footer__column-title {
  margin: 0 0 0.75rem;
  color: #f7c600;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pk-footer__column-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pk-footer__column-link,
.pk-footer__built-with {
  color: #d8e3d9;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.pk-footer__column-link:hover,
.pk-footer__built-with:hover {
  color: #ffe56b;
}

.pk-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.pk-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #9fb1a6;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .pk-header__nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }

  .pk-header__cta {
    display: inline-flex;
  }

  .pk-header__mobile-toggle,
  .pk-header__mobile-menu {
    display: none;
  }

  .pk-hero__container {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .pk-primary-cta__container {
    flex-direction: row;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .pk-primary-cta__content {
    text-align: left;
  }

  .pk-primary-cta__description {
    margin-left: 0;
  }

  .pk-trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pk-card-grid__grid,
  .pk-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pk-contact__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pk-form__field--half {
    grid-column: span 6;
  }

  .pk-form__field--third {
    grid-column: span 4;
  }

  .pk-form__field--two-thirds {
    grid-column: span 8;
  }

  .pk-footer__top {
    grid-template-columns: 1.4fr 1fr;
  }

  .pk-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pk-footer__bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* PDI Electric v2: compiled overrides for existing Pumpkin style slots. */
.pk-card-grid{padding:20px 0}.pk-form{padding:12px 0 48px}.pk-card-grid__card-image{height:auto!important}.pk-card-grid__card{padding:0;overflow:hidden}.pk-card-grid__card-body{padding:24px}.pk-form__header{text-align:left!important}.pk-faq__question-icon{color:#655000}
*{box-sizing:border-box}body{margin:0}img{max-width:100%;height:auto}button,input,select,textarea{font:inherit}a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid #876700;outline-offset:4px}
.pk-header__logo-image{width:164px;height:64px;object-fit:contain}.pk-header__container{min-height:86px}.pk-header__dropdown-menu{max-height:70vh;overflow:auto;min-width:280px}.pk-header__nav{gap:1.25rem}.pk-header__dropdown-item{white-space:normal}.pk-header__mobile-link,.pk-header__mobile-dropdown-trigger,.pk-header__mobile-sub-link{min-height:44px;display:flex;align-items:center}.pk-header__mobile-menu{max-height:calc(100vh - 86px);overflow:auto}.pk-header__cta{white-space:nowrap}
.pdi-crumb__root{background:#fff;border-bottom:1px solid #e4e4df}.pdi-crumb__container{max-width:1152px;margin:auto;padding:18px 24px}.pdi-crumb__list{display:flex;flex-wrap:wrap;align-items:center;gap:8px;list-style:none;padding:0;margin:0;font-size:13px}.pdi-crumb__item{color:#555}.pdi-crumb__itemCurrent{font-weight:650;color:#111}.pdi-crumb__separator{width:14px;height:14px;color:#777}.pdi-crumb__link{color:inherit;text-decoration:none}.pdi-crumb__link:hover{text-decoration:underline}
.pdi-blog__root{padding:58px 24px 20px;background:#fff}.pdi-blog__container{max-width:1056px;margin:auto;display:flex;flex-direction:column}.pdi-blog__header{order:-2;max-width:870px;margin:0 0 34px}.pdi-blog__title{font-size:clamp(2.1rem,4.1vw,3.7rem);line-height:1.08;letter-spacing:-.035em;margin:0 0 22px;color:#111;font-weight:800}.pdi-blog__subtitle{font-size:clamp(1.08rem,1.6vw,1.28rem);line-height:1.65;max-width:760px;color:#51514b;margin:0}.pdi-blog__featuredImage{order:-1;width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:8px;max-height:510px;margin:0 0 36px;display:block}.pdi-blog__meta{display:flex;gap:18px;color:#606059;font-size:13px;margin-top:16px}.pdi-blog__meta:empty{display:none}.pdi-blog__body{max-width:760px;margin:0 auto;width:100%;font-size:17px;line-height:1.8;color:#34342f}.pdi-blog__body h2{font-size:1.65rem;line-height:1.25;letter-spacing:-.02em;color:#111;margin:2rem 0 .8rem}.pdi-blog__body p{margin:0 0 1.1rem}.pdi-blog__body a{color:#171712;text-decoration:underline;text-decoration-color:#be9200;text-underline-offset:4px;text-decoration-thickness:2px}.pdi-blog__body a:hover{background:#fff5c2}.pdi-blog__body ul{padding-left:1.4rem}.pdi-blog__body li{padding-bottom:.5rem}.pdi-blog__body>div>p:first-child>a{display:inline-block;background:#f7c600;color:#111;padding:12px 20px;border-radius:4px;text-decoration:none;font-weight:750;line-height:1.4;margin-bottom:10px}
.pk-card-grid__card-image{width:100%;aspect-ratio:16/9;object-fit:cover}.pk-card-grid__card-body{display:flex;flex-direction:column;flex:1}.pk-card-grid__card{display:flex;flex-direction:column}.pk-card-grid__card-link{margin-top:auto;padding-top:18px;color:#262616;font-weight:750}.pk-card-grid__card-title{line-height:1.3}.pk-card-grid__card-description{line-height:1.65}.pk-card-grid__grid{align-items:stretch}.pk-card-grid__container{padding-top:48px;padding-bottom:48px}
.pdi-secondary__root{background:#f0f0e9;border-block:1px solid #dfdfd5;padding:50px 24px}.pdi-secondary__container{max-width:850px;margin:auto;text-align:center}.pdi-secondary__title{font-size:clamp(1.7rem,3vw,2.3rem);line-height:1.2;margin:0 0 16px;letter-spacing:-.025em}.pdi-secondary__description{max-width:680px;margin:0 auto 24px;line-height:1.7;color:#505047}.pdi-secondary__button{display:inline-block;padding:13px 23px;background:#151515;color:#fff;font-weight:700;border-radius:4px;text-decoration:none}
.pk-primary-cta__container{padding-top:55px;padding-bottom:55px}.pk-primary-cta__title{line-height:1.12}.pk-form__submit{color:#111!important;background:#f7c600!important;min-height:48px}.pk-form__field-input,.pk-form__field-select{min-height:48px}.pk-form__container{padding-top:26px}.pk-form__description{line-height:1.6}.pk-form__field-label{line-height:1.4}.pk-faq__question{text-align:left;line-height:1.45;min-height:48px}.pk-faq__answer{line-height:1.75}.pk-footer__brand-description{max-width:330px;color:#c9c9c0}.pk-footer__column-link{font-size:13px;line-height:1.5;display:inline-block;padding:5px 0}.pk-footer__columns{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.pk-footer__brand-logo-image{width:175px;height:auto}.pk-footer__top{grid-template-columns:1fr 2fr;gap:48px}
[data-style-key="home-introduction"] .pk-hero__container{display:grid;grid-template-columns:1.05fr 1fr;grid-template-rows:auto auto 1fr;gap:20px 48px;padding-top:70px;padding-bottom:70px;align-items:start}[data-style-key="home-introduction"] .pk-hero__headline{grid-column:1;grid-row:1;font-size:clamp(2.6rem,4.4vw,4rem);line-height:1.04;margin:0}[data-style-key="home-introduction"] .pk-hero__subheadline{grid-column:1;grid-row:2;margin:0;line-height:1.65}[data-style-key="home-introduction"] .pk-hero__button{grid-column:1;grid-row:3;justify-self:start;margin-top:8px}[data-style-key="home-introduction"] .pk-hero__image{grid-column:2;grid-row:1/4;width:100%;height:100%;min-height:345px;object-fit:cover;border-radius:6px}
[data-style-key="compact-request"] .pk-hero__container{display:block;padding-top:26px;padding-bottom:25px;max-width:820px}[data-style-key="compact-request"] .pk-hero__headline{font-size:clamp(2rem,4vw,2.7rem);line-height:1.12;margin:0 0 12px}[data-style-key="compact-request"] .pk-hero__subheadline{font-size:1rem;margin:0;line-height:1.55}
@media(max-width:1000px) and (min-width:768px){.pk-header__container{gap:18px}.pk-header__nav{gap:14px}.pk-header__nav-link,.pk-header__dropdown-trigger{font-size:13px}.pk-header__logo-image{width:135px}.pk-header__cta{padding:11px;font-size:13px}}
@media(max-width:767px){.pk-header__container{min-height:74px}.pk-header__logo-image{height:52px;width:143px}.pdi-crumb__container{padding:14px 20px}.pdi-blog__root{padding:34px 20px 12px}.pdi-blog__header{margin-bottom:24px}.pdi-blog__title{font-size:2.2rem}.pdi-blog__featuredImage{margin-bottom:25px;border-radius:5px;aspect-ratio:4/3}.pdi-blog__body{font-size:16px;line-height:1.75}.pdi-blog__body h2{font-size:1.45rem}.pk-footer__top{display:block}.pk-footer__columns{grid-template-columns:1fr 1fr;margin-top:30px}.pk-footer__column-title{font-size:16px}.pk-card-grid__container{padding-top:36px;padding-bottom:36px}.pk-form__container{padding-top:22px}.pk-form__title{font-size:1.6rem}.pk-primary-cta__container{padding-top:40px;padding-bottom:40px}[data-style-key="home-introduction"] .pk-hero__container{display:flex;flex-direction:column;gap:22px;padding:36px 22px}[data-style-key="home-introduction"] .pk-hero__headline{font-size:2.75rem}[data-style-key="home-introduction"] .pk-hero__image{order:4;min-height:0;height:auto;aspect-ratio:4/3}[data-style-key="home-introduction"] .pk-hero__button{order:3}[data-style-key="compact-request"] .pk-hero__container{padding:22px 20px}[data-style-key="compact-request"] .pk-hero__headline{font-size:2rem}}
