/* ==========================================================================
   PrimeLink — website styles
   Fonts: Archivo (display), Instrument Sans (body), JetBrains Mono (labels)
   Every class is prefixed "pl-" so it won't collide with WordPress or plugins.
   ========================================================================== */

:root {
  --pl-ink: #0D1014;
  --pl-ink-2: #161B21;
  --pl-ink-line: #232A33;
  --pl-ink-line-2: #2F3842;
  --pl-map: #12171D;
  --pl-bone: #F2F0EB;
  --pl-paper: #FAF9F6;
  --pl-white: #FFFFFF;
  --pl-line: #D9D5CC;
  --pl-line-2: #CFCAC0;
  --pl-line-3: #E3DFD7;
  --pl-text-2: #3A3F46;
  --pl-muted: #5A5F66;
  --pl-muted-dark: #9AA1AA;
  --pl-soft: #C9CDD2;
  --pl-footer-link: #E6E4DF;
  --pl-signal: #FF5B1F;
  --pl-signal-hover: #FF7440;
  --pl-signal-deep: #B83A0A;
  --pl-field: #8A8E94;

  --pl-display: 'Archivo', 'Arial Narrow', sans-serif;
  --pl-body: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --pl-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --pl-gutter: 80px;
  --pl-section: 128px;
  --pl-radius: 4px;
  --pl-header-h: 88px;
}

@media (max-width: 1200px) { :root { --pl-gutter: 48px; --pl-section: 104px; } }
@media (max-width: 960px)  { :root { --pl-gutter: 32px; --pl-section: 88px; --pl-header-h: 72px; } }
@media (max-width: 640px)  { :root { --pl-gutter: 20px; --pl-section: 72px; } }

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--pl-bone); }

.pl-site {
  position: relative;
  font-family: var(--pl-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--pl-ink);
  background: var(--pl-bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
.pl-site *, .pl-site *::before, .pl-site *::after { box-sizing: border-box; }
:where(.pl-site) img { display: block; max-width: 100%; }
:where(.pl-site) a { color: inherit; }
:where(.pl-site) h1, :where(.pl-site) h2, :where(.pl-site) h3, :where(.pl-site) h4,
:where(.pl-site) p, :where(.pl-site) dl, :where(.pl-site) dd, :where(.pl-site) figure { margin: 0; }
:where(.pl-site) ul, :where(.pl-site) ol { margin: 0; padding: 0; list-style: none; }
.pl-site :focus-visible { outline: 2px solid var(--pl-signal); outline-offset: 3px; }

.pl-i {
  width: 1em; height: 1em; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.pl-skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 12px 18px; background: var(--pl-signal); color: var(--pl-ink);
  font-weight: 600; text-decoration: none; border-radius: var(--pl-radius);
}
.pl-skip:focus { top: 16px; }

.pl-sr {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Layout ---------- */
.pl-container { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--pl-gutter); }
.pl-section { padding-block: var(--pl-section); }
.pl-section--tight-top { padding-top: calc(var(--pl-section) / 2); }
.pl-section--tight-bottom { padding-bottom: calc(var(--pl-section) / 2); }
.pl-section--flush-top { padding-top: 0; }
.pl-dark { background: var(--pl-ink); color: var(--pl-paper); }
.pl-bone { background: var(--pl-bone); }
.pl-paper { background: var(--pl-paper); }
.pl-rule-top { border-top: 1px solid var(--pl-line); }
.pl-gap-top { margin-top: 64px; }
@media (max-width: 640px) { .pl-gap-top { margin-top: 44px; } }

/* ---------- Type ---------- */
.pl-display {
  font-family: var(--pl-display);
  font-stretch: 108%;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.pl-h1 { font-size: clamp(42px, 5.3vw, 76px); line-height: 0.98; letter-spacing: -0.035em; }
.pl-h2 { font-size: clamp(36px, 4.2vw, 60px); line-height: 1.02; }
.pl-h2--56 { font-size: clamp(34px, 3.9vw, 56px); }
.pl-h2--52 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.04; }
.pl-h2--48 { font-size: clamp(30px, 3.35vw, 48px); line-height: 1.04; }
.pl-h1 em, .pl-h2 em { font-style: normal; color: var(--pl-signal-deep); }
.pl-dark .pl-h1 em, .pl-dark .pl-h2 em { color: var(--pl-signal); }

.pl-lead { font-size: 18px; line-height: 1.6; color: var(--pl-muted); }
.pl-dark .pl-lead { color: var(--pl-muted-dark); }

.pl-mono {
  font-family: var(--pl-mono); font-size: 12px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
}

.pl-label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pl-muted);
}
.pl-label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pl-signal); flex-shrink: 0; }
.pl-label__line { width: 28px; height: 1px; background: var(--pl-ink); flex-shrink: 0; }
.pl-dark .pl-label { color: var(--pl-muted-dark); }
.pl-dark .pl-label__line { background: var(--pl-muted-dark); }
.pl-label + .pl-h1, .pl-label + .pl-h2 { margin-top: 28px; }

/* ---------- Buttons & links ---------- */
.pl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 56px; padding: 0 28px;
  border: 1px solid transparent; border-radius: var(--pl-radius);
  font-family: var(--pl-body); font-size: 16px; font-weight: 600; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.pl-btn .pl-i { width: 18px; height: 18px; stroke-width: 2; transition: transform .2s ease; }
.pl-btn:hover .pl-i { transform: translateX(3px); }
.pl-btn--signal { background: var(--pl-signal); color: var(--pl-ink); }
.pl-btn--signal:hover { background: var(--pl-signal-hover); color: var(--pl-ink); }
.pl-btn--ink { background: var(--pl-ink); color: var(--pl-paper); }
.pl-btn--ink:hover { background: #262D36; color: var(--pl-paper); }
.pl-btn--ghost { border-color: rgba(250, 249, 246, 0.4); color: var(--pl-paper); }
.pl-btn--ghost:hover { border-color: var(--pl-paper); color: var(--pl-paper); }
.pl-btn--outline { border: 1.5px solid var(--pl-ink); color: var(--pl-ink); }
.pl-btn--outline:hover { background: var(--pl-ink); color: var(--pl-paper); }
.pl-btn--sm { height: 44px; padding: 0 20px; font-size: 15px; gap: 10px; }
.pl-btn--sm .pl-i { width: 16px; height: 16px; }
.pl-btn--block { width: 100%; }
.pl-btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

.pl-arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--pl-signal-deep); text-decoration: none;
}
.pl-arrow-link .pl-i { width: 16px; height: 16px; stroke-width: 2; transition: transform .2s ease; }
.pl-arrow-link:hover { color: var(--pl-ink); }
.pl-arrow-link:hover .pl-i { transform: translateX(3px); }
.pl-dark .pl-arrow-link { color: var(--pl-signal); }
.pl-dark .pl-arrow-link:hover { color: var(--pl-paper); }

/* ---------- Header ---------- */
.pl-header {
  position: relative; z-index: 50;
  background: var(--pl-bone); color: var(--pl-ink);
  border-bottom: 1px solid var(--pl-line);
}
.pl-header--overlay {
  position: absolute; top: 0; left: 0; right: 0;
  background: transparent; color: var(--pl-paper);
  border-bottom-color: rgba(250, 249, 246, 0.1);
}
.pl-header__bar { height: var(--pl-header-h); display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.pl-logo { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.pl-logo svg { width: 30px; height: 30px; flex-shrink: 0; }
.pl-logo__word { font-family: var(--pl-display); font-stretch: 118%; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }

.pl-nav { display: flex; align-items: center; gap: 40px; font-size: 15px; font-weight: 500; }
.pl-nav__link {
  padding: 12px 0; color: var(--pl-text-2); text-decoration: none;
  border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.pl-nav__link:hover { color: var(--pl-ink); }
.pl-nav__link.is-active { color: var(--pl-ink); font-weight: 600; border-bottom-color: var(--pl-signal); }
.pl-header--overlay .pl-nav__link { color: var(--pl-soft); }
.pl-header--overlay .pl-nav__link:hover,
.pl-header--overlay .pl-nav__link.is-active { color: var(--pl-paper); }
.pl-nav__cta { display: none; }

.pl-header__actions { display: flex; align-items: center; gap: 28px; }
.pl-header__phone { font-family: var(--pl-mono); font-size: 13px; color: var(--pl-muted); text-decoration: none; }
.pl-header--overlay .pl-header__phone { color: var(--pl-soft); }

.pl-menu-toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  background: none; color: inherit; border: 1px solid currentColor; border-radius: var(--pl-radius);
  cursor: pointer;
}
.pl-menu-toggle .pl-i { width: 22px; height: 22px; stroke-width: 2; }
.pl-menu-toggle .pl-i--close { display: none; }
.pl-header.is-open .pl-menu-toggle .pl-i--menu { display: none; }
.pl-header.is-open .pl-menu-toggle .pl-i--close { display: block; }

@media (max-width: 960px) {
  .pl-menu-toggle { display: inline-flex; }
  .pl-header__phone { display: none; }
  .pl-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--pl-gutter) 28px;
    background: var(--pl-bone); border-bottom: 1px solid var(--pl-line);
    box-shadow: 0 24px 40px -24px rgba(13, 16, 20, 0.35);
  }
  .pl-header--overlay .pl-nav { background: var(--pl-ink); border-bottom-color: var(--pl-ink-line); }
  .pl-header.is-open .pl-nav { display: flex; }
  .pl-nav__link { padding: 16px 0; font-size: 18px; border-bottom: 1px solid var(--pl-line); }
  .pl-header--overlay .pl-nav__link { border-bottom-color: var(--pl-ink-line); }
  .pl-nav__link.is-active { border-bottom-color: var(--pl-line); color: var(--pl-signal-deep); }
  .pl-header--overlay .pl-nav__link.is-active { border-bottom-color: var(--pl-ink-line); color: var(--pl-signal); }
  .pl-nav__cta { display: inline-flex; margin-top: 24px; }
}
@media (max-width: 640px) {
  .pl-header__actions .pl-btn { display: none; }
  .pl-logo__word { font-size: 20px; }
}

/* ---------- Home hero ---------- */
.pl-hero { position: relative; background: var(--pl-ink); color: var(--pl-paper); overflow: hidden; }
.pl-hero__img { position: absolute; top: 0; right: 0; width: 72.2%; height: 100%; object-fit: cover; object-position: 70% center; }
.pl-hero__shade {
  position: absolute; top: 0; right: 0; bottom: 0; width: 72.2%;
  background: linear-gradient(90deg, var(--pl-ink) 0%, rgba(13, 16, 20, 0.72) 28%, rgba(13, 16, 20, 0) 62%);
}
.pl-hero__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 260px;
  background: linear-gradient(0deg, rgba(13, 16, 20, 0.92) 0%, rgba(13, 16, 20, 0) 100%);
}
.pl-hero__inner {
  position: relative; min-height: 880px;
  padding-top: calc(var(--pl-header-h) + 96px); padding-bottom: 72px;
  display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 56px; align-items: end;
}
.pl-hero__content { align-self: start; max-width: 840px; }
.pl-eyebrow {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-soft);
}
.pl-eyebrow::before { content: ""; width: 8px; height: 8px; margin-top: 4px; border-radius: 50%; background: var(--pl-signal); flex-shrink: 0; }
.pl-hero__title { margin-top: 32px; color: var(--pl-paper); }
.pl-hero__title em { font-style: normal; color: var(--pl-signal); }
.pl-hero__text { margin-top: 32px; max-width: 600px; font-size: clamp(17px, 1.35vw, 19px); line-height: 1.6; color: var(--pl-soft); }
.pl-hero .pl-btn-row { margin-top: 48px; }

.pl-linkcard {
  padding: 28px;
  background: rgba(13, 16, 20, 0.78);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(250, 249, 246, 0.14); border-radius: var(--pl-radius);
}
.pl-linkcard__title { font-family: var(--pl-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-muted-dark); }
.pl-linkcard__list { position: relative; margin-top: 22px; display: flex; flex-direction: column; gap: 20px; }
.pl-linkcard__list::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 30px; width: 1px; background: rgba(250, 249, 246, 0.24); }
.pl-linkcard__list li { position: relative; display: flex; gap: 20px; align-items: flex-start; }
.pl-node {
  margin-top: 5px; flex-shrink: 0; width: 11px; height: 11px; border-radius: 50%;
  background: var(--pl-signal); box-shadow: 0 0 0 4px rgba(255, 91, 31, 0.2);
}
.pl-linkcard strong { display: block; font-size: 16px; font-weight: 600; color: var(--pl-paper); }
.pl-linkcard__list span:not(.pl-node) { display: block; margin-top: 2px; font-size: 14px; color: var(--pl-muted-dark); }

@media (max-width: 1200px) {
  .pl-hero__inner { grid-template-columns: minmax(0, 1fr); min-height: 0; padding-top: calc(var(--pl-header-h) + 88px); }
  .pl-linkcard { max-width: 380px; }
}
@media (max-width: 960px) {
  .pl-hero__img, .pl-hero__shade { width: 100%; }
  .pl-hero__shade { background: linear-gradient(90deg, rgba(13, 16, 20, 0.94) 0%, rgba(13, 16, 20, 0.8) 55%, rgba(13, 16, 20, 0.6) 100%); }
  .pl-hero__inner { padding-top: calc(var(--pl-header-h) + 64px); padding-bottom: 56px; gap: 48px; }
}
@media (max-width: 640px) {
  .pl-hero .pl-btn-row .pl-btn { width: 100%; }
  .pl-linkcard { padding: 22px; }
}

/* ---------- Ticker ---------- */
.pl-ticker { height: 64px; display: flex; align-items: center; overflow: hidden; background: var(--pl-signal); color: var(--pl-ink); }
.pl-ticker__track { display: flex; width: max-content; animation: pl-marquee 48s linear infinite; }
.pl-ticker__group {
  display: flex; align-items: center; gap: 28px; padding-right: 28px; white-space: nowrap;
  font-family: var(--pl-mono); font-size: 14px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.pl-ticker__sep { width: 6px; height: 6px; flex-shrink: 0; background: var(--pl-ink); transform: rotate(45deg); }
.pl-ticker:hover .pl-ticker__track { animation-play-state: paused; }
@keyframes pl-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .pl-ticker__track { animation: none; } }

/* ---------- Section head ---------- */
.pl-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 80px; }
.pl-head__main { max-width: 760px; }
.pl-head__aside { width: 420px; flex-shrink: 0; }
.pl-head__aside .pl-arrow-link { margin-top: 20px; }
@media (max-width: 960px) {
  .pl-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .pl-head__aside { width: auto; max-width: 560px; }
}

/* ---------- Service cards (home) ---------- */
.pl-cards { margin-top: 72px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pl-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--pl-paper); border: 1px solid var(--pl-line); border-radius: var(--pl-radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pl-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(13, 16, 20, 0.35); }
.pl-card__media { position: relative; height: 300px; }
.pl-card__media img { width: 100%; height: 100%; object-fit: cover; }
.pl-card__num {
  position: absolute; top: 20px; left: 20px;
  display: inline-flex; align-items: center; height: 30px; padding: 0 12px;
  background: var(--pl-ink); color: var(--pl-paper); border-radius: 2px;
  font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.1em;
}
.pl-card__body { flex-grow: 1; display: flex; flex-direction: column; padding: 32px; }
.pl-card__eyebrow { font-family: var(--pl-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-signal-deep); }
.pl-card__title { margin-top: 12px; font-size: clamp(24px, 2.1vw, 30px); line-height: 1.08; letter-spacing: -0.02em; }
.pl-card__text { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--pl-muted); }
.pl-card .pl-arrow-link { margin-top: auto; padding-top: 28px; }

.pl-ticklist { margin-top: 24px; }
.pl-ticklist li { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--pl-line-3); font-size: 15px; }
.pl-ticklist li:last-child { border-bottom: 1px solid var(--pl-line-3); }
.pl-ticklist li::before { content: ""; width: 6px; height: 6px; flex-shrink: 0; background: var(--pl-signal); }
@media (max-width: 960px) { .pl-cards { grid-template-columns: minmax(0, 1fr); max-width: 680px; } }
@media (max-width: 640px) { .pl-card__media { height: 240px; } .pl-card__body { padding: 24px; } }

/* ---------- Why + process ---------- */
.pl-why { display: grid; grid-template-columns: 480px minmax(0, 1fr); gap: 96px; }
.pl-why .pl-lead { margin-top: 28px; }

.pl-cells {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px;
  background: var(--pl-ink-line); border: 1px solid var(--pl-ink-line);
}
.pl-cells--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pl-cells--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pl-cell { padding: 36px; background: var(--pl-ink); }
.pl-cell > .pl-i { width: 28px; height: 28px; color: var(--pl-signal); }
.pl-cell__title { margin-top: 28px; font-size: clamp(20px, 1.7vw, 24px); line-height: 1.15; letter-spacing: -0.02em; }
.pl-cell__text { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--pl-muted-dark); }
.pl-cell__top { display: flex; justify-content: space-between; align-items: center; }
.pl-cell__top .pl-i { width: 30px; height: 30px; }
.pl-cell__num { font-family: var(--pl-mono); font-size: 13px; color: var(--pl-signal-deep); }
.pl-cell__top + .pl-cell__title { margin-top: 48px; }
.pl-cell__kicker { font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-signal-deep); }
.pl-cell__kicker + .pl-cell__title { margin-top: 14px; font-size: 20px; line-height: 1.25; }

.pl-cells--light { background: var(--pl-line); border-color: var(--pl-line); }
.pl-cells--light .pl-cell { background: var(--pl-paper); }
.pl-cells--light .pl-cell > .pl-i { color: var(--pl-signal-deep); }
.pl-cells--light .pl-cell__text { color: var(--pl-muted); }

.pl-process { margin-top: 120px; padding-top: 48px; border-top: 1px solid var(--pl-ink-line); }
.pl-process__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px 24px; flex-wrap: wrap; }
.pl-process__title { font-size: clamp(26px, 2.3vw, 32px); letter-spacing: -0.02em; }
.pl-process__head .pl-mono { color: var(--pl-muted-dark); }
.pl-steps { position: relative; margin-top: 56px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.pl-steps::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: var(--pl-ink-line-2); }
.pl-step { position: relative; }
.pl-step__node { display: block; width: 17px; height: 17px; border-radius: 50%; background: var(--pl-ink); border: 2px solid var(--pl-signal); }
.pl-step:first-child .pl-step__node { background: var(--pl-signal); }
.pl-step .pl-mono { display: block; margin-top: 28px; color: var(--pl-signal); }
.pl-step__title { margin-top: 12px; font-size: 28px; letter-spacing: -0.02em; }
.pl-step__text { margin-top: 12px; max-width: 280px; font-size: 15px; line-height: 1.6; color: var(--pl-muted-dark); }

@media (max-width: 1200px) {
  .pl-why { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .pl-why .pl-lead { max-width: 640px; }
  .pl-process { margin-top: 88px; }
  .pl-cells--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .pl-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
  .pl-steps::before { display: none; }
  .pl-cells--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .pl-cells, .pl-cells--3, .pl-cells--4, .pl-steps { grid-template-columns: minmax(0, 1fr); }
  .pl-cell { padding: 28px 24px; }
}

/* ---------- Product bento ---------- */
.pl-bento { margin-top: 72px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: 300px 300px; gap: 16px; }
.pl-bento__feature {
  position: relative; grid-column: span 2; grid-row: span 2;
  overflow: hidden; border-radius: var(--pl-radius); background: var(--pl-ink); color: var(--pl-paper);
}
.pl-bento__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pl-bento__feature:hover img { transform: scale(1.03); }
.pl-bento__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13, 16, 20, 0) 38%, rgba(13, 16, 20, 0.9) 100%); }
.pl-bento__go {
  position: absolute; top: 24px; right: 24px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--pl-paper); color: var(--pl-ink);
}
.pl-bento__go .pl-i { width: 20px; height: 20px; stroke-width: 2; }
.pl-bento__content { position: absolute; left: 40px; right: 40px; bottom: 40px; }
.pl-bento__content .pl-mono { color: var(--pl-signal); }
.pl-bento__title { margin-top: 12px; font-size: clamp(32px, 3.1vw, 44px); line-height: 1.02; }
.pl-chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; }
.pl-chips li { padding: 7px 14px; border: 1px solid rgba(250, 249, 246, 0.4); border-radius: 999px; }

.pl-tile {
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  padding: 28px; background: var(--pl-paper); color: var(--pl-ink);
  border: 1px solid var(--pl-line); border-radius: var(--pl-radius); text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pl-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(13, 16, 20, 0.35); }
.pl-tile__top { display: flex; justify-content: space-between; align-items: flex-start; }
.pl-tile__icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: var(--pl-ink); color: var(--pl-signal); border-radius: var(--pl-radius);
}
.pl-tile__icon .pl-i { width: 26px; height: 26px; }
.pl-tile__arrow { width: 22px; height: 22px; color: var(--pl-muted); stroke-width: 1.8; }
.pl-tile__title { font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; }
.pl-tile__meta { margin-top: 10px; font-family: var(--pl-mono); font-size: 13px; line-height: 1.7; color: var(--pl-muted); }
.pl-tile--dark { background: var(--pl-ink); border-color: var(--pl-ink); color: var(--pl-paper); }
.pl-tile--dark .pl-tile__icon { background: var(--pl-signal); color: var(--pl-ink); }
.pl-tile--dark .pl-tile__meta, .pl-tile--dark .pl-tile__arrow { color: var(--pl-muted-dark); }

@media (max-width: 1100px) {
  .pl-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; grid-auto-rows: minmax(250px, auto); }
  .pl-bento__feature { grid-column: span 2; grid-row: auto; min-height: 460px; }
}
@media (max-width: 640px) {
  .pl-bento { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; }
  .pl-bento__feature { grid-column: auto; min-height: 420px; }
  .pl-bento__content { left: 24px; right: 24px; bottom: 24px; }
  .pl-tile { min-height: 230px; }
}

/* ---------- Forms ---------- */
.pl-form { position: relative; display: flex; flex-direction: column; gap: 20px; padding: 56px 48px; background: var(--pl-paper); }
.pl-form__title { font-size: clamp(24px, 2vw, 32px); letter-spacing: -0.02em; }
.pl-form__hint { margin-top: 8px; font-size: 14px; color: var(--pl-muted); }
.pl-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.pl-field { display: flex; flex-direction: column; gap: 8px; }
.pl-field label, .pl-fieldset legend { font-size: 13px; font-weight: 600; color: var(--pl-ink); }
.pl-input {
  width: 100%; height: 52px; padding: 0 16px;
  background: var(--pl-white); color: var(--pl-ink);
  border: 1px solid var(--pl-field); border-radius: var(--pl-radius);
  font-family: var(--pl-body); font-size: 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pl-input::placeholder { color: #767B82; }
.pl-input:focus { outline: none; border-color: var(--pl-ink); box-shadow: 0 0 0 3px rgba(255, 91, 31, 0.35); }
textarea.pl-input { height: 120px; padding: 14px 16px; line-height: 1.5; resize: vertical; }
textarea.pl-input--tall { height: 160px; }
.pl-select { position: relative; }
.pl-select select { -webkit-appearance: none; appearance: none; padding-right: 44px; }
.pl-select .pl-i { position: absolute; top: 17px; right: 16px; width: 18px; height: 18px; stroke-width: 2; pointer-events: none; }
.pl-form__note { font-size: 13px; line-height: 1.5; color: var(--pl-muted); }
.pl-form__success, .pl-form__error { display: none; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.pl-form__success .pl-i { width: 18px; height: 18px; stroke-width: 2.2; color: var(--pl-signal-deep); }
.pl-form__error { color: #A1260B; }
.pl-form.is-sent .pl-form__success, .pl-form__success.is-visible, .pl-form__error.is-visible { display: flex; }
.pl-form.is-sent .pl-form__note { display: none; }
.pl-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.pl-fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
.pl-fieldset legend { padding: 0; }
.pl-topics { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.pl-topic { position: relative; }
.pl-topic input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pl-topic span {
  display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 18px;
  background: var(--pl-white); color: var(--pl-ink);
  border: 1px solid var(--pl-field); border-radius: 999px;
  font-size: 15px; font-weight: 500; cursor: pointer; transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.pl-topic span:hover { border-color: var(--pl-ink); }
.pl-topic span .pl-i { display: none; width: 16px; height: 16px; stroke-width: 2.4; color: var(--pl-signal); }
.pl-topic input:checked + span { background: var(--pl-ink); color: var(--pl-paper); border-color: var(--pl-ink); font-weight: 600; }
.pl-topic input:checked + span .pl-i { display: block; }
.pl-topic input:focus-visible + span { outline: 2px solid var(--pl-signal); outline-offset: 2px; }

.pl-consent { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; color: var(--pl-text-2); cursor: pointer; }
.pl-consent input { flex-shrink: 0; width: 20px; height: 20px; margin: 0; accent-color: var(--pl-ink); }
.pl-form__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 24px; }
.pl-route { font-size: 14px; color: var(--pl-muted); }
.pl-route strong { font-weight: 600; color: var(--pl-ink); }

@media (max-width: 640px) {
  .pl-fields { grid-template-columns: minmax(0, 1fr); }
  .pl-form { padding: 32px 22px; }
  .pl-form__actions .pl-btn { width: 100%; }
}

/* ---------- Quote block (home) ---------- */
.pl-quote { display: grid; grid-template-columns: minmax(0, 1fr) 600px; overflow: hidden; background: var(--pl-ink); border-radius: var(--pl-radius); }
.pl-quote__info { display: flex; flex-direction: column; padding: 72px 64px; color: var(--pl-paper); }
.pl-quote__info .pl-lead { margin-top: 24px; max-width: 480px; }
.pl-dl { margin-top: auto; padding-top: 56px; }
.pl-dl > div { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-top: 1px solid var(--pl-ink-line); }
.pl-dl > div:last-child { border-bottom: 1px solid var(--pl-ink-line); }
.pl-dl dt { font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-muted-dark); }
.pl-dl dd { font-size: 16px; text-align: right; }
.pl-dl a { text-decoration: none; }
.pl-dl a:hover { color: var(--pl-signal); }
@media (max-width: 1100px) {
  .pl-quote { grid-template-columns: minmax(0, 1fr); }
  .pl-quote__info { padding: 56px 40px; }
  .pl-quote .pl-form { padding: 48px 40px; }
}
@media (max-width: 640px) {
  .pl-quote__info { padding: 40px 22px; }
  .pl-quote .pl-form { padding: 32px 22px; }
  .pl-dl > div { flex-direction: column; gap: 4px; }
  .pl-dl dd { text-align: left; }
}

/* ---------- CTA band ---------- */
.pl-cta { padding-block: 96px; background: var(--pl-signal); color: var(--pl-ink); }
.pl-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 40px 80px; }
.pl-cta__text { margin-top: 16px; font-size: 18px; line-height: 1.6; }
.pl-cta .pl-btn-row { flex-shrink: 0; }
@media (max-width: 960px) {
  .pl-cta { padding-block: 72px; }
  .pl-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Footer ---------- */
.pl-footer { padding-top: 96px; overflow: hidden; background: var(--pl-ink); color: var(--pl-paper); }
.pl-footer__grid { display: grid; grid-template-columns: 420px repeat(3, minmax(0, 1fr)); gap: 48px; }
.pl-footer__about { margin-top: 24px; max-width: 340px; font-size: 15px; line-height: 1.6; color: var(--pl-muted-dark); }
.pl-footer__heading { font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-muted-dark); }
.pl-footer__list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--pl-footer-link); }
.pl-footer__list a { color: var(--pl-footer-link); text-decoration: none; transition: color .2s ease; }
.pl-footer__list a:hover { color: var(--pl-signal); }
.pl-footer__bar {
  margin-top: 80px; padding: 24px 0; border-top: 1px solid var(--pl-ink-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px 32px;
  font-size: 13px; color: var(--pl-muted-dark);
}
.pl-footer__bar a { color: var(--pl-muted-dark); text-decoration: none; }
.pl-footer__bar a:hover { color: var(--pl-paper); }
.pl-footer__bar .pl-mono { letter-spacing: 0.08em; text-transform: none; }
.pl-footer__mark {
  margin-top: 8px; text-align: center; white-space: nowrap; user-select: none;
  font-family: var(--pl-display); font-stretch: 125%; font-weight: 800;
  font-size: clamp(72px, 14.7vw, 212px); line-height: 0.78; letter-spacing: -0.04em;
  color: #1A2028;
}
@media (max-width: 1100px) {
  .pl-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pl-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .pl-footer { padding-top: 72px; }
  .pl-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .pl-footer__bar { margin-top: 56px; flex-direction: column; }
}

/* ---------- Inner page hero ---------- */
.pl-pagehero { padding-top: 88px; }
.pl-pagehero--spaced { padding-bottom: 96px; }
.pl-crumbs { font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-muted); }
.pl-crumbs a { color: var(--pl-muted); text-decoration: none; }
.pl-crumbs a:hover { color: var(--pl-ink); }
.pl-crumbs__sep { padding: 0 10px; }
.pl-crumbs [aria-current] { color: var(--pl-ink); }
.pl-pagehero__row { margin-top: 40px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px 80px; }
.pl-pagehero__row .pl-h1 { max-width: 860px; }
.pl-pagehero__row .pl-lead { width: 360px; flex-shrink: 0; }
@media (max-width: 1100px) {
  .pl-pagehero__row { flex-direction: column; align-items: flex-start; }
  .pl-pagehero__row .pl-lead { width: auto; max-width: 560px; }
}
@media (max-width: 960px) { .pl-pagehero { padding-top: 64px; } .pl-pagehero--spaced { padding-bottom: 72px; } }

/* ---------- About ---------- */
.pl-feature-img { position: relative; margin-top: 72px; height: 600px; overflow: hidden; border-radius: var(--pl-radius); }
.pl-feature-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.pl-captionbar {
  position: absolute; left: 32px; bottom: 32px; display: flex; flex-wrap: wrap;
  background: var(--pl-ink); color: var(--pl-paper); border-radius: var(--pl-radius);
  font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
}
.pl-captionbar span { display: flex; align-items: center; gap: 10px; padding: 18px 24px; border-right: 1px solid var(--pl-ink-line); }
.pl-captionbar span:last-child { border-right: 0; }
.pl-captionbar span:last-child::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--pl-signal); }
@media (max-width: 960px) { .pl-feature-img { height: 440px; margin-top: 56px; } }
@media (max-width: 640px) {
  .pl-feature-img { height: 320px; }
  .pl-captionbar { left: 12px; right: 12px; bottom: 12px; font-size: 11px; }
  .pl-captionbar span { padding: 12px 14px; }
}

.pl-split { display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: 80px; }
.pl-intro { margin-top: 32px; font-size: clamp(19px, 1.6vw, 22px); line-height: 1.55; }
.pl-body { margin-top: 20px; font-size: 18px; line-height: 1.65; color: var(--pl-muted); }
.pl-facts { margin-top: 64px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.pl-fact { padding-top: 20px; border-top: 2px solid var(--pl-ink); }
.pl-fact__value { font-size: clamp(30px, 2.8vw, 40px); line-height: 1.1; }
.pl-fact .pl-mono { display: block; margin-top: 8px; color: var(--pl-muted); }
@media (max-width: 960px) { .pl-split { grid-template-columns: minmax(0, 1fr); gap: 32px; } }
@media (max-width: 640px) { .pl-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; } }

.pl-purpose { margin-top: 64px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.pl-purpose__card { padding: 48px; background: var(--pl-ink-2); border-radius: var(--pl-radius); }
.pl-purpose__top { display: flex; justify-content: space-between; align-items: center; }
.pl-purpose__top .pl-mono { color: var(--pl-signal); }
.pl-purpose__top .pl-i { width: 28px; height: 28px; color: var(--pl-muted-dark); }
.pl-purpose__text {
  margin-top: 28px; font-family: var(--pl-display); font-stretch: 104%; font-weight: 600;
  font-size: clamp(24px, 2.4vw, 34px); line-height: 1.2; letter-spacing: -0.02em;
}
@media (max-width: 960px) { .pl-purpose { grid-template-columns: minmax(0, 1fr); } .pl-purpose__card { padding: 32px; } }

.pl-table { margin-top: 72px; }
.pl-table__head, .pl-table__row { display: grid; grid-template-columns: 140px 540px minmax(0, 1fr); gap: 40px; }
.pl-table__head { padding-bottom: 16px; color: var(--pl-muted); }
.pl-table__row { align-items: start; padding: 36px 0; border-top: 1px solid var(--pl-line-2); }
.pl-table__row--first { border-top: 2px solid var(--pl-ink); }
.pl-table__row--last { border-bottom: 1px solid var(--pl-line-2); }
.pl-table__no { font-family: var(--pl-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--pl-signal-deep); padding-top: 6px; }
.pl-table__title { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; letter-spacing: -0.02em; }
.pl-table__desc { font-size: 17px; line-height: 1.6; color: var(--pl-muted); }
.pl-table__foot { margin-top: 24px; font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--pl-muted); }
@media (max-width: 1100px) {
  .pl-table__head, .pl-table__row { grid-template-columns: 120px minmax(0, 1fr); gap: 16px 32px; }
  .pl-table__head span:last-child { display: none; }
  .pl-table__desc { grid-column: 2; }
}
@media (max-width: 640px) {
  .pl-table__head { display: none; }
  .pl-table__row { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 28px 0; }
  .pl-table__desc { grid-column: auto; }
}

/* ---------- Services ---------- */
.pl-jump { margin-top: 72px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.pl-jump__item {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; padding: 28px;
  background: var(--pl-paper); color: var(--pl-ink); text-decoration: none;
  border: 1px solid var(--pl-line); border-radius: var(--pl-radius); transition: border-color .2s ease;
}
.pl-jump__item:hover { border-color: var(--pl-ink); }
.pl-jump__item .pl-mono { display: block; color: var(--pl-signal-deep); }
.pl-jump__title { display: block; margin-top: 16px; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; }
.pl-jump__item .pl-i { width: 24px; height: 24px; stroke-width: 1.8; transition: transform .2s ease; }
.pl-jump__item:hover .pl-i { transform: translateY(3px); }
.pl-jump__item--dark { background: var(--pl-ink); color: var(--pl-paper); border-color: var(--pl-ink); }
.pl-jump__item--dark .pl-mono { color: var(--pl-signal); }
@media (max-width: 960px) { .pl-jump { grid-template-columns: minmax(0, 1fr); } }

.pl-service { display: grid; grid-template-columns: 600px minmax(0, 1fr); gap: 80px; align-items: center; }
.pl-service--media-first { grid-template-columns: 560px minmax(0, 1fr); }
.pl-service__img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--pl-radius); }
.pl-service__img--tall { height: 620px; }
.pl-service__lead { margin-top: 24px; font-size: clamp(18px, 1.4vw, 20px); line-height: 1.6; color: var(--pl-text-2); }
.pl-dark .pl-service__lead { color: var(--pl-soft); }
.pl-service__body > .pl-btn { margin-top: 40px; }
.pl-meta { margin-top: 40px; }
.pl-meta > div { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 24px; padding: 18px 0; border-top: 1px solid var(--pl-line-2); }
.pl-meta > div:last-child { border-bottom: 1px solid var(--pl-line-2); }
.pl-meta dt { padding-top: 3px; font-family: var(--pl-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pl-muted); }
.pl-meta dd { font-size: 16px; }
.pl-subservices { margin-top: 80px; }

.pl-features { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.pl-features li { display: flex; gap: 20px; align-items: flex-start; }
.pl-features__icon {
  width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--pl-signal); border: 1px solid var(--pl-ink-line-2); border-radius: var(--pl-radius);
}
.pl-features__icon .pl-i { width: 22px; height: 22px; }
.pl-features strong { display: block; font-size: 17px; font-weight: 600; }
.pl-features li span:not(.pl-features__icon) { display: block; margin-top: 4px; font-size: 15px; line-height: 1.55; color: var(--pl-muted-dark); }

.pl-ptable { margin-top: 96px; }
.pl-ptable__head, .pl-ptable__row { display: grid; grid-template-columns: 300px minmax(0, 1fr) 180px; gap: 40px; align-items: center; }
.pl-ptable__head { padding-bottom: 16px; color: var(--pl-muted-dark); }
.pl-ptable__head span:last-child { text-align: right; }
.pl-ptable__row { padding: 24px 0; border-top: 1px solid var(--pl-ink-line); }
.pl-ptable__row--first { border-top-color: var(--pl-paper); }
.pl-ptable__row--last { border-bottom: 1px solid var(--pl-ink-line); }
.pl-ptable__cat { font-size: 22px; letter-spacing: -0.02em; }
.pl-ptable__items { font-size: 16px; line-height: 1.55; color: var(--pl-soft); }
.pl-ptable__row .pl-arrow-link { justify-self: end; padding: 10px 0; }

.pl-cols-2 { margin-top: 40px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.pl-cols-2 .pl-mono { color: var(--pl-muted); }
.pl-minilist { margin-top: 16px; font-size: 15px; }
.pl-minilist li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--pl-line); }
.pl-minilist li:last-child { border-bottom: 1px solid var(--pl-line); }
.pl-minilist li::before { content: ""; width: 6px; height: 6px; flex-shrink: 0; background: var(--pl-signal); }
.pl-minilist--dots li::before { border-radius: 50%; background: var(--pl-ink); }

.pl-media-stack { position: relative; }
.pl-media-stack > img { width: 100%; height: 660px; object-fit: cover; border-radius: var(--pl-radius); }
.pl-inset { position: absolute; left: 24px; bottom: 24px; width: 280px; padding: 8px; background: var(--pl-bone); border-radius: var(--pl-radius); }
.pl-inset img { width: 100%; height: 196px; object-fit: cover; border-radius: 2px; }
.pl-inset figcaption { padding: 12px 6px 4px; font-family: var(--pl-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pl-muted); }
.pl-terms { margin-top: 80px; }

.pl-plans { margin-top: 64px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pl-plan { display: flex; flex-direction: column; padding: 40px; background: var(--pl-ink-2); border-radius: var(--pl-radius); }
.pl-plan > .pl-mono { font-size: 13px; letter-spacing: 0; color: var(--pl-signal); }
.pl-plan__title { margin-top: 24px; font-size: 28px; letter-spacing: -0.02em; }
.pl-plan__text { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--pl-muted-dark); }
.pl-checks { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.pl-checks li { display: flex; align-items: center; gap: 12px; }
.pl-checks .pl-i { width: 18px; height: 18px; stroke-width: 2; color: var(--pl-signal); }
.pl-plan .pl-arrow-link { margin-top: auto; padding-top: 36px; color: var(--pl-paper); }
.pl-plan .pl-arrow-link .pl-i { color: var(--pl-signal); }

.pl-faq-wrap { display: grid; grid-template-columns: 440px minmax(0, 1fr); gap: 80px; align-items: start; }
.pl-faq-wrap .pl-lead { margin-top: 24px; }
.pl-faq-wrap .pl-arrow-link { margin-top: 20px; }
.pl-faq { border-bottom: 1px solid var(--pl-line-2); }
.pl-faq__item { border-top: 1px solid var(--pl-line-2); }
.pl-faq__item:first-child { border-top-color: var(--pl-ink); }
.pl-faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 28px 0;
  font-size: clamp(17px, 1.4vw, 20px); font-weight: 600; cursor: pointer; list-style: none;
}
.pl-faq__q::-webkit-details-marker { display: none; }
.pl-faq__q::marker { content: ""; }
.pl-faq__icon {
  width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--pl-ink); border-radius: 50%; transition: background-color .2s ease, color .2s ease;
}
.pl-faq__icon .pl-i { width: 18px; height: 18px; stroke-width: 2; }
.pl-faq__v { transform-box: fill-box; transform-origin: center; transition: transform .2s ease; }
.pl-faq__item[open] .pl-faq__icon { background: var(--pl-ink); color: var(--pl-paper); }
.pl-faq__item[open] .pl-faq__v { transform: scaleY(0); }
.pl-faq__a { padding: 0 80px 28px 0; font-size: 17px; line-height: 1.65; color: var(--pl-muted); }

@media (max-width: 1100px) {
  .pl-service, .pl-service--media-first { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .pl-service__img, .pl-service__img--tall { height: 460px; }
  .pl-media-stack > img { height: 500px; }
  .pl-faq-wrap { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}
@media (max-width: 960px) {
  .pl-ptable__head { display: none; }
  .pl-ptable__row { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .pl-ptable__row .pl-arrow-link { justify-self: start; }
  .pl-plans { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .pl-service__img, .pl-service__img--tall { height: 300px; }
  .pl-media-stack > img { height: 360px; }
  .pl-inset { width: 170px; left: 12px; bottom: 12px; padding: 6px; }
  .pl-inset img { height: 110px; }
  .pl-inset figcaption { font-size: 10px; padding: 8px 4px 2px; }
  .pl-meta > div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .pl-cols-2 { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .pl-plan { padding: 28px; }
  .pl-faq__a { padding-right: 0; }
}

/* ---------- Contact ---------- */
.pl-contact-title {
  font-family: var(--pl-display); font-stretch: 112%; font-weight: 700;
  font-size: clamp(64px, 9vw, 128px); line-height: 0.92; letter-spacing: -0.045em;
}
.pl-contact-title span { color: var(--pl-signal); }
.pl-contact { display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 32px; align-items: start; }
.pl-contact .pl-form { gap: 24px; padding: 48px; border: 1px solid var(--pl-line); border-radius: var(--pl-radius); }
.pl-contact__aside { display: flex; flex-direction: column; gap: 16px; }
.pl-desk { padding: 28px; background: var(--pl-paper); border: 1px solid var(--pl-line); border-radius: var(--pl-radius); }
.pl-desk__top { display: flex; justify-content: space-between; align-items: center; }
.pl-desk__top .pl-mono { color: var(--pl-signal-deep); }
.pl-desk__top .pl-i { width: 22px; height: 22px; }
.pl-desk__lines { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; font-size: 16px; }
.pl-desk__lines li { display: flex; align-items: center; gap: 12px; overflow-wrap: anywhere; }
.pl-desk__lines .pl-i { width: 18px; height: 18px; stroke-width: 1.8; color: var(--pl-muted); }
.pl-desk__lines a { text-decoration: none; }
.pl-desk__lines a:hover { color: var(--pl-signal-deep); }
.pl-office { padding: 32px; background: var(--pl-ink); color: var(--pl-paper); border-radius: var(--pl-radius); }
.pl-office .pl-label { color: var(--pl-signal); }
.pl-office__address {
  margin-top: 16px; font-family: var(--pl-display); font-stretch: 106%; font-weight: 600;
  font-size: 22px; line-height: 1.35; letter-spacing: -0.01em; font-style: normal;
}
.pl-office__hours {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--pl-ink-line);
  display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--pl-soft);
}
.pl-office__hours .pl-i { width: 18px; height: 18px; stroke-width: 1.8; color: var(--pl-muted-dark); }
@media (max-width: 1100px) {
  .pl-contact { grid-template-columns: minmax(0, 1fr); }
  .pl-contact__aside { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .pl-contact .pl-form { padding: 28px 20px; }
  .pl-contact__aside { grid-template-columns: minmax(0, 1fr); }
}

.pl-map { position: relative; height: 520px; overflow: hidden; background: var(--pl-map); }
.pl-map__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.pl-map__card {
  position: absolute; top: 80px;
  left: max(var(--pl-gutter), calc((100% - 1440px) / 2 + var(--pl-gutter)));
  width: 420px; max-width: calc(100% - 2 * var(--pl-gutter));
  padding: 36px; background: var(--pl-paper); border-radius: var(--pl-radius);
}
.pl-map__card .pl-mono { color: var(--pl-signal-deep); }
.pl-map__card h2 { margin-top: 14px; font-size: 32px; letter-spacing: -0.02em; }
.pl-map__card p { margin-top: 12px; font-size: 16px; line-height: 1.6; color: var(--pl-muted); }
.pl-map__card .pl-btn { margin-top: 24px; height: 48px; padding: 0 20px; font-size: 15px; }
@media (max-width: 640px) {
  .pl-map { height: auto; padding: 200px var(--pl-gutter) 24px; }
  .pl-map__card { position: relative; top: auto; left: auto; width: auto; max-width: none; padding: 24px; }
}

/* ---------- Generic WordPress pages (theme only) ---------- */
.pl-prose { max-width: 760px; font-size: 18px; line-height: 1.7; color: var(--pl-text-2); }
.pl-prose > * + * { margin-top: 1.1em; }
.pl-prose h1, .pl-prose h2, .pl-prose h3 { font-family: var(--pl-display); font-stretch: 108%; font-weight: 700; letter-spacing: -0.02em; color: var(--pl-ink); line-height: 1.1; }
.pl-prose h2 { font-size: 36px; margin-top: 1.6em; }
.pl-prose h3 { font-size: 26px; margin-top: 1.4em; }
.pl-prose a { color: var(--pl-signal-deep); }
.pl-prose ul { list-style: disc; padding-left: 1.2em; }
.pl-prose img { height: auto; border-radius: var(--pl-radius); }

/* ---------- Scroll reveal (only when JS runs) ---------- */
.pl-js .pl-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.pl-js .pl-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pl-js .pl-reveal { opacity: 1; transform: none; transition: none; }
  .pl-card, .pl-tile, .pl-bento__feature img { transition: none; }
}
