/* ============================================================
   Design tokens
   ============================================================ */
:root {
  /* Darks */
  --pt-ink-900: #08090b;
  --pt-graphite-800: #1c232b;
  --pt-graphite-700: #26313d;
  --pt-graphite-600: #33404e;
  --pt-graphite-500: #465563;

  /* Steel */
  --pt-steel-500: #8097a4;
  --pt-steel-600: #6a808d;
  --pt-steel-400: #9bafba;
  --pt-mist-400: #c6d3d8;
  --pt-mist-100: #f1f2f2;
  --pt-white: #ffffff;

  /* Blues */
  --pt-blue-500: #0085ca;
  --pt-blue-600: #0071ad;
  --pt-blue-700: #005c8c;
  --pt-sky-300: #8bcdff;
  --pt-sky-500: #4fb2f2;

  /* Brass */
  --pt-brass-500: #c3a06b;
  --pt-brass-600: #a4854f;

  /* Semantic */
  --text-body: #26313d;
  --text-strong: #08090b;
  --text-muted: #6a808d;
  --text-inverse: #c6d3d8;
  --text-inverse-strong: #ffffff;
  --text-link: #0085ca;
  --surface-page: #ffffff;
  --surface-ink: #1c232b;
  --border-subtle: #e2e8eb;
  --border-ink: rgba(198,211,216,.18);
  --focus-ring: #4fb2f2;

  /* Typography */
  --font-sans: 'IBM Plex Sans', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Spacing */
  --container-max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(64px, 8vw, 128px);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.12; letter-spacing: -0.014em; }
p { margin: 0; }
img, video { max-width: 100%; display: block; }
a { color: var(--text-link); text-decoration: none; }
button { cursor: pointer; font: inherit; }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }

/* ============================================================
   Layout
   ============================================================ */
.pt-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   Buttons
   ============================================================ */
.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.pt-btn--lg { height: 54px; padding: 0 28px; font-size: 16px; }
.pt-btn--sm { height: 36px; padding: 0 14px; font-size: 14px; }

.pt-btn--brass {
  background: var(--pt-brass-500);
  color: #1c232b;
}
.pt-btn--brass:hover { background: var(--pt-brass-600); }

.pt-btn--outline {
  background: transparent;
  color: var(--text-body);
  border: 1px solid var(--border-subtle);
}
.pt-btn--outline:hover { border-color: var(--text-body); }

.pt-btn--outline-inverse {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(198,211,216,.5);
}
.pt-btn--outline-inverse:hover { border-color: #ffffff; }

/* ============================================================
   Header / Navigation
   ============================================================ */
.pt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1c232b;
  height: 88px;
}
.pt-header__inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.pt-header__logo { display: inline-flex; align-items: center; text-decoration: none; }
.pt-header__logo svg { display: block; }

.pt-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pt-header__phone {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #c6d3d8;
  text-decoration: none;
  border-bottom: none;
}
.pt-header__phone:hover { color: #ffffff; }

.pt-menu-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid #2c3a45;
  color: #ffffff;
  padding: 0;
  transition: border-color 160ms ease, background 160ms ease;
}
.pt-menu-btn:hover { border-color: #ffffff; background: rgba(255,255,255,.06); }

/* Off-canvas menu */
.pt-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,9,11,.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.pt-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

.pt-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #161d24;
  z-index: 210;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(.2,.6,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.pt-nav-drawer.is-open { transform: translateX(0); }

.pt-nav-drawer__head {
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-ink);
}
.pt-nav-drawer__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(198,211,216,.2);
  color: #ffffff;
  padding: 0;
}
.pt-nav-drawer__close:hover { border-color: rgba(198,211,216,.5); }

.pt-nav-list {
  list-style: none;
  margin: 0;
  padding: 24px 0;
  flex: 1;
}
.pt-nav-list a {
  display: block;
  padding: 14px var(--gutter);
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-bottom: none;
  transition: color 140ms ease;
}
.pt-nav-list a:hover { color: var(--pt-sky-300); }

.pt-nav-list__sub { list-style: none; margin: 0; padding: 0; }
.pt-nav-list__sub a {
  padding: 10px var(--gutter) 10px calc(var(--gutter) + 16px);
  font-size: 15px;
  font-weight: 400;
  color: #9bafba;
}
.pt-nav-list__sub a:hover { color: #ffffff; }

.pt-nav-drawer__footer {
  padding: 24px var(--gutter);
  border-top: 1px solid var(--border-ink);
}
.pt-nav-drawer__footer a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #8097a4;
  text-decoration: none;
}

/* ============================================================
   Hero
   ============================================================ */
.pt-hero {
  position: relative;
  background: #1c232b;
  overflow: hidden;
  min-height: min(780px, calc(100vh - 88px));
  display: flex;
  flex-direction: column;
}
.pt-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(28,35,43,.94) 0%, rgba(28,35,43,.7) 42%, rgba(28,35,43,0) 100%),
    linear-gradient(to top, rgba(28,35,43,.9) 0%, rgba(28,35,43,0) 45%);
}
.pt-hero__stepband {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  pointer-events: none;
}
.pt-hero__stepband svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.pt-hero__content {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.pt-hero__corner {
  position: absolute;
  top: 32px;
  left: var(--gutter);
  display: block;
  width: 48px;
  height: 48px;
  border-top: 1px solid rgba(198,211,216,.55);
  border-left: 1px solid rgba(198,211,216,.55);
}
.pt-hero__text { margin-top: 32px; }
.pt-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pt-sky-300);
  margin-bottom: 20px;
}
.pt-hero__h1 {
  max-width: 22ch;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.014em;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.pt-hero__lead {
  margin: 24px 0 0;
  max-width: 52ch;
  font-size: 19px;
  line-height: 1.55;
  color: #c6d3d8;
}
.pt-hero__bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.pt-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.pt-hero__trust {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pt-hero__badges { display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   Badge
   ============================================================ */
.pt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 22px;
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pt-badge--ink { background: rgba(8,9,11,.5); color: var(--pt-mist-400); border: 1px solid rgba(198,211,216,.2); }

/* ============================================================
   Section: Om oss / DataPanel
   ============================================================ */
.pt-about {
  background: #161d24;
}
.pt-about__inner {
  padding: clamp(56px, 7vw, 104px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 64px;
  align-items: center;
}
.pt-about__h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-weight: 600;
  color: #ffffff;
}
.pt-about__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.pt-about__body p {
  font-size: 16px;
  line-height: 1.6;
  color: #d8e1e8;
}

.pt-data-panel { display: flex; flex-direction: column; gap: 0; }
.pt-data-panel__figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(198,211,216,.08);
}
.pt-data-panel__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(198,211,216,.08);
  margin-top: 1px;
}
.pt-data-panel__stat {
  padding: 28px 20px;
  background: #1c232b;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pt-data-panel__num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pt-data-panel__label {
  font-size: 13px;
  color: #8097a4;
  line-height: 1.3;
}

/* ============================================================
   Section: Tjänster
   ============================================================ */
.pt-services {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.pt-services__bg {
  position: absolute;
  inset: 0;
  opacity: .06;
  pointer-events: none;
}
.pt-services__inner {
  position: relative;
  padding: clamp(64px, 8vw, 128px) var(--gutter);
}
.pt-services__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a808d;
}
.pt-services__h2 {
  margin: 16px 0 0;
  max-width: 22ch;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.024em;
  font-weight: 600;
  color: #1c232b;
}
.pt-services__lead {
  margin: 16px 0 0;
  max-width: 48ch;
  font-size: 19px;
  line-height: 1.55;
  color: #26313d;
}
.pt-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--border-subtle);
}
.pt-service-card {
  background: #ffffff;
  color: #1c232b;
  text-decoration: none;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 190px;
  transition: background 180ms ease, color 180ms ease;
}
.pt-service-card:hover { background: #161d24; color: #ffffff; }
.pt-service-card--wide { grid-column: span 2; }
.pt-service-card__label { font-size: 19px; font-weight: 600; line-height: 1.2; color: inherit; margin-top: auto; }
.pt-service-card__desc { margin: 8px 0 0; font-size: 15px; line-height: 1.55; color: inherit; opacity: .72; }

/* ============================================================
   Section: Garanti
   ============================================================ */
.pt-warranty {
  background: #1c232b;
  color: #c6d3d8;
}
.pt-warranty__inner {
  padding: clamp(64px, 8vw, 120px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.pt-warranty__photo-wrap { position: relative; }
.pt-warranty__photo { width: 100%; height: auto; display: block; }
.pt-warranty__callout {
  position: absolute;
  right: -20px;
  bottom: -28px;
  background: #8097a4;
  color: #1c232b;
  padding: 20px 24px;
  max-width: 230px;
}
.pt-warranty__callout-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.pt-warranty__callout-text { margin-top: 8px; font-size: 17px; line-height: 1.3; font-weight: 600; }
.pt-warranty__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pt-sky-300);
}
.pt-warranty__h2 {
  margin: 16px 0 0;
  max-width: 20ch;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #ffffff;
}
.pt-warranty__lead { margin: 20px 0 0; max-width: 52ch; font-size: 18px; line-height: 1.55; color: #c6d3d8; }

.pt-numbered-list { display: flex; flex-direction: column; margin-top: 36px; border-top: 1px solid rgba(198,211,216,.16); }
.pt-numbered-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(198,211,216,.16);
}
.pt-numbered-item__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #8097a4;
  padding-top: 4px;
}
.pt-numbered-item__title { font-size: 17px; font-weight: 600; color: #ffffff; }
.pt-numbered-item__text { margin: 6px 0 0; font-size: 15px; line-height: 1.55; color: #9bafba; }

/* ============================================================
   Section: Märken
   ============================================================ */
.pt-brands { background: #ffffff; }
.pt-brands__inner { padding: clamp(64px, 8vw, 112px) var(--gutter); }
.pt-brands__header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.pt-brands__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a808d;
}
.pt-brands__h2 {
  margin: 16px 0 0;
  max-width: 22ch;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: #1c232b;
}
.pt-brands__lead { margin: 0; font-size: 17px; line-height: 1.6; color: #26313d; }

.pt-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--border-subtle);
}
.pt-brand-card {
  background: #ffffff;
  box-shadow: none;
  padding: 36px 24px;
  display: grid;
  place-items: center;
  text-align: center;
}
.pt-brand-card__name { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: #1c232b; }
.pt-brand-card__role { margin-top: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.pt-brand-card__role--primary { color: #0085ca; }
.pt-brand-card__role--secondary { color: #6a808d; }

.pt-pumpdirekt {
  margin-top: 24px;
  background: #f1f2f2;
  border-left: 3px solid #0085ca;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.pt-pumpdirekt__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0085ca;
}
.pt-pumpdirekt__text { margin: 10px 0 0; max-width: 70ch; font-size: 16px; line-height: 1.6; color: #26313d; }

/* ============================================================
   Section: Kompetenser
   ============================================================ */
.pt-skills { background: #f1f2f2; }
.pt-skills__inner { padding: clamp(64px, 8vw, 112px) var(--gutter); }
.pt-skills__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a808d;
}
.pt-skills__h2 {
  margin: 16px 0 0;
  max-width: 20ch;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: #1c232b;
}
.pt-skills__lead { margin: 16px 0 0; max-width: 56ch; font-size: 18px; line-height: 1.55; color: #26313d; }

.pt-skills__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.pt-skills__main-photo {
  position: relative;
  overflow: hidden;
  background: #1c232b;
  min-height: 340px;
}
.pt-skills__main-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(.2,.6,.2,1);
}
.pt-skills__main-photo:hover img { transform: scale(1.03); }
.pt-skills__main-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(28,35,43,.85) 0%, rgba(28,35,43,.25) 46%, rgba(28,35,43,0) 72%);
}
.pt-skills__main-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pt-skills__main-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pt-sky-300);
}
.pt-skills__main-title { font-size: 24px; font-weight: 600; line-height: 1.15; letter-spacing: -0.014em; color: #ffffff; }

.pt-skills__sub { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.pt-photo-tile { position: relative; overflow: hidden; background: #1c232b; }
.pt-photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pt-photo-tile__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(28,35,43,.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pt-photo-tile__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pt-sky-300);
}
.pt-photo-tile__title { font-size: 15px; font-weight: 600; color: #ffffff; }

/* ============================================================
   Section: Målgrupper
   ============================================================ */
.pt-industries {
  background: #161d24;
  color: #c6d3d8;
  position: relative;
  overflow: hidden;
}
.pt-industries__inner {
  padding: clamp(64px, 8vw, 112px) var(--gutter);
  position: relative;
  z-index: 1;
}
.pt-industries__header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 440px);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.pt-industries__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pt-sky-300);
}
.pt-industries__h2 {
  margin: 16px 0 0;
  max-width: 20ch;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: #ffffff;
}
.pt-industries__lead { margin: 0; font-size: 17px; line-height: 1.6; color: #c6d3d8; }

.pt-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(198,211,216,.1);
}
.pt-industry-card {
  background: #161d24;
  color: #ffffff;
  padding: 32px 28px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 180ms ease, color 180ms ease;
}
.pt-industry-card:hover { background: #8bcdff; color: #161d24; }
.pt-industry-card__title { font-size: 18px; font-weight: 600; color: inherit; }
.pt-industry-card__desc { margin: 8px 0 0; font-size: 15px; line-height: 1.55; color: inherit; opacity: .72; }

.pt-geo {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(198,211,216,.16);
}
.pt-geo__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8097a4;
}
.pt-geo__h3 {
  margin: 14px 0 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 600;
  color: #ffffff;
}
.pt-geo__text { margin: 14px 0 0; max-width: 44ch; font-size: 16px; line-height: 1.6; color: #9bafba; }

.pt-geo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(198,211,216,.1);
}
.pt-geo-card {
  background: #161d24;
  color: #ffffff;
  padding: 22px 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  transition: background 180ms ease, color 180ms ease;
}
.pt-geo-card:hover { background: #8bcdff; color: #161d24; }
.pt-geo-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: inherit;
  opacity: .72;
}
.pt-geo-card__name { font-size: 17px; font-weight: 600; color: inherit; }

/* ============================================================
   Section: CTA
   ============================================================ */
.pt-cta {
  position: relative;
  background: #1c232b;
  overflow: hidden;
}
.pt-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.pt-cta__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,35,43,.92) 0%, rgba(28,35,43,.55) 60%, rgba(28,35,43,.25) 100%);
}
.pt-cta__inner {
  position: relative;
  padding: clamp(64px, 8vw, 120px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.pt-cta__h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #ffffff;
}
.pt-cta__lead { margin: 0; max-width: 46ch; font-size: 18px; line-height: 1.55; color: #c6d3d8; }
.pt-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.pt-footer {
  background: #1c232b;
  color: #c6d3d8;
  position: relative;
  overflow: hidden;
}
.pt-footer__inner {
  padding: 80px var(--gutter) 32px;
  position: relative;
  z-index: 1;
}
.pt-footer__bottom {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid rgba(198,211,216,.16);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8097a4;
}
.pt-footer__corner {
  position: absolute;
  right: -6%;
  top: -30%;
  width: 420px;
  height: 320px;
  border-left: 1px solid rgba(198,211,216,.16);
  border-bottom: 1px solid rgba(198,211,216,.16);
}

/* ============================================================
   Schematic SVG overlay
   ============================================================ */
.pt-schematic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .45;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .pt-about__inner { grid-template-columns: 1fr; }
  .pt-warranty__inner { grid-template-columns: 1fr; }
  .pt-brands__header { grid-template-columns: 1fr; }
  .pt-industries__header { grid-template-columns: 1fr; }
  .pt-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .pt-geo { grid-template-columns: 1fr; }
  .pt-pumpdirekt { grid-template-columns: 1fr; }
  .pt-skills__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pt-header__phone { display: none; }
  .pt-service-card--wide { grid-column: auto; }
  .pt-warranty__callout { right: 0; bottom: 0; position: static; margin-top: 16px; }
  .pt-industry-grid { grid-template-columns: 1fr; }
  .pt-geo-grid { grid-template-columns: 1fr; }
  .pt-data-panel__figures,
  .pt-data-panel__columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pt-skills__grid { grid-template-columns: 1fr; }
  .pt-skills__sub { grid-template-rows: auto; }
}
