:root {
  --paylinn-gradient: linear-gradient(135deg, rgba(203,214,226,0.92), rgba(225,232,240,0.92));
  --paylinn-dark: #0b1f3a;
  --paylinn-light: #f2f6fb;
  --paylinn-accent: #1a4d8f;
  --paylinn-radius: 22px;
  --paylinn-transition: all 0.35s ease;
}

body {
  background: #f7f9fc;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}


.pl-hero {
  margin: 48px 0 64px;
  padding: 0 16px;
  position: relative;
}

.pl-hero::before {
  display: none;
}

.pl-hero--card {
  padding: 0 16px;
}

.pl-hero--card::before {
  display: none;
}

.pl-hero__card {
  background: linear-gradient(135deg, #0b1f3a, #133b77);
  color: #fff;
  border-radius: 36px;
  box-shadow: 0 28px 64px rgba(8,25,47,.32);
  padding: clamp(64px, 8vw, 90px) clamp(24px, 7vw, 54px) clamp(48px, 6vw, 72px);
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.pl-hero__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 8vw, 78px);
  height: clamp(60px, 8vw, 78px);
  border-radius: 24px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

.pl-hero__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.18));
}

.pl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  font-weight: 700;
  letter-spacing: .02em;
}

.pl-hero__title {
  font-size: clamp(36px, 4.6vw, 56px);
  margin: 10px 0;
  color: #fff;
  font-weight: 800;
}

.pl-hero__lead {
  font-size: 1.15rem;
  max-width: 40rem;
  opacity: .88;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.9);
}

.pl-hero__chips {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pl-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 600;
  color: #fff;
}

.pl-hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pl-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: var(--paylinn-dark);
  color: #fff;
  cursor: pointer;
  transition: var(--paylinn-transition);
  box-shadow: 0 12px 24px rgba(11,31,58,.18);
}

.pl-btn:hover,
.pl-btn:focus {
  background: #071326;
  transform: translateY(-1px);
}

.pl-btn--primary {
  background: #2f6bff;
  box-shadow: 0 20px 44px rgba(47,107,255,.3);
}

.pl-btn--primary:hover,
.pl-btn--primary:focus {
  background: #1f56d8;
}

.pl-btn--ghost {
  background: linear-gradient(135deg, #b6bdcb, #858fa5);
  color: #0b1f3a;
  border: 2px solid #0b1f3a;
  box-shadow: 0 20px 40px rgba(11,31,58,.2);
}

.pl-btn--ghost:hover,
.pl-btn--ghost:focus {
  background: linear-gradient(135deg, #a0a7ba, #707a93);
  border-color: #0b1f3a;
}

.pl-hero .pl-btn--ghost {
  background: linear-gradient(135deg, #43495d, #1f2433);
  color: #fff;
  border-color: #0b1f3a;
  box-shadow: 0 26px 54px rgba(0,0,0,.38);
}

.pl-hero .pl-btn--ghost:hover,
.pl-hero .pl-btn--ghost:focus {
  background: linear-gradient(135deg, #3a4052, #181c28);
  border-color: #0b1f3a;
}

.pl-hero__visual {
  display: grid;
  gap: 16px;
  align-content: start;
}

.pl-hero__bubble {
  background: rgba(255,255,255,.92);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(11,31,58,.08);
  box-shadow: 0 14px 40px rgba(11,31,58,.12);
  display: grid;
  gap: 6px;
}

.pl-hero__bubble strong {
  font-size: 1.25rem;
  color: var(--paylinn-dark);
}

.pl-hero__bubble span {
  font-size: 0.95rem;
  opacity: .85;
}

.pl-hero__note {
  padding: 20px;
  border-radius: 20px;
  background: rgba(11,31,58,.08);
  color: var(--paylinn-dark);
  font-weight: 600;
  max-width: 320px;
}

.pl-metrics small {
  opacity: .75;
  display: block;
  margin-top: 8px;
}

.pl-section {
  margin: 72px 0;
  position: relative;
}

.pl-section--alt {
  background: rgba(255,255,255,.95);
  padding: 56px;
  border-radius: 32px;
  border: 1.5px solid #0b1f3a;
  box-shadow: 0 14px 36px rgba(11,31,58,.1);
}

.pl-section--soft {
  background: rgba(255,255,255,.78);
  padding: 52px;
  border-radius: 30px;
  border: 1.5px solid #0b1f3a;
  box-shadow: 0 12px 30px rgba(11,31,58,.08);
}

.pl-section--contact {
  background: rgba(255,255,255,.92);
  padding: 54px;
  border-radius: 30px;
  border: 1.5px solid #0b1f3a;
  box-shadow: 0 14px 32px rgba(11,31,58,.1);
}

.pl-section__header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.pl-section__header h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 12px;
  color: var(--paylinn-dark);
  text-align: center;
}

.pl-section__header p {
  margin: 0;
  opacity: .8;
  font-size: 1.05rem;
}

h1,
h2,
h3,
h4 {
  text-align: center;
}

.pl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.pl-grid--cards {
  gap: 28px;
}

.pl-grid--cards .pl-card {
  text-align: center;
  border: 1.5px solid #0b1f3a;
}

.pl-grid--cards .pl-card p {
  text-align: center;
}

.pl-grid--icons .pl-card {
  text-align: center;
}

.pl-grid--metrics {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.pl-card {
  background: rgba(255,255,255,.9);
  border-radius: 24px;
  padding: 26px;
  border: 1.5px solid #0b1f3a;
  box-shadow: 0 12px 28px rgba(11,31,58,.08);
}

.pl-card--soft {
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 24px rgba(11,31,58,.06);
  border: 1.5px solid #0b1f3a;
}

.pl-card h3,
.pl-card h4 {
  margin: 0 0 10px;
  color: var(--paylinn-dark);
  text-align: center;
}

.pl-card p {
  margin: 0;
  opacity: .8;
}

.pl-emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 10px;
}

.pl-card--metric {
  display: grid;
  gap: 10px;
  place-items: center;
  padding: 28px 24px;
}

.pl-card--metric strong {
  font-size: clamp(26px, 3.8vw, 42px);
  color: var(--paylinn-dark);
}

.pl-card--metric span {
  font-size: .98rem;
  opacity: .75;
}

.pl-journey {
  display: grid;
  gap: 32px;
  align-items: center;
}

.pl-journey--illustrated {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.pl-journey__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.pl-journey__orbit {
  width: clamp(220px, 38vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(18,59,118,.12)), linear-gradient(135deg, rgba(11,31,58,.95), rgba(24,74,136,.8));
  box-shadow: 0 30px 68px rgba(11,31,58,.3);
  position: relative;
  overflow: hidden;
}

.pl-journey__planet {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.9), rgba(255,255,255,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
}

.pl-journey__planet img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pl-journey__spark {
  position: absolute;
  bottom: 14%;
  right: 16%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,255,255,0));
  box-shadow: 0 0 24px rgba(255,255,255,.45);
  animation: pl-journey-pulse 3.4s ease-in-out infinite;
}

.pl-journey__timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 36px;
}

.pl-journey__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 2px;
  background: linear-gradient(180deg, rgba(11,31,58,.1), rgba(18,59,118,.3));
}


.pl-journey__step {
  background: rgba(255,255,255,.95);
  border: 1.5px solid #0b1f3a;
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 16px 32px rgba(11,31,58,.12);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pl-journey__icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11,31,58,.1), rgba(18,59,118,.28));
  border: 1.5px solid #0b1f3a;
  box-shadow: 0 10px 22px rgba(11,31,58,.18);
}

.pl-journey__text h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  text-align: left;
}

.pl-journey__text p {
  margin: 0;
  opacity: .78;
  text-align: left;
}

.pl-section__cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

@keyframes pl-journey-pulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.12); opacity: 1; }
}

.pl-section__note {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: .98rem;
  opacity: .7;
  text-align: center;
}

.pl-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.pl-contact-card {
  background: rgba(255,255,255,.95);
  border: 1.5px solid #0b1f3a;
  border-radius: 22px;
  padding: 26px 20px;
  box-shadow: 0 12px 26px rgba(11,31,58,.08);
  text-align: center;
}

.pl-contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: var(--paylinn-gradient);
  font-size: 1.6rem;
}
.pl-contact-card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(11,31,58,.2));
}

.pl-contact-card h3 {
  margin-bottom: 6px;
}

.pl-contact-card p {
  margin: 0;
  font-weight: 600;
}

.pl-contact-card a {
  color: inherit;
  text-decoration: none;
}

.pl-contact-card a:hover,
.pl-contact-card a:focus {
  text-decoration: underline;
}

.pl-columns {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  align-items: start;
}

.pl-quote {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: var(--paylinn-gradient);
  color: var(--paylinn-dark);
  font-style: italic;
  box-shadow: 0 18px 40px rgba(11,31,58,.1);
}

.pl-quote span {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(11,31,58,.15);
}

.pl-subtitle {
  margin: 48px 0 22px;
  font-size: 1.4rem;
  color: var(--paylinn-dark);
}

.pl-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.pl-compare__item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,31,58,.08);
  box-shadow: 0 12px 24px rgba(11,31,58,.08);
}

.pl-compare__item strong {
  display: block;
  color: var(--paylinn-dark);
  margin-bottom: 8px;
}

.pl-section--form {
  background: rgba(255,255,255,.95);
  padding: 60px;
  border-radius: 34px;
  border: 1px solid rgba(11,31,58,.1);
  box-shadow: 0 18px 44px rgba(11,31,58,.12);
}

.pl-form-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: start;
}

.pl-form {
  display: grid;
  gap: 22px;
}

.pl-form__step {
  border: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.pl-form__step legend {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--paylinn-dark);
}

.pl-form__hint {
  margin: 0 0 6px;
  font-size: .95rem;
  opacity: .7;
}

.pl-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.pl-form input {
  border-radius: 12px;
  border: 1px solid rgba(11,31,58,.14);
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
}

.pl-form input:focus {
  outline: 2px solid rgba(11,31,58,.4);
  outline-offset: 2px;
}

.pl-form__controls {
  display: flex;
  gap: 12px;
}

.pl-form__controls .pl-btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pl-form__progress {
  height: 6px;
  background: rgba(11,31,58,.08);
  border-radius: 999px;
  overflow: hidden;
}

.pl-form__progress span {
  display: block;
  height: 100%;
  width: 33%;
  background: var(--paylinn-dark);
  transition: width .4s ease;
}

.pl-form__summary {
  background: rgba(11,31,58,.05);
  border-radius: 16px;
  padding: 16px;
  font-size: .95rem;
  line-height: 1.5;
}

.pl-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
}

.pl-chatbot__toggle {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: var(--paylinn-dark);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(11,31,58,.2);
  position: relative;
  transition: transform .3s ease;
}

.pl-chatbot__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 20px rgba(11,31,58,.22);
}

.pl-chatbot__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pl-chatbot__ping {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ff7a59;
  box-shadow: 0 0 0 0 rgba(255,122,89,.5);
  opacity: 0;
  transition: opacity .3s ease;
}

@keyframes pl-chatbot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,122,89,.45); }
  70% { box-shadow: 0 0 0 12px rgba(255,122,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,89,0); }
}

@keyframes pl-chatbot-bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(2px); }
}

.pl-chatbot.is-nudging .pl-chatbot__toggle {
  animation: pl-chatbot-bounce 1.8s ease-in-out infinite;
}

.pl-chatbot.is-nudging .pl-chatbot__ping {
  opacity: 1;
  animation: pl-chatbot-pulse 2.2s ease-out infinite;
}

.pl-chatbot__panel[hidden] {
  display: none !important;
}

.pl-chatbot__panel {
  position: absolute;
  bottom: 86px;
  right: 0;
  width: clamp(280px, 32vw, 360px);
  background: rgba(255,255,255,.97);
  border-radius: 24px;
  border: 1px solid rgba(11,31,58,.12);
  box-shadow: 0 18px 40px rgba(11,31,58,.18);
  padding: 28px 20px 20px;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.pl-chatbot__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  color: rgba(11,31,58,.55);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.pl-chatbot__close-icon {
  display: inline-flex;
  transform: rotate(90deg);
}

.pl-chatbot__close:hover,
.pl-chatbot__close:focus {
  color: var(--paylinn-dark);
}

.pl-chatbot__header {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.pl-chatbot__header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--paylinn-dark);
}

.pl-chatbot__header p {
  margin: 4px 0 0;
  opacity: .8;
}

.pl-chatbot__header p:empty {
  display: none;
}

.pl-chatbot__suggestions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.pl-chatbot__suggestion {
  border: 1.5px solid #0B1F3A;
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 600;
  text-align: center;
  transition: background .2s ease, transform .2s ease;
}

.pl-chatbot__suggestion--action {
  grid-column: span 2;
}

.pl-chatbot__suggestion:hover,
.pl-chatbot__suggestion:focus {
  background: rgba(11,31,58,.08);
  transform: translateY(-1px);
}

.pl-chatbot__messages {
  max-height: 220px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
}

.pl-chatbot__messages .message {
  padding: 10px 12px;
  border-radius: 16px;
  font-size: .95rem;
  line-height: 1.45;
  white-space: pre-line;
}

.pl-chatbot__messages .message.user {
  justify-self: end;
  background: var(--paylinn-dark);
  color: #fff;
}

.pl-chatbot__messages .message.bot {
  justify-self: start;
  background: rgba(11,31,58,.08);
  color: var(--paylinn-dark);
}

.pl-chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.pl-chatbot__form input {
  border-radius: 12px;
  border: 1px solid rgba(11,31,58,.14);
  padding: 10px 12px;
}

.pl-chatbot__form .pl-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
}

.pl-lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(11,31,58,.12);
}

.pl-lang-switch a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 999px;
  color: var(--paylinn-dark);
  transition: background .3s ease, color .3s ease;
}

.pl-lang-switch a.is-current {
  background: var(--paylinn-dark);
  color: #fff;
}

.pl-footer {
  margin-top: 80px;
  background: var(--paylinn-dark);
  color: #fff;
  padding: 60px 0 30px;
}

.pl-footer .pl-container {
  color: inherit;
}

.pl-foot {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.pl-foot-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.pl-foot-links a {
  color: #fff;
  text-decoration: none;
  opacity: .85;
}

.pl-foot-links a:hover {
  opacity: 1;
}

.pl-ln {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
}

.pl-ln svg {
  transform: translateY(1px);
}

@media (max-width: 980px) {
  .pl-hero {
    margin: 36px 0 52px;
  }

  .pl-hero__card {
    border-radius: 28px;
    padding: 56px 24px 46px;
  }

  .pl-section--alt,
  .pl-section--contact {
    padding: 40px 24px;
  }

  .pl-journey--illustrated {
    grid-template-columns: 1fr;
  }

  .pl-journey__visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .pl-journey__timeline {
    padding-left: 28px;
  }

  .pl-journey__timeline::before {
    left: 10px;
  }

  .pl-chatbot {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 640px) {
  .pl-hero__card {
    border-radius: 24px;
  }

  .pl-btn {
    width: 100%;
  }

  .pl-cta-row,
  .pl-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pl-metrics {
    grid-template-columns: 1fr;
  }

  .pl-journey__timeline {
    padding-left: 22px;
  }

  .pl-journey__timeline::before {
    left: 6px;
  }
}