:root {
  --pk-navy: #0a2540;
  --pk-blue: #0a5f82;
  --pk-blue-bright: #15abe4;
  --pk-green: #3f7a28;
  --pk-green-soft: #6d9b4a;
  --pk-ink: #1c1c1c;
  --pk-muted: #4a5560;
  --pk-line: #d7dee6;
  --pk-paper: #f5f7fa;
  --pk-white: #ffffff;
  --pk-focus: #0a5f82;
  --pk-radius: 12px;
  --pk-header-h: 88px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--pk-ink);
  background: var(--pk-white);
  overflow-x: hidden;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--pk-focus);
  outline-offset: 3px;
}

.pk-skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 10000;
  background: var(--pk-navy);
  color: var(--pk-white);
  padding: 8px 12px;
  border-radius: 6px;
}

.pk-skip:focus {
  top: 12px;
}

.pk-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--pk-white);
  border-bottom: 1px solid var(--pk-line);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.06);
}

.pk-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--pk-header-h);
  padding: 10px 0;
}

.pk-logo img {
  width: 148px;
  height: auto;
  display: block;
  background: #000;
  padding: 6px 8px;
  border-radius: 8px;
}

.pk-nav {
  flex: 1;
}

.pk-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pk-nav a {
  color: var(--pk-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 8px 0;
  white-space: nowrap;
}

.pk-nav a[aria-current="page"],
.pk-nav a:hover {
  color: var(--pk-green);
}

.pk-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid transparent;
  text-align: center;
}

.pk-btn-primary,
a.pk-btn-primary,
.pk-btn-primary:hover,
a.pk-btn-primary:hover {
  background: var(--pk-blue);
  color: var(--pk-white);
  z-index: auto;
}

.pk-btn-secondary,
a.pk-btn-secondary,
.pk-btn-secondary:hover,
a.pk-btn-secondary:hover {
  background: transparent;
  color: var(--pk-navy);
  border-color: var(--pk-navy);
  z-index: auto;
}

.pk-btn-whatsapp,
a.pk-btn-whatsapp,
.pk-btn-whatsapp:hover {
  background: var(--pk-green);
  color: var(--pk-white);
  z-index: auto;
}

.pk-menu-toggle,
.pk-menu-close {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--pk-line);
  background: var(--pk-white);
  color: var(--pk-navy);
  border-radius: 8px;
  font-weight: 600;
}

.pk-mobile-nav {
  display: none;
  border-top: 1px solid var(--pk-line);
  background: var(--pk-white);
  padding: 8px 0 16px;
}

.pk-mobile-nav[hidden] {
  display: none !important;
}

.pk-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pk-mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--pk-navy);
  font-weight: 600;
  min-height: 44px;
}

.pk-mobile-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.pk-hero {
  background: linear-gradient(120deg, #0a2540 0%, #0a5f82 100%);
  color: var(--pk-white);
  padding: 48px 0 56px;
}

.pk-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--pk-white);
}

.pk-hero p,
.pk-hero .text-common {
  color: #eef6fb;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-bottom: 12px;
}

.pk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 20px;
}

.pk-quote-card {
  background: var(--pk-white);
  color: var(--pk-ink);
  border-radius: var(--pk-radius);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.pk-quote-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pk-navy);
}

.pk-quote-card p {
  color: var(--pk-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.pk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pk-form-grid .pk-span-2 {
  grid-column: 1 / -1;
}

.pk-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pk-navy);
  margin-bottom: 4px;
}

.pk-field input,
.pk-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--pk-line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--pk-ink);
  background: var(--pk-white);
}

.pk-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0);
}

.pk-form-status {
  margin: 10px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.pk-form-status--info { color: var(--pk-blue); }
.pk-form-status--error { color: #9b1c1c; }
.pk-form-status--success { color: var(--pk-green); }

.pk-section {
  padding: 48px 0;
}

.pk-section-alt {
  background: var(--pk-paper);
}

.pk-kicker {
  color: var(--pk-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pk-section h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--pk-navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.pk-lead {
  color: var(--pk-muted);
  max-width: 720px;
  margin-bottom: 24px;
}

.pk-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pk-trust article,
.pk-card,
.pk-lang a,
.pk-step {
  background: var(--pk-white);
  border: 1px solid var(--pk-line);
  border-radius: var(--pk-radius);
  padding: 18px;
}

.pk-trust h3,
.pk-card h3,
.pk-step h3 {
  color: var(--pk-navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pk-trust p,
.pk-card p,
.pk-step p {
  color: var(--pk-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pk-grid-4,
.pk-grid-3,
.pk-langs {
  display: grid;
  gap: 16px;
}

.pk-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pk-langs { grid-template-columns: repeat(3, 1fr); }

.pk-card a.pk-card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--pk-blue);
  font-weight: 700;
}

.pk-lang a {
  display: block;
  color: var(--pk-navy);
  font-weight: 700;
  min-height: 64px;
}

.pk-lang a:hover {
  border-color: var(--pk-blue);
  color: var(--pk-blue);
}

.pk-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: var(--pk-blue);
}

.pk-faq details {
  background: var(--pk-white);
  border: 1px solid var(--pk-line);
  border-radius: 10px;
  padding: 4px 16px;
  margin-bottom: 10px;
}

.pk-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--pk-navy);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.pk-faq details p {
  color: var(--pk-muted);
  padding-bottom: 12px;
}

.pk-final-cta {
  background: var(--pk-navy);
  color: var(--pk-white);
  padding: 48px 0;
  text-align: center;
}

.pk-final-cta h2,
.pk-final-cta p {
  color: var(--pk-white);
}

.pk-final-cta p {
  max-width: 640px;
  margin: 0 auto 20px;
}

.pk-footer {
  background: #07192c;
  color: #d5dde6;
  padding: 40px 0 24px;
}

.pk-footer h2,
.pk-footer .footer-title {
  color: var(--pk-white);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.pk-footer a {
  color: #d5dde6;
}

.pk-footer a:hover {
  color: var(--pk-white);
}

.pk-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pk-footer li {
  margin-bottom: 8px;
}

.pk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.9rem;
}

.pk-badge {
  max-width: 180px;
  height: auto;
  margin-top: 12px;
  background: var(--pk-white);
  padding: 6px;
  border-radius: 6px;
}

.pk-cta-bar {
  display: none;
}

.pk-whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 1100;
  background: var(--pk-green);
  color: var(--pk-white);
  border-radius: 999px;
  min-height: 48px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.pk-whatsapp-float:hover {
  color: var(--pk-white);
}

.pk-page-title {
  background: var(--pk-navy);
  color: var(--pk-white);
  padding: 28px 0;
  margin-top: 0;
}

.pk-page-title h1,
.pk-page-title .inner_banner_heading {
  color: var(--pk-white);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.pk-page-title .breadcrumb,
.pk-page-title .breadcrumb a,
.pk-page-title .breadcrumb-item {
  color: #d5e8f3 !important;
}

.pk-inner {
  padding: 32px 0 48px;
}

@media (max-width: 1199px) {
  .pk-nav ul { gap: 6px 10px; }
  .pk-nav a { font-size: 13px; }
  .pk-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .pk-nav { display: none; }
  .pk-menu-toggle { display: inline-flex; }
  .pk-mobile-nav:not([hidden]) { display: block; }
  .pk-trust { grid-template-columns: repeat(2, 1fr); }
  .pk-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .pk-form-grid,
  .pk-langs,
  .pk-grid-4,
  .pk-grid-3,
  .pk-trust {
    grid-template-columns: 1fr;
  }
  .pk-hero { padding: 32px 0 40px; }
  .pk-section { padding: 36px 0; }
  .pk-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
  }
  .pk-cta-bar a {
    flex: 1;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pk-white);
    font-weight: 700;
  }
  .pk-cta-bar a:first-child { background: var(--pk-blue); }
  .pk-cta-bar a:last-child { background: var(--pk-green); }
  .pk-whatsapp-float {
    left: 12px;
    right: auto;
    bottom: 72px;
  }
  .pk-quote-card { margin-bottom: 24px; padding-bottom: 24px; }
  body { padding-bottom: 72px; }
}

@media (max-width: 575px) {
  .pk-logo img { width: 110px; }
  .pk-header-actions .pk-btn-primary { padding: 8px 12px; font-size: 13px; }
}

@media (min-width: 1440px) {
  .pk-hero { padding: 64px 0; }
}
