/*
Theme Name: Positech Rotary Unions
Theme URI: https://positech.example
Author: Positech Corporation
Description: Custom WordPress theme for Positech Custom Rotary Unions — Laurens, Iowa.
Version: 1.1.13
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: positech
*/

/* ============================================================
   POSITECH — Custom Rotary Unions
   WordPress Theme Stylesheet
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #1d1d1d;
  --charcoal:   #292929;
  --slate:      #3a3a3a;
  --slate-2:    #474747;
  --slate-3:    #565656;
  --hairline:   rgba(255,255,255,.07);

  --orange:     #ee8c2b;
  --orange-600: #e07d18;
  --orange-700: #c96c0e;
  --orange-tint:#fdf2e4;

  --paper:      #ffffff;
  --mist:       #f5f4f2;
  --mist-2:     #ebe9e5;
  --line:       #e2e0db;

  --ink-text:   #232323;
  --body-text:  #4a4845;
  --muted:      #8a877f;
  --on-dark:    #efefee;
  --on-dark-dim:#b7b6b2;

  --rail: 288px;
  --topbar: 66px;

  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 30px -18px rgba(0,0,0,.25);
  --shadow-lg: 0 30px 70px -40px rgba(0,0,0,.45);

  --ff-body: "Barlow", system-ui, sans-serif;
  --ff-cond: "Barlow Condensed", "Barlow", sans-serif;
  --ff-semi: "Barlow Semi Condensed", "Barlow", sans-serif;

  --maxw: 1120px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--body-text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink-text); line-height: 1.08; margin: 0; font-weight: 700; letter-spacing: -.01em; text-wrap: balance; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT SHELL
   ============================================================ */
.positech-layout { min-height: 100vh; }
.positech-content { margin-left: var(--rail); min-height: 100vh; display: flex; flex-direction: column; }

/* ---------- Sidebar ---------- */
.positech-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--rail);
  background: var(--charcoal);
  display: flex; flex-direction: column;
  z-index: 40;
  border-right: 1px solid #000;
}
.logo-well {
  background: var(--ink);
  padding: 30px 30px 28px;
  display: flex; align-items: center; justify-content: center;
}
.logo-frame { width: 100%; display: flex; align-items: center; justify-content: center; padding: 10px; }
.logo-frame img { width: 200px; height: auto; }

.main-nav { display: flex; flex-direction: column; padding: 0; margin: 0; list-style: none; flex: 0 0 auto; }
.main-nav li { display: block; }
.main-nav a {
  position: relative;
  display: flex; align-items: center;
  padding: 17px 30px;
  font-family: var(--ff-cond);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--on-dark);
  border-bottom: 1px solid var(--hairline);
  transition: background .18s ease, color .18s ease, padding .18s ease;
}
.main-nav a::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--orange); transform: scaleY(0); transform-origin: center;
  transition: transform .2s ease;
}
.main-nav a:hover { background: rgba(255,255,255,.04); padding-left: 36px; }
.main-nav a:hover::before { transform: scaleY(.4); }
.main-nav a.current-menu-item,
.main-nav a[aria-current="page"] { background: rgba(0,0,0,.22); color: #fff; }
.main-nav a.current-menu-item::before,
.main-nav a[aria-current="page"]::before { transform: scaleY(1); }

.rail-spacer { flex: 1 1 auto; }
.rail-cta { padding: 22px; }
.data-sheet {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 14px 16px;
  background: var(--slate-2);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: #fff; cursor: pointer; text-align: left;
  transition: background .18s ease, transform .18s ease;
}
.data-sheet:hover { background: var(--slate-3); transform: translateY(-1px); }
.data-sheet .ds-ico {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 6px;
  background: var(--orange); display: grid; place-items: center; color: #fff;
}
.data-sheet .ds-txt { font-family: var(--ff-cond); font-weight: 600; letter-spacing: .04em; font-size: .98rem; line-height: 1.15; }
.data-sheet .ds-edit { margin-left: auto; color: var(--on-dark-dim); }

/* ---------- Top utility bar ---------- */
.positech-topbar {
  background: var(--charcoal);
  color: var(--on-dark);
  min-height: var(--topbar);
  display: flex; align-items: center; gap: 40px;
  padding: 10px 40px;
}
.positech-topbar .util { display: flex; align-items: center; gap: 14px; }
.positech-topbar .util-ico {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: grid; place-items: center; color: var(--orange); flex: 0 0 auto;
}
.positech-topbar .util-label { font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; color: var(--on-dark-dim); }
.positech-topbar .util-value { font-weight: 600; color: #fff; font-size: 1rem; line-height: 1.2; white-space: nowrap; }
.positech-topbar .util-value a:hover { color: var(--orange); }
.positech-topbar .util-sep { width: 1px; align-self: stretch; background: var(--hairline); margin: 6px 0; }
.positech-topbar .topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.positech-topbar .quote-link {
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .12em;
  font-weight: 600; font-size: .86rem; color: var(--orange);
  display: flex; align-items: center; gap: 8px;
}
.positech-topbar .quote-link:hover { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.positech-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: center;
  padding: 90px 40px;
  color: #fff;
  overflow: hidden;
}
.positech-hero.hero-short { min-height: 44vh; }
.positech-hero.hero-shorter { min-height: 38vh; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #34373c;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.5), rgba(20,20,20,.72));
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; width: 100%; text-align: center; }
.hero-inner h1 {
  color: #fff; font-weight: 800;
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  line-height: 1.0; letter-spacing: -.015em;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero-inner .sub {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  color: rgba(255,255,255,.9); font-weight: 400; margin-top: 18px;
}
.accent-rule { width: 84px; height: 4px; background: var(--orange); margin: 26px auto 0; border-radius: 2px; }
.hero-cta { margin-top: 36px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   SECTIONS / BLOCKS
   ============================================================ */
.positech-section { padding: 84px 40px; }
.positech-section.bg-mist { background: var(--mist); }
.positech-section.bg-dark { background: var(--charcoal); color: var(--on-dark); }
.positech-section.bg-dark h2, .positech-section.bg-dark h3 { color: #fff; }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap.narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--ff-cond); text-transform: uppercase;
  letter-spacing: .22em; font-weight: 600; font-size: .84rem;
  color: var(--orange-700); margin-bottom: 14px; display: block;
}
.bg-dark .eyebrow { color: var(--orange); }
.section-head { max-width: 720px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.positech-section h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); }
.positech-section h2 + .lede { margin-top: 18px; font-size: 1.18rem; color: var(--body-text); }
.lede { font-size: 1.18rem; line-height: 1.7; }

/* Split intro */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split-img {
  height: clamp(320px, 34vw, 430px);
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ccc;
}
.split-img figure,
.split-img .wp-block-image,
.split-img .wp-block-image.size-full {
  width: 100%;
  height: 100%;
  margin: 0;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.feature .fico { width: 46px; height: 46px; border-radius: 9px; background: var(--orange-tint); color: var(--orange-700); display: grid; place-items: center; margin-bottom: 18px; }
.feature h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feature p { font-size: .98rem; color: var(--body-text); }

/* ============================================================
   PROCESS LAYOUTS
   ============================================================ */
.proc { display: none; }
[data-proc="timeline"] .proc-timeline { display: block; }
[data-proc="cards"]    .proc-cards    { display: block; }
[data-proc="split"]    .proc-split    { display: block; }

.timeline { position: relative; max-width: 860px; margin: 0 auto; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 31px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-step { position: relative; padding: 0 0 44px 86px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute; left: 0; top: -4px; width: 64px; height: 64px; border-radius: 50%;
  background: var(--charcoal); color: #fff; display: grid; place-items: center;
  font-family: var(--ff-cond); font-weight: 700; font-size: 1.5rem; z-index: 2;
  border: 3px solid var(--paper); box-shadow: 0 0 0 2px var(--line);
}
.tl-step.is-active .tl-num, .tl-step:hover .tl-num { background: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.tl-step h3 { font-size: 1.45rem; margin-bottom: 8px; }
.tl-step p { color: var(--body-text); }

.proc-cards .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.proc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proc-card::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--orange); }
.proc-card .step-tag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 8px; background: var(--charcoal); color: #fff;
  font-family: var(--ff-cond); font-weight: 700; font-size: 1.2rem; margin-bottom: 18px;
}
.proc-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.proc-card p { font-size: .97rem; }

.proc-split .ps-step { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 38px 0; border-top: 1px solid var(--line); }
.proc-split .ps-step:first-child { border-top: 0; }
.proc-split .ps-media { min-height: 280px; border-radius: var(--radius); box-shadow: var(--shadow); background: #ccc; overflow: hidden; }
.proc-split .ps-media img { width: 100%; height: 100%; object-fit: cover; }
.proc-split .ps-step:nth-child(even) .ps-media { order: 2; }
.proc-split .ps-num { font-family: var(--ff-cond); font-weight: 700; color: var(--orange); font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 8px; }
.proc-split .ps-body h3 { font-size: 1.6rem; margin-bottom: 10px; }

.proc-switch { display: inline-flex; background: var(--mist-2); border-radius: 999px; padding: 5px; gap: 4px; margin-top: 30px; }
.proc-switch button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  font-size: .82rem; color: var(--slate-2); padding: 9px 20px; border-radius: 999px; transition: all .18s ease;
}
.proc-switch button[aria-pressed="true"] { background: var(--charcoal); color: #fff; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; font-size: .96rem;
  padding: 15px 30px; border-radius: var(--radius-sm); border: 0; cursor: pointer;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -12px rgba(238,140,43,.9); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--slate-2); transform: translateY(-2px); color: #fff; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.industry {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; gap: 14px; align-items: center; box-shadow: var(--shadow);
}
.industry .iico { width: 40px; height: 40px; border-radius: 8px; background: var(--orange-tint); color: var(--orange-700); display: grid; place-items: center; flex: 0 0 auto; }
.industry span { font-family: var(--ff-semi); font-weight: 600; color: var(--ink-text); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--charcoal); color: #fff; padding: 64px 40px; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.cta-band p { color: var(--on-dark-dim); margin-top: 6px; }

/* ============================================================
   SPEC LIST
   ============================================================ */
.spec-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.spec-list li { display: flex; gap: 12px; align-items: flex-start; }
.spec-list li svg { flex: 0 0 auto; color: var(--orange); margin-top: 3px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-card > p { font-size: .96rem; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; font-size: .8rem; color: var(--slate-2); }
.field input, .field textarea, .field select {
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink-text);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--mist);
  transition: border .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px var(--orange-tint); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.brent-card { display: flex; gap: 18px; align-items: center; padding: 22px; background: var(--orange-tint); border-radius: var(--radius); border: 1px solid #f3dcbf; margin-top: 8px; }
.brent-card .brent-avatar { width: 64px; height: 64px; border-radius: 50%; flex: 0 0 auto; background: #ccc; overflow: hidden; }
.brent-card .brent-avatar img { width: 100%; height: 100%; object-fit: cover; }
.brent-card .brent-title { font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--orange-700); font-weight: 600; }
.brent-card .brent-name { font-size: 1.2rem; font-weight: 700; color: var(--ink-text); }
.brent-card .brent-note { font-size: .95rem; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: 0; }
.contact-detail .cd-ico { width: 44px; height: 44px; border-radius: 10px; background: var(--charcoal); color: var(--orange); display: grid; place-items: center; flex: 0 0 auto; }
.contact-detail .cd-label { font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; color: var(--muted); }
.contact-detail .cd-value { font-size: 1.08rem; color: var(--ink-text); font-weight: 600; }

/* Form success */
.form-success { display: none; align-items: center; gap: 10px; margin-top: 16px; padding: 14px; background: var(--orange-tint); border-radius: var(--radius-sm); color: var(--orange-700); font-weight: 600; font-size: .95rem; }
.form-success.show { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.positech-footer { background: var(--ink); color: var(--on-dark-dim); margin-top: auto; }
.footer-main { padding: 60px 40px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-main .footer-logo { width: 190px; margin-bottom: 18px; }
.footer-col h4 { color: #fff; font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .12em; font-size: .95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a:hover { color: var(--orange); }
.footer-bar { border-top: 1px solid var(--hairline); padding: 20px 40px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }

/* ============================================================
   MOBILE MENU TOGGLE
   ============================================================ */
.menu-toggle {
  display: none; position: fixed; top: 12px; left: 14px; z-index: 60;
  width: 42px; height: 42px; border-radius: 8px; border: 0; cursor: pointer;
  background: var(--orange); color: #fff; place-items: center;
}
.positech-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 35; opacity: 0; pointer-events: none; transition: opacity .25s; }
.positech-scrim.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feature-grid, .proc-cards .card-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --rail: 0px; }
  .positech-sidebar { transform: translateX(-100%); transition: transform .25s ease; width: 288px; }
  .positech-sidebar.open { transform: none; }
  .positech-content { margin-left: 0; }
  .menu-toggle { display: inline-flex; }
  .split, .contact-grid, .proc-split .ps-step { grid-template-columns: 1fr; gap: 30px; }
  .proc-split .ps-step:nth-child(even) .ps-media { order: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .positech-topbar { gap: 20px; padding: 10px 20px 10px 64px; }
  .positech-topbar .util-sep, .positech-topbar .topbar-right { display: none; }
}
@media (max-width: 560px) {
  .feature-grid, .proc-cards .card-grid, .industry-grid { grid-template-columns: 1fr; }
  .positech-section, .positech-hero { padding-left: 22px; padding-right: 22px; }
  .positech-topbar .util:nth-child(3) { display: none; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   WORDPRESS CORE COMPATIBILITY
   ============================================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .9rem; color: var(--muted); margin-top: 6px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ============================================================
   CUSTOM ROTARY UNIONS — extended content sections
   ============================================================ */

/* Orange intro band (hero sub-band) */
.orange-band {
  background: var(--orange);
  color: #fff;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.orange-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,.08) 0%, transparent 60%),
    repeating-linear-gradient(60deg, transparent 0 18px, rgba(255,255,255,.04) 18px 36px);
  pointer-events: none;
}
.orange-band .wrap { position: relative; z-index: 1; }
.orange-band h2 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.orange-band p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-top: 10px; }
.orange-band p:last-child { margin-bottom: 0; }

/* Design features list */
.design-features { margin: 28px 0 0; }
.design-features h4 {
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: .88rem; color: var(--ink-text); margin-bottom: 14px;
}
.design-features ul {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 8px;
}
.design-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .97rem; color: var(--body-text);
}
.design-features li::before {
  content: "";
  flex: 0 0 6px; height: 6px; margin-top: 8px;
  border-radius: 50%; background: var(--orange);
}

/* Full in-house capabilities strip */
.capabilities-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0; margin: 48px 0 0;
  text-align: center;
}
.capabilities-strip h3 {
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .18em;
  font-size: 1.1rem; color: var(--orange-700);
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.capabilities-strip h3::before,
.capabilities-strip h3::after {
  content: ""; flex: 1; height: 1px; background: var(--line); max-width: 200px;
}
.capabilities-strip p { max-width: 820px; margin: 14px auto 0; font-size: .97rem; }

/* Two-up icon cards */
.icon-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.icon-card {
  text-align: center;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.icon-card .ic-icon {
  width: 64px; height: 64px; border-radius: 12px;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; margin: 0 auto 18px;
}
.icon-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.icon-card ol {
  list-style: decimal; padding-left: 1.2em; margin: 0;
  font-size: .95rem; color: var(--body-text); text-align: left;
  display: grid; gap: 5px;
}

/* Applications / orange band */
.applications-band {
  background: var(--orange);
  color: #fff;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.applications-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(60deg, transparent 0 18px, rgba(255,255,255,.04) 18px 36px);
  pointer-events: none;
}
.applications-band .wrap { position: relative; z-index: 1; }
.applications-band h2 { color: #fff; font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .14em; font-size: 1.1rem; display: flex; align-items: center; gap: 16px; justify-content: center; text-align: center; }
.applications-band h2::before, .applications-band h2::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.4); max-width: 200px; }
.applications-band p { max-width: 820px; margin: 14px auto 0; font-size: 1rem; color: rgba(255,255,255,.92); text-align: center; }

/* ============================================================
   THE PROCESS — sequential arrow layout (live site style)
   ============================================================ */
.process-steps { max-width: 820px; margin: 0 auto; }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 32px 0; }
.process-step + .process-step { border-top: 1px solid var(--line); }
.process-step-icon {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--orange-tint); color: var(--orange-700);
  display: grid; place-items: center; flex: 0 0 auto;
  margin-top: 4px;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.process-step p { font-size: .97rem; color: var(--body-text); }
.process-arrow {
  display: flex; justify-content: center; padding: 4px 0;
  color: var(--orange);
}
.process-step:last-child .process-arrow { display: none; }

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.clients-intro-band {
  background: var(--orange);
  color: #fff;
  padding: 36px 40px;
  position: relative; overflow: hidden;
}
.clients-intro-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(60deg, transparent 0 18px, rgba(255,255,255,.04) 18px 36px);
  pointer-events: none;
}
.clients-intro-band .wrap { position: relative; z-index: 1; }
.clients-intro-band h2 { color: #fff; font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.clients-intro-band p { color: rgba(255,255,255,.9); margin-top: 8px; }

.clients-list-section { padding: 60px 40px; }
.clients-columns {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px;
}
.clients-columns ul {
  list-style: disc; padding-left: 1.4em; margin: 0;
  display: grid; gap: 8px;
}
.clients-columns li { font-size: .97rem; color: var(--body-text); }

.clients-cta-band {
  background: var(--orange);
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.clients-cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(60deg, transparent 0 18px, rgba(255,255,255,.04) 18px 36px);
  pointer-events: none;
}
.clients-cta-band .wrap {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.clients-cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2vw, 1.8rem); margin-bottom: 6px; }
.clients-cta-band p { color: rgba(255,255,255,.9); font-size: .97rem; }
.btn-outline-dark {
  background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; font-size: .96rem;
  padding: 14px 28px; border-radius: var(--radius-sm); cursor: pointer;
  transition: background .16s ease, color .16s ease; white-space: nowrap;
  flex: 0 0 auto;
}
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }

/* ============================================================
   CONTACT PAGE — live site layout
   ============================================================ */
.contact-full-layout { padding: 60px 40px; }
.contact-full-layout .wrap { display: grid; grid-template-columns: 1fr; gap: 56px; }

/* Form section */
.contact-form-section h2 {
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: 1.4rem; color: var(--ink-text); margin-bottom: 6px;
  padding-bottom: 8px; border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.contact-form-section .cf-subtitle { font-size: .95rem; color: var(--muted); margin-bottom: 28px; }

/* Bottom two-col: contact person + map */
.contact-lower {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; align-items: start;
}
.contact-lower-col h3 {
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: 1rem; color: var(--ink-text); margin-bottom: 6px;
  padding-bottom: 8px; border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.contact-person { margin-top: 24px; text-align: center; }
.contact-person .cp-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--mist-2); margin: 0 auto 14px; overflow: hidden;
}
.contact-person .cp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.contact-person .cp-name { font-size: 1.15rem; font-weight: 700; color: var(--ink-text); }
.contact-person .cp-title { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.contact-person .cp-phone { font-size: .95rem; color: var(--body-text); margin-top: 6px; }

.contact-map {
  margin-top: 24px; border-radius: var(--radius);
  overflow: hidden; background: var(--mist-2);
  min-height: 240px; box-shadow: var(--shadow);
}
.contact-map iframe { display: block; width: 100%; height: 240px; border: 0; }

/* recaptcha placeholder */
.g-recaptcha-wrap { margin: 18px 0; }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 900px) {
  .icon-duo { grid-template-columns: 1fr; }
  .split-img {
    height: 320px;
    min-height: 320px;
  }
  .clients-columns { grid-template-columns: 1fr 1fr; }
  .contact-lower { grid-template-columns: 1fr; }
  .clients-cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .orange-band, .applications-band, .clients-intro-band,
  .clients-list-section, .clients-cta-band, .contact-full-layout { padding-left: 22px; padding-right: 22px; }
}
@media (max-width: 560px) {
  .clients-columns { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; }
  .process-step-icon { margin-bottom: 0; }
}

/* ============================================================
   PAGE CONTENT — block editor output styles
   Applies inside .positech-page-content so block editor
   headings, lists, paragraphs, images all render correctly.
   ============================================================ */
.positech-page-content { max-width: 900px; }
.positech-page-content h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin: 40px 0 14px; color: var(--ink-text);
}
.positech-page-content h3 {
  font-size: 1.25rem; margin: 28px 0 10px; color: var(--ink-text);
}
.positech-page-content h2:first-child,
.positech-page-content h3:first-child { margin-top: 0; }
.positech-page-content p { margin-bottom: 1.1em; }
.positech-page-content ul,
.positech-page-content ol {
  padding-left: 1.4em; margin: 0 0 1.1em; display: grid; gap: 6px;
}
.positech-page-content ul li { list-style: disc; }
.positech-page-content ol li { list-style: decimal; }
.positech-page-content strong { color: var(--ink-text); }
.positech-page-content a { color: var(--orange-700); text-decoration: underline; }
.positech-page-content a:hover { color: var(--orange); }

/* Block editor image — float left beside text (About Us style) */
.positech-page-content figure.wp-block-image,
.positech-page-content .wp-block-image { margin: 0 28px 20px 0; float: left; max-width: 260px; }
.positech-page-content figure.wp-block-image img { border-radius: var(--radius-sm); width: 100%; }
.positech-page-content::after { content: ""; display: table; clear: both; }

/* Divider block */
.positech-page-content hr.wp-block-separator {
  border: 0; border-top: 1px solid var(--line); margin: 36px 0;
}

/* ============================================================
   ABOUT US — Quality Certified section
   ============================================================ */
.about-qc-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 4px;
}
.about-qc-tagline {
  font-family: var(--ff-cond); text-transform: uppercase;
  letter-spacing: .16em; font-size: .88rem; font-weight: 600;
  color: var(--orange-700); margin-bottom: 18px; display: block;
}
.about-iso-text {
  font-size: .97rem; color: var(--body-text); max-width: 820px;
}
.about-iso-text strong { font-weight: 700; color: var(--ink-text); }
.about-rule {
  border: 0; border-top: 1px solid var(--line); margin: 32px 0 0;
}
.about-history-section .positech-page-content { max-width: 780px; }
.about-divider-strip {
  padding: 24px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

/* ============================================================
   CUSTOM ROTARY UNIONS — inline content styles
   The block editor on this page renders into .positech-page-content
   so the existing rules apply. Additional overrides for the
   specific sub-sections editors will build:
   ============================================================ */

/* Section heading style inside page content */
.positech-page-content .qd-heading {
  text-align: center; margin-bottom: 20px;
}
/* Design features subheading */
.positech-page-content h3.features-head {
  font-family: var(--ff-cond); text-transform: uppercase;
  letter-spacing: .14em; font-size: .9rem; color: var(--ink-text);
}

/* ============================================================
   RESPONSIVE — about / content
   ============================================================ */
@media (max-width: 680px) {
  .positech-page-content figure.wp-block-image,
  .positech-page-content .wp-block-image { float: none; max-width: 100%; margin: 0 0 20px; }
  .about-divider-strip { padding-left: 22px; padding-right: 22px; }
}

/* ============================================================
   CONTACT FORM 7 — theme integration
   Uses !important on layout properties to override browser
   UA stylesheet and any CF7 inline styles.
   ============================================================ */

.wpcf7 { max-width: 680px; margin: 28px 0 0; }

/* Kill CF7's paragraph layout and line breaks */
.wpcf7-form p {
	margin: 0 0 18px !important;
	display: block;
}
.wpcf7-form p:last-of-type { margin-bottom: 0 !important; }
.wpcf7-form br { display: none !important; }

/* Make the span wrapper block so inputs stack correctly */
.wpcf7-form-control-wrap {
	display: block !important;
	width: 100% !important;
}

/* Labels */
.wpcf7-form label {
	display: block !important;
	font-family: var(--ff-cond) !important;
	text-transform: uppercase !important;
	letter-spacing: .1em !important;
	font-weight: 600 !important;
	font-size: .8rem !important;
	color: var(--slate-2) !important;
	margin-bottom: 7px !important;
}

/* All inputs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
	display: block !important;
	width: 100% !important;
	font-family: var(--ff-body) !important;
	font-size: 1rem !important;
	color: var(--ink-text) !important;
	padding: 12px 14px !important;
	border: 1px solid var(--line) !important;
	border-radius: var(--radius-sm) !important;
	background: var(--mist) !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	transition: border .15s ease, box-shadow .15s ease, background .15s ease;
	margin: 0 !important;
	max-width: 100% !important;
}

.wpcf7-form input[type="hidden"],
.wpcf7-form input[hidden],
.wpcf7-form input[aria-hidden="true"],
.wpcf7-form input.wpcf7-honeypot,
.wpcf7-form .wpcf7-honeypot,
.wpcf7-form .wpcf7-form-control-wrap[class*="honeypot"],
.wpcf7-form .wpcf7-form-control-wrap[data-name*="honeypot"],
.wpcf7-form [style*="display:none"],
.wpcf7-form [style*="display: none"] {
	display: none !important;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	outline: 0 !important;
	border-color: var(--orange) !important;
	background: #fff !important;
	box-shadow: 0 0 0 3px var(--orange-tint) !important;
}
.wpcf7-form textarea {
	resize: vertical !important;
	min-height: 140px !important;
}

/* Select dropdown arrow */
.wpcf7-form select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23565656' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	padding-right: 36px !important;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
	display: inline-block !important;
	width: auto !important;
	font-family: var(--ff-cond) !important;
	text-transform: uppercase !important;
	letter-spacing: .1em !important;
	font-weight: 600 !important;
	font-size: .96rem !important;
	padding: 14px 40px !important;
	border-radius: var(--radius-sm) !important;
	border: 0 !important;
	cursor: pointer !important;
	background: var(--orange) !important;
	color: #fff !important;
	box-shadow: 0 10px 24px -12px rgba(238,140,43,.9) !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	transition: background .16s ease, transform .16s ease;
	margin-top: 8px !important;
}
.wpcf7-form input[type="submit"]:hover {
	background: var(--orange-600) !important;
	transform: translateY(-2px);
}
.wpcf7-form input[type="submit"]:disabled {
	opacity: .6 !important;
	transform: none !important;
	cursor: not-allowed !important;
}

/* Invalid field */
.wpcf7-form .wpcf7-not-valid {
	border-color: #e74c3c !important;
	background: #fff8f8 !important;
}
.wpcf7-not-valid-tip {
	display: block !important;
	color: #c0392b !important;
	font-size: .83rem !important;
	margin-top: 5px !important;
}

/* Response messages */
.wpcf7-response-output {
	margin: 20px 0 0 !important;
	padding: 14px 18px !important;
	border-radius: var(--radius-sm) !important;
	font-size: .95rem !important;
	border: 0 !important;
}
.wpcf7-mail-sent-ok {
	background: var(--orange-tint) !important;
	color: var(--orange-700) !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam-blocked {
	background: #fff0f0 !important;
	color: #c0392b !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
	background: #fff8e6 !important;
	color: #b45309 !important;
}

.wpcf7-spinner { margin-left: 12px; vertical-align: middle; }

/* ============================================================
   UNIFIED PAGE SYSTEM
   Shared section, content, card, band, and page-template polish.
   ============================================================ */

.positech-section {
  padding: clamp(64px, 8vw, 92px) 40px;
}
.positech-section-tight {
  padding-top: clamp(44px, 6vw, 64px);
  padding-bottom: clamp(44px, 6vw, 64px);
}
.positech-section-muted {
  background: var(--mist);
}
.positech-content-section {
  background: var(--paper);
}
.content-narrow,
.content-standard,
.content-wide {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.content-narrow { max-width: 760px; }
.content-standard { max-width: 920px; }
.content-wide { max-width: var(--maxw); }

.positech-card,
.positech-feature-panel,
.feature,
.industry,
.icon-card,
.contact-lower-col,
.process-step,
.clients-columns ul {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.positech-card,
.positech-feature-panel,
.contact-lower-col,
.process-step,
.clients-columns ul {
  padding: clamp(24px, 3vw, 34px);
}
.feature,
.icon-card {
  padding: clamp(24px, 3vw, 34px);
}
.positech-card h3,
.feature h3,
.icon-card h3,
.contact-lower-col h3,
.process-step h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
}
.feature .fico,
.industry .iico,
.icon-card .ic-icon,
.process-step-icon,
.contact-detail .cd-ico {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--orange-tint);
  color: var(--orange-700);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.icon-card .ic-icon {
  background: var(--orange);
  color: #fff;
}

.orange-band,
.applications-band,
.clients-intro-band {
  background: var(--orange);
  color: #fff;
  padding: clamp(36px, 5vw, 56px) 40px;
}
.orange-band h2,
.applications-band h2,
.clients-intro-band h2 {
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  letter-spacing: 0;
  text-transform: none;
}
.orange-band p,
.applications-band p,
.clients-intro-band p {
  max-width: 900px;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
}

.cta-band,
.clients-cta-band {
  padding: clamp(52px, 7vw, 72px) 40px;
}
.cta-band .wrap,
.clients-cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-orange,
.clients-cta-band {
  background: var(--orange);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band-orange::before,
.clients-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(60deg, transparent 0 18px, rgba(255,255,255,.05) 18px 36px);
  pointer-events: none;
}
.cta-band-orange .wrap,
.clients-cta-band .wrap {
  position: relative;
  z-index: 1;
}
.cta-band-orange h2,
.clients-cta-band h2 {
  color: #fff;
}
.cta-band-orange p,
.clients-cta-band p {
  color: rgba(255,255,255,.92);
}

.section-separator {
  padding: 22px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.section-separator-inner {
  display: flex;
  justify-content: center;
}

.positech-page-content {
  max-width: none;
}
.positech-page-content > * {
  max-width: 760px;
}
.positech-page-content > .alignwide,
.positech-page-content > .wp-block-columns,
.positech-page-content > .wp-block-group,
.positech-page-content > .wp-block-table,
.positech-page-content > .wp-block-image {
  max-width: 100%;
}
.positech-page-content h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}
.positech-page-content h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
}
.positech-page-content figure.wp-block-image,
.positech-page-content .wp-block-image {
  float: none;
  max-width: 100%;
  margin: 28px 0;
}
.positech-page-content figure.wp-block-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.positech-page-content .wp-block-columns {
  gap: 28px;
  margin: 34px 0;
}
.positech-page-content .wp-block-column {
  min-width: 0;
}
.positech-page-content .wp-block-button__link,
.positech-page-content .wp-element-button {
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: #fff;
  font-family: var(--ff-cond);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 24px;
  text-decoration: none;
}
.positech-page-content .wp-block-quote {
  margin: 34px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--orange);
  background: var(--mist);
}
.positech-page-content .wp-block-group {
  margin: 34px 0;
}
.positech-page-content .wp-block-group.has-background {
  padding: 28px;
  border-radius: var(--radius);
}

.home-content {
  max-width: 100%;
}
.home-content > .alignwide {
  width: 100%;
}
.home-content > .split {
  margin-bottom: clamp(62px, 7vw, 88px);
}
.home-content > .feature-grid {
  margin-top: 0;
  margin-bottom: clamp(62px, 7vw, 88px);
}
.home-content > .industry-grid {
  margin-top: 32px;
}
.home-content .section-head {
  width: 100%;
  max-width: 820px;
  margin-bottom: 34px;
}
.home-content .section-head.center {
  text-align: center;
}
.home-content .section-head.center .eyebrow {
  text-align: center;
}
.home-content .eyebrow {
  font-size: .94rem;
  letter-spacing: .16em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-indent: .16em;
}
.home-content .split .eyebrow {
  text-indent: 0;
}
.home-content .split h2 {
  max-width: 560px;
}
.home-content .split .lede {
  max-width: 600px;
}
.home-content .split-img:empty::before {
  content: "";
  display: block;
  min-height: 380px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(0,0,0,.04)),
    var(--mist-2);
}

.custom-rotary-content {
  max-width: 100%;
}
.custom-rotary-content > * {
  margin-left: auto;
  margin-right: auto;
}
.custom-rotary-content .qd-heading {
  max-width: 860px;
  margin-bottom: 18px;
  text-align: center;
}
.custom-rotary-content > .lede {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
  color: var(--body-text);
}
.custom-rotary-content > p:not(.lede) {
  max-width: 760px;
  margin-top: 28px;
  margin-bottom: 44px;
}
.custom-rotary-content .design-features {
  max-width: 760px;
  margin-top: 34px;
  margin-bottom: 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}
.custom-rotary-content .design-features .features-head {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--orange-700);
}
.custom-rotary-content .design-features ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 10px;
}
.custom-rotary-content .positech-feature-panel {
  max-width: 920px;
  margin-top: 52px;
  margin-bottom: 52px;
}
.custom-rotary-content .positech-feature-panel .eyebrow {
  font-size: .9rem;
  letter-spacing: .16em;
  line-height: 1.2;
}
.custom-rotary-content .positech-feature-panel h2 {
  max-width: 760px;
}
.custom-rotary-content .positech-feature-panel p {
  max-width: 820px;
}
.custom-rotary-content > .feature-grid {
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 0;
  margin-bottom: 52px;
}
.custom-rotary-content > .feature-grid .feature {
  min-height: 100%;
  padding: 30px;
}
.custom-rotary-content > .feature-grid .feature h3 {
  max-width: 260px;
}
.custom-rotary-content > .feature-grid .feature ol {
  margin-top: 14px;
  padding-left: 1.25em;
  display: grid;
  gap: 8px;
}
.custom-rotary-content > .feature-grid .feature li {
  padding-left: 2px;
}
.custom-rotary-content > .feature-grid .feature li::marker {
  color: var(--orange-700);
  font-weight: 700;
}

.about-cert-panel {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.about-cert-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--orange);
}
.about-cert-panel .eyebrow {
  margin-bottom: 10px;
}
.about-qc-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.about-iso-text {
  max-width: 820px;
  margin-top: 16px;
}
.about-history-section {
  padding-top: clamp(54px, 7vw, 78px);
}
.about-history-section .positech-page-content {
  max-width: 920px;
}

.clients-list-section {
  padding: clamp(54px, 7vw, 78px) 40px;
}
.clients-columns {
  gap: 24px;
}
.clients-columns ul {
  list-style: none;
  padding: clamp(24px, 3vw, 30px);
  margin: 0;
}
.clients-columns li {
  position: relative;
  padding-left: 18px;
}
.clients-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.process-section .wrap {
  max-width: 960px;
}
.process-steps {
  max-width: none;
  display: grid;
  gap: 18px;
}
.process-step {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  padding: clamp(24px, 3vw, 32px);
}
.process-arrow {
  padding: 0;
}
.process-arrow svg {
  height: 28px;
}

.contact-full-layout {
  padding: clamp(54px, 7vw, 78px) 40px;
}
.contact-full-layout .wrap {
  gap: 32px;
}
.contact-form-section {
  max-width: 920px;
}
.contact-form-section,
.contact-lower-col {
  min-width: 0;
}
.contact-form-section h2,
.contact-lower-col h3 {
  font-family: var(--ff-cond);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-text);
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.contact-form-section h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  padding-bottom: 8px;
}
.contact-lower {
  gap: 24px;
  margin-top: 0;
}
.contact-lower-col h3 {
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 8px;
}
.contact-person {
  margin-top: 0;
}
.contact-map {
  margin-top: 0;
}
.contact-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  color: var(--muted);
  font-size: .9rem;
  padding: 20px;
  text-align: center;
}
.contact-address {
  margin-top: 12px;
  font-size: .9rem;
  color: var(--muted);
}

.contact-form-section {
  position: relative;
  overflow: hidden;
}
.contact-form-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--orange);
}
.contact-form-section .wpcf7 {
  max-width: none;
  margin-top: 30px;
}
.contact-form-section .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}
.contact-form-section .wpcf7-form p {
  margin: 0 !important;
  min-width: 0;
}
.contact-form-section .wpcf7-form p:has(textarea),
.contact-form-section .wpcf7-form p:has(input[type="submit"]),
.contact-form-section .wpcf7-form p:has(.wpcf7-response-output),
.contact-form-section .wpcf7-form p:has(.g-recaptcha),
.contact-form-section .wpcf7-form .g-recaptcha-wrap,
.contact-form-section .wpcf7-response-output {
  grid-column: 1 / -1;
}
.contact-form-section .wpcf7-form label {
  margin-bottom: 0 !important;
  color: var(--ink-text) !important;
  font-size: .82rem !important;
}
.contact-form-section .wpcf7-form-control-wrap {
  margin-top: 8px;
}
.contact-form-section .wpcf7-form input[type="text"],
.contact-form-section .wpcf7-form input[type="email"],
.contact-form-section .wpcf7-form input[type="tel"],
.contact-form-section .wpcf7-form input[type="url"],
.contact-form-section .wpcf7-form input[type="number"],
.contact-form-section .wpcf7-form select,
.contact-form-section .wpcf7-form textarea {
  min-height: 48px !important;
  padding: 14px 16px !important;
  border-color: #d5d1c9 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.02) !important;
}
.contact-form-section .wpcf7-form textarea {
  min-height: 170px !important;
}
.contact-form-section .wpcf7-form input[type="text"]:focus,
.contact-form-section .wpcf7-form input[type="email"]:focus,
.contact-form-section .wpcf7-form input[type="tel"]:focus,
.contact-form-section .wpcf7-form input[type="url"]:focus,
.contact-form-section .wpcf7-form select:focus,
.contact-form-section .wpcf7-form textarea:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 4px rgba(238,140,43,.16) !important;
}
.contact-form-section .wpcf7-form input[type="submit"] {
  min-height: 50px !important;
  padding: 15px 34px !important;
  border-radius: 8px !important;
  margin-top: 8px !important;
}
.contact-form-section .wpcf7-form p:has(input[type="hidden"]),
.contact-form-section .wpcf7-form p:has(input[hidden]),
.contact-form-section .wpcf7-form p:has(input[aria-hidden="true"]),
.contact-form-section .wpcf7-form p:has(input.wpcf7-honeypot),
.contact-form-section .wpcf7-form p:has(.wpcf7-honeypot),
.contact-form-section .wpcf7-form p:has(.wpcf7-form-control-wrap[class*="honeypot"]),
.contact-form-section .wpcf7-form p:has(.wpcf7-form-control-wrap[data-name*="honeypot"]),
.contact-form-section .wpcf7-form p[style*="display:none"],
.contact-form-section .wpcf7-form p[style*="display: none"] {
  display: none !important;
}
.contact-form-section .wpcf7-form > p:first-of-type:not(:has(label)):has(input[type="text"]) {
  display: none !important;
}
.contact-form-section .wpcf7-spinner {
  margin-top: 8px;
}
.contact-form-section .wpcf7-not-valid-tip {
  margin-top: 7px !important;
}
.contact-form-section .wpcf7-response-output {
  margin: 8px 0 0 !important;
}

/* ============================================================
   APPLICATION DATA SHEET FORM
   Styling for the Contact Form 7 layout using .positech-data-sheet-form.
   ============================================================ */

.positech-page-content:has(.positech-data-sheet-form),
.content-narrow:has(.positech-data-sheet-form) {
  max-width: 1080px;
}

.wpcf7:has(.positech-data-sheet-form) {
  max-width: none;
  width: 100%;
  margin: 0;
}

.positech-data-sheet-form {
  display: grid;
  gap: 26px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--body-text);
}

.positech-data-sheet-form p {
  margin: 0 !important;
}

.ads-section {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ads-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--orange);
}

.ads-section h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--ink-text);
  font-family: var(--ff-cond);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: .1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ads-section h3::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}

.ads-help {
  margin: -12px 0 20px !important;
  color: var(--muted);
  font-size: .95rem;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 20px;
}

.ads-grid > p {
  display: contents !important;
}

.ads-grid > label,
.ads-grid > p > label,
.ads-grid > .wpcf7-form-control-wrap,
.ads-grid > .ads-choice-group {
  min-width: 0;
}

.ads-grid > label,
.ads-grid > p > label {
  grid-column: span 2;
}

.ads-grid > .ads-full,
.ads-grid > .ads-choice-group.ads-full,
.ads-grid > label.ads-full,
.ads-grid > p > label.ads-full {
  grid-column: 1 / -1;
}

.positech-data-sheet-form label,
.positech-data-sheet-form .ads-label,
.ads-port-head span {
  display: block !important;
  margin: 0 !important;
  color: var(--ink-text) !important;
  font-family: var(--ff-cond) !important;
  font-size: .86rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
}

.positech-data-sheet-form .wpcf7-form-control-wrap {
  margin-top: 8px;
}

.positech-data-sheet-form input[type="text"],
.positech-data-sheet-form input[type="email"],
.positech-data-sheet-form input[type="tel"],
.positech-data-sheet-form input[type="url"],
.positech-data-sheet-form input[type="number"],
.positech-data-sheet-form input[type="date"],
.positech-data-sheet-form select,
.positech-data-sheet-form textarea {
  min-height: 46px !important;
  padding: 12px 14px !important;
  border-color: #d5d1c9 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--ink-text) !important;
  font-size: 1rem !important;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.02) !important;
}

.positech-data-sheet-form textarea {
  min-height: 132px !important;
}

.positech-data-sheet-form input:focus,
.positech-data-sheet-form select:focus,
.positech-data-sheet-form textarea:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 4px rgba(238,140,43,.16) !important;
}

.ads-choice-group {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.ads-choice-group .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 10px;
}

.ads-choice-group .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
}

.ads-choice-group label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--body-text) !important;
  font-family: var(--ff-body) !important;
  font-size: .98rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
}

.ads-choice-group input[type="checkbox"],
.ads-choice-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.ads-port-table {
  width: 100%;
  overflow-x: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.ads-port-table > p,
.ads-port-head > p,
.ads-port-row > p {
  display: contents !important;
}

.ads-port-head,
.ads-port-row {
  display: grid;
  grid-template-columns: minmax(92px, .75fr) minmax(150px, 1.2fr) minmax(145px, 1fr) minmax(145px, 1fr) minmax(92px, .75fr) minmax(145px, 1fr);
  gap: 12px;
  min-width: 880px;
}

.ads-port-head {
  align-items: end;
  margin-bottom: 10px;
  padding: 0 0 12px;
  border-bottom: 2px solid rgba(238,140,43,.28);
}

.ads-port-head span {
  color: var(--muted) !important;
  font-size: .76rem !important;
  letter-spacing: .08em !important;
  line-height: 1.2 !important;
}

.ads-port-row {
  display: none;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(226,224,219,.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px -22px rgba(0,0,0,.45);
}

.ads-port-row:last-child {
  border-bottom: 1px solid rgba(226,224,219,.9);
}

.ads-port-row .wpcf7-form-control-wrap {
  margin-top: 0;
  min-width: 0;
}

.ads-port-row input {
  min-height: 42px !important;
  padding: 10px 12px !important;
  font-size: .95rem !important;
  background: var(--paper) !important;
}

.ads-submit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4px;
}

.ads-submit input[type="submit"],
.positech-data-sheet-form input[type="submit"] {
  min-height: 52px !important;
  padding: 15px 38px !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
}

.positech-data-sheet-form input[type="file"] {
  width: 100%;
  padding: 18px !important;
  border: 1px dashed #c9c5bc !important;
  border-radius: var(--radius) !important;
  background: var(--mist) !important;
  color: var(--body-text) !important;
}

.positech-data-sheet-form .wpcf7-not-valid-tip,
.positech-data-sheet-form .wpcf7-response-output {
  grid-column: 1 / -1;
}

.post-card-grid {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}
.post-card h3 {
  margin-bottom: 8px;
}
.post-card-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--ff-cond);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.post-navigation-wrap {
  margin-top: 48px;
}
.empty-state-button {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .positech-section,
  .orange-band,
  .applications-band,
  .clients-intro-band,
  .cta-band,
  .clients-cta-band,
  .contact-full-layout,
  .clients-list-section,
  .section-separator {
    padding-left: 22px;
    padding-right: 22px;
  }
  .cta-band .wrap,
  .clients-cta-band .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .clients-columns,
  .contact-lower {
    grid-template-columns: 1fr;
  }
  .custom-rotary-content .design-features ul,
  .custom-rotary-content > .feature-grid,
  .contact-form-section .wpcf7-form {
    grid-template-columns: 1fr;
  }
  .ads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ads-grid > label,
  .ads-grid > p > label {
    grid-column: span 1;
  }
  .ads-grid > .ads-full,
  .ads-grid > .ads-choice-group.ads-full,
  .ads-grid > label.ads-full,
  .ads-grid > p > label.ads-full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .process-step {
    grid-template-columns: 1fr;
  }
  .custom-rotary-content .design-features,
  .custom-rotary-content > .feature-grid .feature,
  .custom-rotary-content .positech-feature-panel {
    padding: 24px;
  }
  .ads-section {
    padding: 24px 20px;
  }
  .ads-section h3 {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .ads-section h3::after {
    width: 64px;
    flex: 0 0 3px;
    height: 3px;
    background: var(--orange);
  }
  .ads-grid {
    grid-template-columns: 1fr;
  }
  .ads-grid > label,
  .ads-grid > p > label {
    grid-column: 1 / -1;
  }
  .ads-choice-group .wpcf7-form-control {
    display: grid;
    gap: 10px;
  }
}
