:root {
  --pa-black: #000000;
  --pa-bg: #0e0e0e;
  --pa-surface: #131313;
  --pa-surface-2: #1c1b1b;
  --pa-surface-3: #242424;
  --pa-surface-4: #353534;
  --pa-red: #e31b23;
  --pa-red-dark: #b81218;
  --pa-white: #ffffff;
  --pa-text: #f4f4f4;
  --pa-muted: #b8b8b8;
  --pa-dim: #7c7c7c;
  --pa-red-muted: #dedede;
  --pa-line: #4a4a4a;
  --pa-line-soft: rgba(255, 255, 255, 0.12);
  --pa-max: 1440px;
  --pa-pad: clamp(24px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--pa-black);
  color: var(--pa-text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--pa-black);
  color: var(--pa-text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.pa-lucide {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pa-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--pa-pad);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
}

.pa-logo {
  color: var(--pa-red);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.pa-desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.pa-desktop-nav a,
.pa-lang a,
.pa-lang span {
  color: var(--pa-muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.pa-desktop-nav a:hover,
.pa-lang a:hover {
  color: var(--pa-white);
}

.pa-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pa-lang a:first-child {
  color: var(--pa-red);
  font-weight: 900;
}

.pa-menu-button {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pa-menu-button span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--pa-white);
  transition: transform 160ms linear, opacity 160ms linear, background 160ms linear;
}

.pa-menu-button.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--pa-red);
}

.pa-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.pa-menu-button.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--pa-red);
}

.pa-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 96px 24px 40px;
  background: var(--pa-black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms linear;
}

.pa-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pa-mobile-menu__links {
  display: grid;
  gap: 26px;
  text-align: center;
}

.pa-mobile-menu a,
.pa-mobile-menu span {
  color: var(--pa-muted);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.pa-mobile-menu .pa-mobile-lang a,
.pa-mobile-menu .pa-mobile-lang span {
  font-size: 22px;
}

.pa-mobile-menu .pa-mobile-lang a:first-child {
  color: var(--pa-red);
  font-weight: 900;
}

.pa-section {
  padding: clamp(72px, 10vw, 144px) var(--pa-pad);
}

.pa-section--dark {
  background: var(--pa-bg);
  color: var(--pa-text);
}

.pa-section--black {
  background: var(--pa-black);
  color: var(--pa-text);
}

.pa-section--red {
  background: var(--pa-red);
  color: var(--pa-white);
}

.pa-inner {
  width: min(100%, var(--pa-max));
  margin: 0 auto;
}

.pa-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--pa-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pa-kicker::before {
  content: "";
  width: 56px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.pa-section--red .pa-kicker {
  color: var(--pa-red-muted);
}

.pa-heading-xl,
.pa-heading-lg,
.pa-heading-md {
  margin: 0;
  color: var(--pa-white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

.pa-title-mark {
  color: var(--pa-red);
}

.pa-section--red .pa-title-mark {
  color: var(--pa-black);
}

.pa-heading-xl {
  max-width: 1080px;
  font-size: clamp(56px, 10vw, 148px);
  line-height: 0.92;
}

.pa-heading-lg {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
}

.pa-heading-md {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1;
}

.pa-copy,
.pa-copy-lg {
  color: var(--pa-muted);
  font-weight: 500;
  line-height: 1.55;
}

.pa-copy {
  font-size: 18px;
}

.pa-copy-lg {
  font-size: clamp(20px, 2.2vw, 32px);
}

.pa-section-quote {
  max-width: 360px;
  margin: 0;
  color: var(--pa-dim);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 700;
  line-height: 1.55;
}

.pa-section--red .pa-section-quote {
  color: var(--pa-red-muted);
}

.pa-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.pa-section-intro > :first-child {
  min-width: 0;
  max-width: 100%;
}

.pa-section-intro .pa-heading-xl,
.pa-section-intro .pa-heading-lg {
  max-width: 100%;
  font-size: clamp(52px, 7vw, 116px);
}

.pa-section-intro .pa-section-quote {
  justify-self: end;
}

.pa-red-copy {
  color: var(--pa-red-muted);
}

.pa-section--red .pa-copy,
.pa-section--red .pa-copy-lg {
  color: var(--pa-red-muted);
}

.pa-section--red .pa-link-button,
.pa-section--red .pa-button {
  color: var(--pa-white);
}

.pa-hero-red {
  min-height: min(720px, calc(100svh - 88px));
  display: flex;
  align-items: center;
}

.pa-hero-image {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--pa-black);
}

.pa-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.42;
}

.pa-hero-image .pa-inner {
  position: relative;
  z-index: 1;
}

.pa-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.pa-two-col > *,
.pa-capability-grid > *,
.pa-grid-2 > *,
.pa-grid-3 > *,
.pa-grid-4 > * {
  min-width: 0;
}

.pa-grid-2,
.pa-grid-3,
.pa-grid-4 {
  display: grid;
  gap: 24px;
}

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

.pa-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.pa-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(250px, auto);
  gap: 18px;
}

.pa-bento-card {
  min-width: 0;
  min-height: 300px;
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  background: var(--pa-surface);
  border: 1px solid var(--pa-line-soft);
}

.pa-section--red .pa-bento-card {
  background: rgba(150, 0, 7, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.pa-bento-card--wide {
  grid-column: span 8;
}

.pa-bento-card--narrow {
  grid-column: span 4;
}

.pa-bento-card--half {
  grid-column: span 6;
}

.pa-bento-card .pa-heading-md {
  font-size: clamp(30px, 3vw, 54px);
  line-height: 0.98;
}

.pa-bento-card .pa-copy,
.pa-bento-card .pa-red-copy {
  max-width: 560px;
  font-size: clamp(16px, 1.15vw, 20px);
}

.pa-red-offer {
  display: grid;
  gap: 8px;
  margin-top: clamp(48px, 6vw, 84px);
}

.pa-red-offer__value {
  color: var(--pa-red-muted);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.pa-card {
  background: var(--pa-surface);
  border: 1px solid var(--pa-line);
}

.pa-card__image {
  height: 340px;
  overflow: hidden;
  background: var(--pa-surface-2);
}

.pa-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.12);
}

.pa-card__body {
  padding: clamp(24px, 3vw, 40px);
}

.pa-image-overlay-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--pa-black);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pa-image-overlay-card .pa-card__image {
  position: absolute;
  inset: 0;
  height: 100%;
}

.pa-image-overlay-card .pa-card__image::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.88));
  pointer-events: none;
}

.pa-image-overlay-card .pa-card__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: contrast(1.05) saturate(0.82);
  opacity: 0.92;
}

.pa-image-overlay-card .pa-card__image .pa-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.pa-image-overlay-card .pa-card__image .pa-slide.is-active {
  opacity: 0.92;
}

.pa-image-overlay-card .pa-card__body {
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 56px);
  z-index: 1;
  padding: 0;
  max-width: 560px;
}

.pa-image-overlay-card .pa-red-copy,
.pa-image-overlay-card .pa-copy {
  color: rgba(255, 255, 255, 0.78);
}

.pa-slide-dots {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.pa-slide-dot {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
}

.pa-slide-dot.is-active {
  background: var(--pa-red);
}

.pa-gray-feature-card {
  position: relative;
  min-height: 720px;
  padding: clamp(44px, 7vw, 104px);
  overflow: hidden;
  background: var(--pa-surface-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--pa-white);
}

.pa-gray-feature-card .pa-kicker {
  gap: 28px;
  color: var(--pa-red);
}

.pa-gray-feature-card .pa-kicker::before {
  width: 72px;
  height: 3px;
}

.pa-gray-feature-card .pa-heading-lg {
  max-width: 1080px;
  margin-top: clamp(56px, 6vw, 88px);
  font-size: clamp(56px, 7vw, 132px);
  line-height: 0.96;
}

.pa-gray-feature-card .pa-copy-lg {
  max-width: 760px;
  margin-top: clamp(36px, 4vw, 64px);
  color: var(--pa-muted);
}

.pa-gray-feature-card .pa-context-icon {
  color: rgba(255, 255, 255, 0.05);
  opacity: 1;
}

.pa-offer-strip {
  max-width: 1180px;
  margin-top: clamp(72px, 8vw, 116px);
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--pa-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--pa-red);
}

.pa-offer-strip__value {
  margin: 0;
  color: var(--pa-white);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.pa-offer-strip__label {
  margin: 14px 0 0;
  color: var(--pa-muted);
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pa-offer-strip__meta {
  margin: 12px 0 0;
  color: var(--pa-dim);
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pa-feature {
  border-top: 2px solid var(--pa-line);
  padding-top: 28px;
}

.pa-icon-box {
  width: max-content;
  height: auto;
  display: block;
  margin-bottom: 24px;
  border: 0;
  background: transparent;
  color: var(--pa-red);
}

.pa-icon-box .pa-lucide {
  width: 36px;
  height: 36px;
  stroke-width: 2;
}

.pa-capability-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(32px, 6vw, 80px);
}

.pa-red-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(150, 0, 7, 0.16);
  padding: clamp(24px, 4vw, 42px);
  color: var(--pa-white);
  overflow: hidden;
}

.pa-red-card .pa-lucide {
  color: var(--pa-white);
  margin-bottom: 28px;
}

.pa-red-card .pa-heading-md {
  overflow-wrap: normal;
  word-break: normal;
}

.pa-context-icon {
  position: absolute;
  top: clamp(22px, 3vw, 44px);
  right: clamp(22px, 3vw, 44px);
  width: clamp(96px, 13vw, 188px);
  height: clamp(96px, 13vw, 188px);
  opacity: 0.16;
  color: var(--pa-white);
  pointer-events: none;
}

.pa-section--black .pa-context-icon,
.pa-section--dark .pa-context-icon {
  color: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.pa-red-card--context {
  min-height: 420px;
}

.pa-red-card--context > :not(.pa-context-icon) {
  position: relative;
  z-index: 1;
}

.pa-media-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(72px, 10vw, 132px);
}

.pa-media-row--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.pa-media {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--pa-line);
  overflow: hidden;
  background: var(--pa-surface-2);
}

.pa-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.pa-media-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 18px 22px;
  background: var(--pa-black);
  border-top: 1px solid var(--pa-line);
  border-right: 1px solid var(--pa-line);
  color: var(--pa-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pa-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.pa-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pa-line);
  color: var(--pa-text);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pa-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pa-gallery-feature {
  grid-column: 1 / -1;
}

.pa-gallery-item {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--pa-line);
  background: var(--pa-black);
}

.pa-gallery-feature {
  min-height: 480px;
}

.pa-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.pa-gallery-label {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: min(80%, 520px);
  padding: 22px 26px;
  background: var(--pa-red);
  color: var(--pa-white);
}

.pa-section--red .pa-gallery-label {
  background: var(--pa-black);
}

.pa-gallery-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px 18px;
  background: var(--pa-black);
  color: var(--pa-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pa-project-index {
  border-top: 1px solid var(--pa-line);
}

.pa-project-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--pa-line);
}

.pa-project-row strong {
  color: var(--pa-white);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
}

.pa-project-row span,
.pa-project-row button {
  color: var(--pa-muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pa-link-button,
.pa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--pa-white);
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.pa-link-button:hover,
.pa-button:hover {
  opacity: 0.78;
}

.pa-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 72px var(--pa-pad);
  background: var(--pa-black);
}

.pa-footer__brand {
  color: var(--pa-red);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.pa-footer p,
.pa-footer a,
.pa-footer span {
  color: var(--pa-dim);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pa-footer h2 {
  margin: 0 0 16px;
  color: var(--pa-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pa-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.pa-footer__stack {
  display: grid;
  gap: 10px;
}

.pa-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.pa-assistant__panel {
  display: none;
  width: min(380px, calc(100vw - 32px));
  padding: 22px;
  background: var(--pa-black);
  border: 1px solid var(--pa-line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.pa-assistant.is-open .pa-assistant__panel {
  display: block;
}

.pa-assistant__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.pa-assistant__close {
  border: 0;
  background: transparent;
  color: var(--pa-muted);
  cursor: pointer;
}

.pa-assistant__options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.pa-assistant__options button {
  width: 100%;
  border: 1px solid var(--pa-line);
  background: var(--pa-surface);
  color: var(--pa-muted);
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.pa-assistant__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--pa-line);
  background: var(--pa-surface-2);
  color: var(--pa-white);
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.pa-assistant__toggle .pa-lucide,
.pa-assistant__close .pa-lucide,
.pa-link-button .pa-lucide {
  width: 20px;
  height: 20px;
}

.pa-assistant__toggle:hover {
  opacity: 0.82;
}

@media (max-width: 1199px) {
  .pa-desktop-nav {
    display: none;
  }

  .pa-menu-button {
    display: block;
  }

  .pa-two-col,
  .pa-capability-grid,
  .pa-media-row,
  .pa-media-row--reverse {
    grid-template-columns: 1fr;
  }

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

  .pa-bento-card,
  .pa-bento-card--wide,
  .pa-bento-card--narrow,
  .pa-bento-card--half {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .pa-footer {
    grid-template-columns: 1fr;
  }

  .pa-grid-3,
  .pa-grid-4,
  .pa-gallery {
    grid-template-columns: 1fr;
  }

  .pa-grid-2 {
    grid-template-columns: 1fr;
  }

  .pa-section-intro {
    grid-template-columns: 1fr;
  }

  .pa-section-intro .pa-section-quote {
    justify-self: end;
    text-align: left;
  }

  .pa-media-row--reverse .pa-media {
    order: 2;
  }

  .pa-media {
    min-height: 380px;
  }

  .pa-gallery-feature,
  .pa-gallery-item {
    min-height: 320px;
  }

  .pa-project-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .pa-header {
    height: 64px;
  }

  .pa-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .pa-hero-red {
    min-height: min(560px, calc(100svh - 64px));
  }

  .pa-heading-xl {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.96;
  }

  .pa-heading-lg {
    font-size: clamp(36px, 10vw, 48px);
  }

  .pa-red-card .pa-heading-md {
    font-size: clamp(30px, 8.5vw, 34px);
    line-height: 0.98;
  }

  .pa-bento {
    grid-template-columns: 1fr;
  }

  .pa-bento-card {
    min-height: 240px;
  }

  .pa-bento-card .pa-heading-md {
    font-size: clamp(28px, 10vw, 40px);
  }

  .pa-section-quote {
    max-width: 310px;
    margin-left: auto;
  }

  .pa-copy-lg {
    font-size: 20px;
  }

  .pa-card__image {
    height: 260px;
  }

  .pa-footer__links {
    grid-template-columns: 1fr;
  }

  .pa-assistant {
    right: 16px;
    bottom: 16px;
  }

  .pa-assistant__toggle {
    padding: 13px 15px;
  }

  .pa-assistant__toggle .pa-assistant-word {
    display: none;
  }
}

/* Heading SM */
.pa-heading-sm {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--pa-white);
  margin: 0;
  overflow-wrap: break-word;
}

/* Split Compare (Problem / Solution) */
.pa-split-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--pa-line-soft);
  border: 1px solid var(--pa-line-soft);
  margin-bottom: 80px;
}

.pa-split-compare__col {
  padding: clamp(32px, 5vw, 64px);
  background: var(--pa-surface);
}

.pa-compare-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  font-size: 15px;
  color: var(--pa-muted);
}

.pa-compare-list li {
  display: flex;
  gap: 12px;
}

.pa-compare-list__warn {
  color: var(--pa-red);
  font-weight: bold;
  flex-shrink: 0;
}

.pa-compare-list__ok {
  color: var(--pa-red);
  font-weight: bold;
  flex-shrink: 0;
}

/* Process Step */
.pa-process-step {
  position: relative;
  padding-top: 40px;
}

.pa-process-step__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--pa-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}

.pa-process-step p {
  font-size: 14px;
  color: var(--pa-muted);
  line-height: 1.6;
}

/* Red Glass Card (Pricing Drivers) */
.pa-glass-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pa-glass-card__number {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  opacity: 0.5;
}

.pa-glass-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pa-split-compare {
    grid-template-columns: 1fr;
  }
}

/* Material Showcase Card */
.pa-mat-card { position: relative; overflow: hidden; cursor: pointer; }
.pa-mat-card__img { aspect-ratio: 3/4; overflow: hidden; }
.pa-mat-card__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter 0.7s, transform 0.7s; }
.pa-mat-card:hover .pa-mat-card__img img { filter: grayscale(0); transform: scale(1.08); }
.pa-mat-card__label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); }

/* Tier Card System */
.pa-tier-card { padding: clamp(24px, 3vw, 40px); background: var(--pa-surface); border: 1px solid var(--pa-line-soft); position: relative; display: flex; flex-direction: column; height: 100%; }
.pa-tier-card__bar { position: absolute; top: 0; left: 0; width: 100%; height: 3px; }
.pa-tier-card__badge { position: absolute; top: 12px; right: 12px; background: rgba(227,27,35,0.1); color: var(--pa-red); font-size: 11px; font-weight: 800; padding: 4px 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.pa-tier-card--highlight { background: linear-gradient(135deg, rgba(227,27,35,0.08), rgba(227,27,35,0.02)); }

.pa-tier-list { list-style: none; padding: 0; margin: 0 0 24px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pa-tier-list__yes, .pa-tier-list__no { padding-left: 28px; position: relative; font-size: 14px; color: var(--pa-muted); }
.pa-tier-list__yes::before, .pa-tier-list__no::before { position: absolute; left: 0; top: 1px; font-size: 14px; font-weight: 700; }
.pa-tier-list__yes::before { content: "✓"; color: var(--pa-red); }
.pa-tier-list__no::before { content: "✗"; color: var(--pa-surface-4); }
.pa-tier-list__no { color: var(--pa-surface-4); }

.pa-tier-cta { width: 100%; padding: 12px; border: 1px solid var(--pa-line-soft); background: var(--pa-surface); color: var(--pa-white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: background 0.2s; margin-top: auto; display: block; text-align: center; text-decoration: none; }
.pa-tier-cta:hover { background: rgba(255, 255, 255, 0.08); }
.pa-tier-cta--red { border-color: rgba(227, 27, 35, 0.3); background: rgba(227, 27, 35, 0.1); color: var(--pa-red); }
.pa-tier-cta--red:hover { background: rgba(227, 27, 35, 0.2); }
.pa-tier-cta--solid { border: none; background: var(--pa-red); color: #fff; }
.pa-tier-cta--solid:hover { opacity: 0.85; }

/* Before & After Slider */
.pa-slider { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; cursor: ew-resize; user-select: none; border: 1px solid var(--pa-line-soft); }
.pa-slider__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.pa-slider__overlay { position: absolute; inset: 0; width: 50%; height: 100%; overflow: hidden; border-right: 2px solid var(--pa-red); z-index: 2; }
.pa-slider__overlay-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; max-width: none; }
.pa-slider__handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background: var(--pa-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(227, 27, 35, 0.5); pointer-events: none; z-index: 10; }
.pa-slider__handle::before, .pa-slider__handle::after { content: ""; border: solid white; border-width: 0 2px 2px 0; display: inline-block; padding: 3px; }
.pa-slider__handle::before { transform: rotate(135deg); margin-right: -2px; }
.pa-slider__handle::after { transform: rotate(-45deg); margin-left: -2px; }

/* SEO Tag */
.pa-seo-tag { padding: 8px 16px; font-size: 14px; border: 1px solid var(--pa-line-soft); color: var(--pa-muted); cursor: pointer; transition: color 0.2s, border-color 0.2s; display: inline-block; text-decoration: none; }
.pa-seo-tag:hover { color: var(--pa-white); border-color: var(--pa-surface-4); }

/* ── Assistant Panel: Input ─────────────────────────────────── */
.pa-assistant__input {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--pa-line);
  background: var(--pa-surface);
}

.pa-assistant__input input {
  flex: 1;
  min-width: 0;
  padding: 14px;
  border: 0;
  background: transparent;
  color: var(--pa-white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.pa-assistant__input input::placeholder {
  color: var(--pa-dim);
}

.pa-assistant__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: var(--pa-muted);
  cursor: pointer;
}

.pa-assistant__send:hover {
  color: var(--pa-white);
}

.pa-assistant__send .pa-lucide {
  width: 20px;
  height: 20px;
}

/* ── Booking Modal ──────────────────────────────────────────── */
.pa-booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  overflow-y: auto;
}

.pa-booking-overlay.pa-booking-open {
  opacity: 1;
  pointer-events: auto;
}

.pa-booking-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.pa-booking-card {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 24px auto;
  background: var(--pa-surface-2);
  border: 1px solid var(--pa-line);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  transform: translateY(20px);
  transition: transform 200ms ease;
}

.pa-booking-open .pa-booking-card {
  transform: translateY(0);
}

.pa-booking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: var(--pa-surface-3);
  border-bottom: 1px solid var(--pa-line);
}

.pa-booking-title {
  margin: 0;
  color: var(--pa-white);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.pa-booking-subtitle {
  margin: 10px 0 0;
  color: var(--pa-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.pa-booking-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--pa-line);
  background: var(--pa-surface);
  color: var(--pa-muted);
  cursor: pointer;
}

.pa-booking-close:hover {
  color: var(--pa-white);
  border-color: var(--pa-red);
}

.pa-booking-body {
  padding: 28px 32px 32px;
  display: grid;
  gap: 28px;
}

.pa-booking-field { display: grid; gap: 10px; }

.pa-booking-label {
  color: var(--pa-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Inquiry type pills */
.pa-booking-type-group {
  display: flex;
  gap: 0;
  border: 1px solid var(--pa-line);
}

.pa-booking-type {
  flex: 1;
  cursor: pointer;
}

.pa-booking-type input { display: none; }

.pa-booking-type span {
  display: block;
  padding: 14px 16px;
  text-align: center;
  color: var(--pa-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--pa-surface);
  border-right: 1px solid var(--pa-line);
  transition: background 150ms, color 150ms;
}

.pa-booking-type:last-child span { border-right: 0; }

.pa-booking-type input:checked + span {
  background: rgba(227, 27, 35, 0.12);
  color: var(--pa-red);
  border-color: var(--pa-line);
}

/* Calendar */
.pa-booking-calendar-wrap {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 0;
  border: 1px solid var(--pa-line);
}

.pa-booking-calendar {
  padding: 20px;
  background: var(--pa-surface);
}

.pa-booking-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pa-booking-cal-nav button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--pa-line);
  background: var(--pa-surface-2);
  color: var(--pa-white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pa-booking-cal-nav button:hover { border-color: var(--pa-red); }

.pa-booking-cal-nav strong {
  color: var(--pa-white);
  font-size: 15px;
  font-weight: 800;
}

.pa-booking-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.pa-booking-cal-days span {
  text-align: center;
  color: var(--pa-dim);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px;
}

.pa-booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.pa-cal-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pa-white);
}

.pa-cal-empty { visibility: hidden; }

.pa-cal-disabled {
  color: var(--pa-dim);
  opacity: 0.4;
}

.pa-cal-available {
  background: var(--pa-surface-3);
  border: 1px solid var(--pa-line);
  cursor: pointer;
}

.pa-cal-available:hover {
  border-color: var(--pa-red);
  background: rgba(227, 27, 35, 0.08);
}

.pa-cal-selected {
  background: var(--pa-red) !important;
  color: var(--pa-white) !important;
  border: none;
}

/* Time panel */
.pa-booking-time-panel {
  padding: 20px;
  background: var(--pa-surface-2);
  border-left: 1px solid var(--pa-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pa-booking-time-date {
  color: var(--pa-muted);
  font-size: 13px;
  font-weight: 700;
}

.pa-booking-time-slots {
  display: grid;
  gap: 8px;
}

.pa-time-btn {
  padding: 10px 14px;
  border: 1px solid var(--pa-line);
  background: var(--pa-surface);
  color: var(--pa-muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.pa-time-btn:hover {
  border-color: var(--pa-red);
  color: var(--pa-white);
}

.pa-time-active {
  background: rgba(227, 27, 35, 0.12) !important;
  border-color: var(--pa-red) !important;
  color: var(--pa-red) !important;
}

/* Textarea & Input */
.pa-booking-textarea,
.pa-booking-input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--pa-line);
  background: var(--pa-surface);
  color: var(--pa-white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: vertical;
}

.pa-booking-textarea:focus,
.pa-booking-input:focus {
  border-color: var(--pa-red);
}

.pa-booking-textarea::placeholder,
.pa-booking-input::placeholder {
  color: var(--pa-dim);
}

/* Dropzone */
.pa-booking-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
  padding: 24px;
  border: 2px dashed var(--pa-line);
  background: var(--pa-surface);
  color: var(--pa-dim);
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
}

.pa-booking-dropzone:hover,
.pa-dropzone-active {
  border-color: var(--pa-red);
  background: rgba(227, 27, 35, 0.04);
}

.pa-booking-dropzone p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.pa-booking-file-list {
  margin: 4px 0 0;
  color: var(--pa-muted);
  font-size: 13px;
  font-weight: 600;
  word-break: break-all;
}

/* Contact grid */
.pa-booking-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pa-booking-full { grid-column: 1 / -1; }

/* Submit */
.pa-booking-submit {
  width: 100%;
  padding: 18px;
  border: 0;
  background: var(--pa-red);
  color: var(--pa-white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 150ms;
}

.pa-booking-submit:hover { opacity: 0.85; }
.pa-booking-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Booking modal responsive */
@media (max-width: 700px) {
  .pa-booking-overlay { padding: 12px; }
  .pa-booking-header { padding: 20px; }
  .pa-booking-body { padding: 20px; }
  .pa-booking-calendar-wrap { grid-template-columns: 1fr; }
  .pa-booking-time-panel { border-left: 0; border-top: 1px solid var(--pa-line); }
  .pa-booking-contact-grid { grid-template-columns: 1fr; }
  .pa-booking-type-group { flex-direction: column; }
  .pa-booking-type span { border-right: 0; border-bottom: 1px solid var(--pa-line); }
  .pa-booking-type:last-child span { border-bottom: 0; }
}
