:root {
  --pwd-red: #e9204f;
  --pwd-red-dark: #c7123e;
  --pwd-ink: #101010;
  --pwd-charcoal: #17171a;
  --pwd-muted: #66666d;
  --pwd-line: #dedee4;
  --pwd-soft: #f5f5f7;
  --pwd-white: #ffffff;
  --pwd-radius: 24px;
  --pwd-shadow: 0 24px 80px rgba(16, 16, 16, 0.09);
  --pwd-sticky-header-height: 104px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  color: var(--pwd-ink);
  background: var(--pwd-white);
}

.pwd-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;
}

.pwd-eyebrow {
  margin: 0 0 18px;
  color: var(--pwd-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pwd-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pwd-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.pwd-button:focus-visible,
.pwd-text-link:focus-visible,
.pwd-page-nav a:focus-visible,
.pwd-service-links a:focus-visible,
.pwd-contact-link:focus-visible,
.pwd-faq summary:focus-visible,
.pwd-table-wrap:focus-visible {
  outline: 3px solid rgba(233, 32, 79, 0.4);
  outline-offset: 4px;
}

.pwd-button-primary {
  color: var(--pwd-white);
  background: var(--pwd-red);
}

.pwd-button-primary:hover {
  color: var(--pwd-white);
  background: var(--pwd-red-dark);
}

.pwd-button-call {
  box-shadow: 0 12px 34px rgba(233, 32, 79, 0.3);
}

.pwd-button-call span {
  font-size: 1.15rem;
  line-height: 1;
}

.pwd-button-ghost {
  color: var(--pwd-white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.04);
}

.pwd-button-ghost:hover {
  color: var(--pwd-white);
  border-color: var(--pwd-white);
  background: rgba(255, 255, 255, 0.1);
}

.pwd-button-dark {
  color: var(--pwd-white);
  background: var(--pwd-ink);
}

.pwd-button-dark:hover {
  color: var(--pwd-white);
  background: var(--pwd-red);
}

.pwd-button-light {
  color: var(--pwd-ink);
  background: var(--pwd-white);
}

.pwd-button-light:hover {
  color: var(--pwd-white);
  background: var(--pwd-red);
}

.pwd-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 190px 0 96px;
  color: var(--pwd-white);
  background:
    radial-gradient(circle at 78% 25%, rgba(233, 32, 79, 0.16), transparent 31%),
    linear-gradient(135deg, #0a0a0b 0%, #17171a 55%, #0d0d0f 100%);
}

.pwd-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -33vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.015), 0 0 0 160px rgba(255, 255, 255, 0.01);
  content: "";
  pointer-events: none;
}

.pwd-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.pwd-hero-glow-one {
  top: 17%;
  right: 9%;
  width: 220px;
  height: 220px;
  background: rgba(233, 32, 79, 0.13);
}

.pwd-hero-glow-two {
  bottom: 9%;
  left: 42%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.045);
}

.pwd-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.pwd-hero-copy h1 {
  max-width: 1100px;
  margin: 0;
  color: var(--pwd-white);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pwd-hero-lead {
  max-width: 760px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.pwd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.pwd-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.pwd-service-tags li {
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1;
}

.pwd-page-nav {
  position: sticky;
  z-index: 1020;
  top: var(--pwd-sticky-header-height);
  overflow-x: auto;
  border-bottom: 1px solid var(--pwd-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(16, 16, 16, 0.04);
  -webkit-overflow-scrolling: touch;
}

.pwd-page-nav .container {
  display: flex;
  min-width: max-content;
  justify-content: center;
}

.pwd-page-nav a {
  display: inline-flex;
  padding: 1.15rem 1.3rem;
  color: #4a4a50;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.pwd-page-nav a:hover {
  color: var(--pwd-red);
  text-decoration: none;
}

.pwd-packages-overview,
.pwd-addons,
.pwd-seo-content,
.pwd-faq {
  padding: clamp(82px, 10vw, 140px) 0;
}

.pwd-section-heading {
  max-width: 810px;
  margin-bottom: 56px;
}

.pwd-section-heading h2,
.pwd-seo-heading h2 {
  margin: 0;
  color: var(--pwd-ink);
  font-size: clamp(2.35rem, 4.8vw, 4.65rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.pwd-section-heading > p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--pwd-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pwd-package-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pwd-package-payment {
  padding: 26px 4px 0;
  margin-top: 30px;
  border-top: 1px solid var(--pwd-line);
}

.pwd-package-payment p {
  margin: 0;
}

.pwd-payment-note {
  color: var(--pwd-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.pwd-payment-note span {
  margin-right: 5px;
  color: var(--pwd-red);
  font-size: 1rem;
  font-weight: 800;
}

.pwd-payment-discount {
  margin-top: 10px !important;
  color: var(--pwd-ink);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.pwd-payment-discount strong {
  color: var(--pwd-red);
  font-weight: 800;
}

.pwd-package-summary {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid var(--pwd-line);
  border-radius: var(--pwd-radius);
  background: var(--pwd-white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pwd-package-summary:hover {
  z-index: 2;
  border-color: rgba(233, 32, 79, 0.45);
  box-shadow: var(--pwd-shadow);
  transform: translateY(-7px);
}

.pwd-package-featured {
  color: var(--pwd-white);
  border-color: var(--pwd-ink);
  background: var(--pwd-ink);
}

.pwd-package-featured:hover {
  border-color: var(--pwd-red);
}

.pwd-popular-badge {
  position: absolute;
  top: 24px;
  right: -38px;
  width: 168px;
  padding: 8px 0;
  color: var(--pwd-white);
  background: var(--pwd-red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(40deg);
}

.pwd-package-index {
  display: block;
  margin-bottom: 44px;
  color: var(--pwd-red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pwd-package-kicker {
  min-height: 2.8em;
  margin: 0 0 8px;
  color: var(--pwd-muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pwd-package-featured .pwd-package-kicker {
  color: rgba(255, 255, 255, 0.56);
}

.pwd-package-summary h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.pwd-package-price {
  margin: 24px 0;
  color: var(--pwd-ink);
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
}

.pwd-package-featured .pwd-package-price {
  color: var(--pwd-white);
}

.pwd-package-price small {
  display: block;
  margin-top: 8px;
  color: var(--pwd-muted);
  font-size: 0.7rem;
  font-weight: 500;
}

.pwd-package-featured .pwd-package-price small {
  color: rgba(255, 255, 255, 0.54);
}

.pwd-package-positioning {
  min-height: 5.5em;
  margin: 0;
  color: var(--pwd-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.pwd-package-featured .pwd-package-positioning {
  color: rgba(255, 255, 255, 0.68);
}

.pwd-mini-list {
  padding: 24px 0 0;
  margin: 26px 0 30px;
  border-top: 1px solid var(--pwd-line);
  list-style: none;
}

.pwd-package-featured .pwd-mini-list {
  border-color: rgba(255, 255, 255, 0.15);
}

.pwd-mini-list li {
  position: relative;
  padding-left: 20px;
  margin-top: 11px;
  color: #44444a;
  font-size: 0.86rem;
  line-height: 1.45;
}

.pwd-package-featured .pwd-mini-list li {
  color: rgba(255, 255, 255, 0.72);
}

.pwd-mini-list li::before {
  position: absolute;
  top: 0.56em;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pwd-red);
  content: "";
}

.pwd-text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  color: var(--pwd-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.pwd-package-featured .pwd-text-link {
  color: var(--pwd-white);
}

.pwd-text-link:hover {
  color: var(--pwd-red);
  text-decoration: none;
}

.pwd-text-link span {
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.pwd-text-link:hover span {
  transform: translateX(5px);
}

.pwd-package-details {
  padding: clamp(40px, 7vw, 90px) 0 clamp(90px, 11vw, 160px);
  background: var(--pwd-soft);
}

.pwd-detail-card {
  position: relative;
  padding: clamp(30px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid #e0e0e5;
  border-radius: 32px;
  background: var(--pwd-white);
  box-shadow: 0 12px 50px rgba(16, 16, 16, 0.045);
}

.pwd-detail-card + .pwd-detail-card {
  margin-top: 32px;
}

.pwd-detail-featured {
  border: 2px solid var(--pwd-red);
}

.pwd-detail-pro {
  color: var(--pwd-white);
  border-color: var(--pwd-ink);
  background: var(--pwd-ink);
}

.pwd-detail-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.85rem 1.3rem;
  border-radius: 0 30px 0 16px;
  color: var(--pwd-white);
  background: var(--pwd-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pwd-detail-header {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--pwd-line);
}

.pwd-detail-pro .pwd-detail-header {
  border-color: rgba(255, 255, 255, 0.14);
}

.pwd-detail-index {
  display: block;
  margin-bottom: 14px;
  color: var(--pwd-red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pwd-detail-header h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pwd-detail-tagline {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--pwd-muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.pwd-detail-pro .pwd-detail-tagline {
  color: rgba(255, 255, 255, 0.62);
}

.pwd-detail-price {
  flex: 0 0 auto;
  text-align: right;
}

.pwd-detail-price strong {
  display: block;
  color: var(--pwd-red);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pwd-detail-price span {
  display: block;
  margin-top: 8px;
  color: var(--pwd-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.pwd-detail-pro .pwd-detail-price span {
  color: rgba(255, 255, 255, 0.46);
}

.pwd-detail-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 46px 0;
}

.pwd-detail-intro p {
  margin: 0;
  color: #4d4d54;
  font-size: 1rem;
  line-height: 1.75;
}

.pwd-detail-pro .pwd-detail-intro p {
  color: rgba(255, 255, 255, 0.67);
}

.pwd-detail-pro .pwd-detail-intro .pwd-standard-included {
  padding: 22px 24px;
  border-left: 3px solid var(--pwd-red);
  color: var(--pwd-white);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.pwd-detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 36px;
  margin-bottom: 40px;
}

.pwd-includes,
.pwd-feature-group {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--pwd-line);
  border-radius: 18px;
  background: var(--pwd-soft);
}

.pwd-includes h3,
.pwd-feature-group h3 {
  margin: 0 0 26px;
  color: inherit;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pwd-check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pwd-check-list li {
  position: relative;
  padding-left: 27px;
  color: #4b4b51;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pwd-check-list li + li {
  margin-top: 13px;
}

.pwd-check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pwd-white);
  background: var(--pwd-red);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
}

.pwd-package-facts {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--pwd-line);
  border-radius: 18px;
  background: var(--pwd-white);
}

.pwd-package-facts > div {
  flex: 1;
  padding: 26px 28px;
}

.pwd-package-facts > div + div {
  border-top: 1px solid var(--pwd-line);
}

.pwd-package-facts span,
.pwd-facts-row span {
  display: block;
  margin-bottom: 10px;
  color: var(--pwd-red);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pwd-package-facts strong,
.pwd-facts-row strong {
  color: var(--pwd-ink);
  font-size: 1.25rem;
  line-height: 1.3;
}

.pwd-package-facts p,
.pwd-facts-row p {
  margin: 0;
  color: #525258;
  font-size: 0.88rem;
  line-height: 1.65;
}

.pwd-package-facts .pwd-result,
.pwd-facts-row .pwd-result {
  background: #fff1f4;
}

.pwd-feature-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.pwd-detail-pro .pwd-feature-group {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
}

.pwd-detail-pro .pwd-check-list li {
  color: rgba(255, 255, 255, 0.69);
}

.pwd-feature-group-wide {
  grid-column: 1 / -1;
}

.pwd-check-list-horizontal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pwd-check-list-horizontal li + li {
  margin-top: 0;
}

.pwd-facts-row {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 1.2fr;
  margin: 0 0 40px;
  overflow: hidden;
  border: 1px solid var(--pwd-line);
  border-radius: 18px;
}

.pwd-facts-row > div {
  padding: 28px;
}

.pwd-facts-row > div + div {
  border-left: 1px solid var(--pwd-line);
}

.pwd-detail-pro .pwd-facts-row {
  border-color: rgba(255, 255, 255, 0.14);
}

.pwd-detail-pro .pwd-facts-row > div + div {
  border-color: rgba(255, 255, 255, 0.14);
}

.pwd-detail-pro .pwd-facts-row p,
.pwd-detail-pro .pwd-facts-row strong {
  color: rgba(255, 255, 255, 0.74);
}

.pwd-detail-pro .pwd-facts-row .pwd-result {
  background: rgba(233, 32, 79, 0.12);
}

.pwd-comparison {
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--pwd-white);
  background: #111113;
}

.pwd-section-heading-light h2 {
  color: var(--pwd-white);
}

.pwd-section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.pwd-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  -webkit-overflow-scrolling: touch;
}

.pwd-table-wrap table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.pwd-table-wrap th,
.pwd-table-wrap td {
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}

.pwd-table-wrap tr:last-child th,
.pwd-table-wrap tr:last-child td {
  border-bottom: 0;
}

.pwd-table-wrap th:last-child,
.pwd-table-wrap td:last-child {
  border-right: 0;
}

.pwd-table-wrap thead th {
  padding-top: 25px;
  padding-bottom: 25px;
  color: var(--pwd-white);
  font-weight: 800;
}

.pwd-table-wrap thead th span {
  display: block;
  margin-top: 7px;
  color: var(--pwd-red);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pwd-table-wrap tbody th,
.pwd-table-wrap thead th:first-child {
  position: sticky;
  z-index: 1;
  left: 0;
  min-width: 230px;
  color: var(--pwd-white);
  background: #17171a;
  font-weight: 700;
  text-align: left;
}

.pwd-table-wrap .pwd-table-featured {
  color: var(--pwd-white);
  background: rgba(233, 32, 79, 0.1);
}

.pwd-vat-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.pwd-addons {
  background: var(--pwd-soft);
}

.pwd-addon-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.pwd-addon-card {
  display: flex;
  grid-column: span 2;
  min-height: 350px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--pwd-line);
  border-radius: 22px;
  background: var(--pwd-white);
  box-shadow: 0 12px 42px rgba(16, 16, 16, 0.045);
}

.pwd-addon-card:nth-child(n + 4) {
  grid-column: span 3;
}

.pwd-addon-label {
  min-height: 2.8em;
  color: var(--pwd-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pwd-addon-card h3 {
  margin: 30px 0 0;
  color: var(--pwd-ink);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pwd-addon-price {
  margin: 20px 0;
  color: var(--pwd-ink);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.pwd-addon-price small {
  display: block;
  margin-top: 8px;
  color: var(--pwd-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0;
}

.pwd-addon-card > p:last-child {
  margin: auto 0 0;
  color: var(--pwd-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.pwd-addon-card-dark {
  color: var(--pwd-white);
  border-color: var(--pwd-ink);
  background: var(--pwd-ink);
}

.pwd-addon-card-dark h3,
.pwd-addon-card-dark .pwd-addon-price {
  color: var(--pwd-white);
}

.pwd-addon-card-dark .pwd-addon-price small,
.pwd-addon-card-dark > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.pwd-addon-card.pwd-addon-card-progressive {
  position: relative;
  grid-column: 1 / -1;
  min-height: 0;
  overflow: hidden;
  color: var(--pwd-white);
  border-color: var(--pwd-ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(233, 32, 79, 0.3), transparent 34%),
    var(--pwd-ink);
}

.pwd-addon-card-progressive::after {
  position: absolute;
  right: -95px;
  bottom: -155px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018);
  content: "";
  pointer-events: none;
}

.pwd-addon-card-progressive .pwd-addon-label {
  min-height: 0;
  color: var(--pwd-red-bright);
}

.pwd-addon-progressive-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  margin-top: 34px;
}

.pwd-addon-card-progressive h3 {
  margin: 0;
  color: var(--pwd-white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.pwd-addon-card-progressive .pwd-addon-price {
  color: var(--pwd-white);
}

.pwd-addon-card-progressive .pwd-addon-price small,
.pwd-addon-progressive-intro > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.pwd-addon-progressive-intro > p:last-child {
  max-width: 470px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.pwd-addon-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pwd-addon-spec li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.55;
}

.pwd-addon-spec li::before {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--pwd-red-bright);
  content: "✓";
  font-weight: 800;
}

.pwd-addon-note {
  margin: 22px 0 0;
  color: var(--pwd-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.pwd-seo-content {
  background: var(--pwd-white);
}

.pwd-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 9vw, 130px);
}

.pwd-seo-heading {
  position: sticky;
  top: 150px;
  align-self: start;
}

.pwd-seo-copy > p {
  margin: 0;
  color: #4d4d54;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.8;
}

.pwd-seo-copy > p + p {
  margin-top: 26px;
}

.pwd-service-links {
  margin-top: 42px;
  border-top: 1px solid var(--pwd-line);
}

.pwd-service-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  border-bottom: 1px solid var(--pwd-line);
  color: var(--pwd-ink);
  font-size: 0.96rem;
  font-weight: 800;
}

.pwd-service-links a:hover {
  color: var(--pwd-red);
  text-decoration: none;
}

.pwd-service-links span {
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.pwd-service-links a:hover span {
  transform: translateX(5px);
}

.pwd-faq {
  background: var(--pwd-soft);
}

.pwd-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(45px, 8vw, 110px);
}

.pwd-faq-grid .pwd-section-heading {
  margin-bottom: 0;
}

.pwd-faq-list {
  border-top: 1px solid #d8d8de;
}

.pwd-faq details {
  border-bottom: 1px solid #d8d8de;
}

.pwd-faq summary {
  position: relative;
  padding: 26px 54px 26px 0;
  color: var(--pwd-ink);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

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

.pwd-faq summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfd5;
  border-radius: 50%;
  color: var(--pwd-red);
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.pwd-faq details[open] summary::after {
  content: "−";
}

.pwd-faq details p {
  padding: 0 54px 28px 0;
  margin: 0;
  color: var(--pwd-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.pwd-faq details p a {
  color: var(--pwd-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pwd-final-cta {
  position: relative;
  padding: clamp(84px, 10vw, 140px) 0;
  overflow: hidden;
  color: var(--pwd-white);
  background:
    radial-gradient(circle at 88% 16%, rgba(233, 32, 79, 0.2), transparent 30%),
    var(--pwd-ink);
}

.pwd-final-cta::after {
  position: absolute;
  right: -90px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.pwd-final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 50px;
  align-items: end;
}

.pwd-final-cta h2 {
  margin: 0;
  color: var(--pwd-white);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pwd-final-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pwd-final-actions .pwd-button {
  width: 100%;
  margin-bottom: 24px;
}

.pwd-contact-link {
  display: inline-block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
}

.pwd-contact-link:hover {
  color: var(--pwd-white);
  text-decoration: none;
}

.pwd-floating-call {
  position: fixed;
  z-index: 1040;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 64px;
  gap: 12px;
  align-items: center;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--pwd-white);
  background: var(--pwd-red);
  box-shadow: 0 16px 42px rgba(16, 16, 16, 0.28);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.pwd-floating-call:hover {
  color: var(--pwd-white);
  background: var(--pwd-red-dark);
  box-shadow: 0 18px 48px rgba(16, 16, 16, 0.34);
  text-decoration: none;
  transform: translateY(-3px);
}

.pwd-floating-call:focus-visible {
  outline: 3px solid rgba(233, 32, 79, 0.42);
  outline-offset: 4px;
}

.pwd-floating-call-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pwd-red);
  background: var(--pwd-white);
  font-size: 1.16rem;
}

.pwd-floating-call-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.pwd-floating-call-copy small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pwd-floating-call-copy strong {
  color: var(--pwd-white);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .pwd-package-summary {
    padding: 30px;
  }

  .pwd-package-positioning {
    min-height: 7em;
  }
}

@media (max-width: 991px) {
  .pwd-hero {
    min-height: auto;
    padding-top: 160px;
  }

  .pwd-hero-inner,
  .pwd-seo-grid,
  .pwd-faq-grid,
  .pwd-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .pwd-page-nav .container {
    justify-content: flex-start;
  }

  .pwd-package-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pwd-addon-card,
  .pwd-addon-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .pwd-addon-card:last-child {
    grid-column: 1 / -1;
  }

  .pwd-addon-progressive-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pwd-package-summary:last-child {
    grid-column: 1 / -1;
    min-height: 480px;
  }

  .pwd-package-positioning {
    min-height: 5.5em;
  }

  .pwd-detail-columns {
    grid-template-columns: 1fr;
  }

  .pwd-facts-row {
    grid-template-columns: 1fr;
  }

  .pwd-facts-row > div + div {
    border-top: 1px solid var(--pwd-line);
    border-left: 0;
  }

  .pwd-detail-pro .pwd-facts-row > div + div {
    border-color: rgba(255, 255, 255, 0.14);
  }

  .pwd-seo-heading {
    position: static;
  }

  .pwd-final-actions {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 76px;
  }

  .pwd-hero {
    padding: 132px 0 72px;
  }

  .pwd-hero::after {
    right: -35vw;
    bottom: -10vw;
    width: 100vw;
    height: 100vw;
  }

  .pwd-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
    line-height: 0.98;
  }

  .pwd-hero-lead {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .pwd-hero-actions {
    flex-direction: column;
  }

  .pwd-hero-actions .pwd-button {
    width: 100%;
  }

  .pwd-service-tags {
    margin-top: 30px;
  }

  .pwd-page-nav .container {
    padding-right: 0;
    padding-left: 0;
  }

  .pwd-page-nav a {
    padding: 1rem;
  }

  .pwd-package-cards,
  .pwd-addon-grid,
  .pwd-detail-intro,
  .pwd-feature-groups,
  .pwd-check-list-horizontal {
    grid-template-columns: 1fr;
  }

  .pwd-package-summary,
  .pwd-package-summary:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .pwd-addon-card:last-child {
    grid-column: auto;
  }

  .pwd-addon-spec {
    grid-template-columns: 1fr;
  }

  .pwd-package-positioning,
  .pwd-package-kicker {
    min-height: 0;
  }

  .pwd-package-summary .pwd-text-link {
    margin-top: 10px;
  }

  .pwd-detail-card {
    border-radius: 22px;
  }

  .pwd-detail-ribbon {
    border-radius: 0 20px 0 14px;
  }

  .pwd-detail-header {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
  }

  .pwd-detail-price {
    text-align: left;
  }

  .pwd-detail-intro {
    margin: 34px 0;
  }

  .pwd-feature-group-wide {
    grid-column: auto;
  }

  .pwd-table-wrap {
    margin-right: -15px;
    border-radius: 16px 0 0 16px;
  }

  .pwd-table-wrap th,
  .pwd-table-wrap td {
    padding: 17px 18px;
  }

  .pwd-table-wrap tbody th,
  .pwd-table-wrap thead th:first-child {
    min-width: 190px;
  }

  .pwd-faq summary {
    padding-right: 48px;
  }

  .pwd-faq details p {
    padding-right: 12px;
  }

  .pwd-final-cta h2 br {
    display: none;
  }

  .pwd-floating-call {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
    min-height: 60px;
    padding: 8px 18px;
  }

  .pwd-floating-call-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .pwd-floating-call-copy small {
    display: none;
  }

  .pwd-floating-call-copy strong {
    font-size: 0.96rem;
  }
}

@media (max-width: 420px) {
  .pwd-package-summary,
  .pwd-detail-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .pwd-detail-card {
    margin-right: -4px;
    margin-left: -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
