/* =========================================================================
   PIXELORGAN — Design System  (mobile-first rewrite)
   Bold • Modern • Premium • Cinematic
   ========================================================================= */

:root {
  --po-ink:        #05060A;
  --po-ink-soft:   #0B0D14;
  --po-ink-2:      #14172240;
  --po-paper:      #F5F6F8;
  --po-mute:       #9AA0AE;
  --po-line:       rgba(255,255,255,0.08);
  --po-line-2:     rgba(255,255,255,0.14);

  --po-orange:     #D9421C;
  --po-orange-2:   #FF6A3D;
  --po-ice:        #C7D6E3;
  --po-blue:       #6E8FD6;
  --po-azure:      #5876C1;
  --po-sky:        #8FB4E8;

  --po-accent:   var(--po-orange);
  --po-bg:       var(--po-ink);
  --po-fg:       var(--po-paper);

  --po-font-display: 'Sora', system-ui, sans-serif;
  --po-font-body:    'Space Grotesk', system-ui, sans-serif;

  --po-radius-sm: 10px;
  --po-radius:    18px;
  --po-radius-lg: 28px;
  --po-radius-xl: 40px;

  --po-shadow-sm:   0 4px 20px rgba(0,0,0,.25);
  --po-shadow:      0 24px 80px rgba(0,0,0,.45);
  --po-shadow-glow: 0 0 60px rgba(217,66,28,.25);

  --po-container: 1240px;
  --po-ease:      cubic-bezier(.2,.7,.2,1);
  --po-ease-out:  cubic-bezier(.16,1,.3,1);
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
/* Body scroll lock when mobile nav is open */
html.nav-open { overflow: hidden; }

body.po-body {
  margin: 0;
  font-family: var(--po-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--po-fg);
  background: var(--po-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body.po-body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 50% at 80% 0%,  rgba(217,66,28,.18), transparent 60%),
    radial-gradient(50% 40% at 0% 30%,  rgba(88,118,193,.16), transparent 60%),
    radial-gradient(60% 50% at 50% 100%,rgba(143,180,232,.10), transparent 60%);
}
/* Exclude .po-header: it is position:fixed with its own z-index and must not
   be overridden by this rule (which has higher specificity: 0,1,1 vs 0,1,0). */
body.po-body > *:not(.po-header) { position: relative; z-index: 1; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--po-ease); }
a:hover { color: var(--po-orange-2); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--po-font-display);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 .5em;
}
p { margin: 0 0 1em; color: rgba(245,246,248,0.78); }
::selection { background: var(--po-orange); color: #fff; }

/* =========================================================================
   LAYOUT — mobile-first
   ========================================================================= */
.po-container {
  max-width: var(--po-container);
  margin: 0 auto;
  /* Smaller on phones; respects notch / home-bar on iOS */
  padding-left:  max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
}
@media (min-width: 640px) {
  .po-container {
    padding-left:  max(28px, env(safe-area-inset-left, 0px));
    padding-right: max(28px, env(safe-area-inset-right, 0px));
  }
}

/* Sections: smooth scale from mobile to desktop */
.po-section     { padding: clamp(60px, 10vw, 120px) 0; position: relative; }
.po-section--sm { padding: clamp(44px,  8vw,  80px) 0; }
.po-section--xs { padding: clamp(32px,  6vw,  56px) 0; }

.po-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--po-font-body);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--po-mute);
  padding: 8px 16px;
  border: 1px solid var(--po-line-2);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}
.po-eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--po-orange); box-shadow: 0 0 12px var(--po-orange);
  animation: poPulse 2s var(--po-ease) infinite;
}

.po-title-xl { font-size: clamp(2.1rem, 6.5vw, 5.75rem); font-weight: 800; letter-spacing: -0.035em; }
.po-title-lg { font-size: clamp(1.7rem, 4.5vw, 3.75rem); font-weight: 700; }
.po-title-md { font-size: clamp(1.4rem, 3vw,   2.25rem); font-weight: 700; }

.po-lead {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(245,246,248,0.72);
  max-width: 60ch; line-height: 1.7;
}

.po-text-gradient {
  background: linear-gradient(95deg, #fff 0%, #FFB59A 35%, var(--po-orange) 65%, var(--po-sky) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.po-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--po-font-display);
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  border-radius: 999px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--po-ease), box-shadow .35s var(--po-ease), background .35s var(--po-ease);
  white-space: nowrap;
  min-height: 44px; /* accessible tap target */
}
.po-btn--primary {
  background: var(--po-orange); color: #fff;
  box-shadow: 0 10px 30px rgba(217,66,28,.35);
}
.po-btn--primary:hover {
  background: var(--po-orange-2); transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(217,66,28,.55); color: #fff;
}
.po-btn--ghost {
  background: transparent; color: var(--po-fg);
  border: 1px solid var(--po-line-2);
}
.po-btn--ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.po-btn--lg { padding: 17px 28px; font-size: 16px; }
@media (min-width: 640px) { .po-btn--lg { padding: 20px 34px; } }

.po-btn .po-btn__arrow { transition: transform .35s var(--po-ease); }
.po-btn:hover .po-btn__arrow { transform: translateX(4px); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.po-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0;
  transition: padding .3s var(--po-ease), background .3s var(--po-ease), backdrop-filter .3s var(--po-ease);
}
@media (min-width: 640px) { .po-header { padding: 18px 0; } }

.po-header--scrolled {
  padding: 8px 0;
  background: rgba(5,6,10,.8);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--po-line);
}
@media (min-width: 640px) { .po-header--scrolled { padding: 10px 0; } }

.po-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.po-logo { display: flex; align-items: center; gap: 10px; min-width: 0; }
.po-logo img {
  height: 36px; width: auto; flex-shrink: 0;
  transition: height .3s var(--po-ease), transform .35s var(--po-ease);
}
@media (min-width: 640px) { .po-logo img { height: 44px; } }
.po-header--scrolled .po-logo img { height: 32px; }
@media (min-width: 640px) { .po-header--scrolled .po-logo img { height: 38px; } }
.po-logo:hover img { transform: rotate(-6deg) scale(1.05); }
.po-logo__text {
  font-family: var(--po-font-display);
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--po-fg);
  white-space: nowrap;
}
@media (min-width: 640px) { .po-logo__text { font-size: 20px; } }

.po-nav { display: flex; align-items: center; gap: 28px; background: none; }
.po-nav__list {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.po-nav__link {
  display: inline-block; padding: 10px 14px;
  font-family: var(--po-font-body); font-size: 14px; font-weight: 500;
  color: rgba(245,246,248,.78); border-radius: 8px; position: relative;
  transition: color .25s var(--po-ease);
}
.po-nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--po-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--po-ease);
}
.po-nav__link:hover, .current-menu-item > .po-nav__link { color: #fff; }
.po-nav__link:hover::after, .current-menu-item > .po-nav__link::after { transform: scaleX(1); }
.po-nav__cta { margin-left: 8px; }

/* Mobile burger toggle */
.po-nav-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--po-line-2); background: rgba(255,255,255,.02);
  align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  transition: background .25s var(--po-ease), border-color .25s var(--po-ease);
}
.po-nav-toggle.is-active {
  background: var(--po-orange);
  border-color: var(--po-orange);
}
.po-nav-toggle span,
.po-nav-toggle span::before,
.po-nav-toggle span::after {
  display: block; width: 18px; height: 1.5px; background: var(--po-fg);
  transition: transform .35s var(--po-ease), opacity .25s var(--po-ease), background .25s var(--po-ease);
}
.po-nav-toggle span::before, .po-nav-toggle span::after { content: ""; position: absolute; left: 13px; }
.po-nav-toggle span::before { transform: translateY(-6px); }
.po-nav-toggle span::after  { transform: translateY(6px); }
.po-nav-toggle.is-active span { background: transparent; }
.po-nav-toggle.is-active span::before { transform: rotate(45deg); background: #fff; }
.po-nav-toggle.is-active span::after  { transform: rotate(-45deg); background: #fff; }

@media (max-width: 980px) {
  .po-nav-toggle { display: inline-flex; }

  /* Always show a solid header background on mobile — the header is now
     position:fixed (fix 1 restored this) so it floats over page content.
     Without a background it would be see-through. */
  .po-header { background: rgba(5,6,10,.97); }

  /*
   * When nav is open, kill the header's backdrop-filter.
   * In WebKit/Safari, backdrop-filter on a parent creates a compositing layer
   * that traps position:fixed children inside it — the nav's own background
   * gets rendered inside that blurred layer and becomes see-through.
   * Removing backdrop-filter when the nav opens breaks out of that trap.
   */
  html.nav-open .po-header,
  html.nav-open .po-header--scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(5,6,10,.98) !important;
  }

  /* Full-screen dim behind the open nav */
  html.nav-open::after {
    content: "";
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 101;
    pointer-events: none;
  }

  /* Header and nav sit above the dim overlay */
  .po-header { z-index: 102; }

  .po-nav {
    position: fixed;
    top: 72px; left: 12px; right: 12px;
    z-index: 103;
    flex-direction: column; align-items: stretch;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    /* Solid opaque orange — no alpha, no gradients that compositing can eat */
    background-color: #C93A18;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.8);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--po-ease), opacity .3s var(--po-ease);
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .po-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }

  .po-nav__list { flex-direction: column; align-items: stretch; gap: 0; }

  .po-nav__link {
    padding: 15px 18px; font-size: 16px; font-weight: 600;
    color: #ffffff; border-radius: 10px;
    min-height: 52px; display: flex; align-items: center;
    letter-spacing: .01em;
  }
  .po-nav__link::after { display: none; }
  .po-nav__link:hover,
  .current-menu-item > .po-nav__link {
    background: rgba(0,0,0,.2);
    color: #ffffff;
  }

  /* Divider lines between items */
  .po-nav__item + .po-nav__item { border-top: 1px solid rgba(255,255,255,.15); }

  .po-nav__cta {
    margin: 8px 0 0; padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.25);
  }
  /* White CTA button — inverts against the orange panel */
  .po-nav > .po-btn.po-nav__cta {
    align-self: stretch; justify-content: center;
    background: #ffffff; color: #C93A18; border-color: transparent;
    font-weight: 700;
  }
  .po-nav > .po-btn.po-nav__cta:hover { background: rgba(255,255,255,.88); }
}

/* Spacer so content starts below fixed header */
.po-header-spacer { height: 72px; }
@media (min-width: 640px) { .po-header-spacer { height: 92px; } }

/* Desktop: push header below the 32px WordPress admin bar.
   WordPress hides the admin bar below 783px, so mobile is unaffected.
   body.admin-bar is added by WordPress only when the bar is active. */
@media screen and (min-width: 783px) {
  body.admin-bar .po-header { top: 32px; }
}

/* =========================================================================
   HERO (HOMEPAGE) — mobile-first
   ========================================================================= */
.po-hero {
  position: relative;
  padding: clamp(36px, 8vw, 80px) 0 clamp(48px, 8vw, 100px);
  overflow: hidden;
}

/* Single column on mobile, 2-col on wider screens */
.po-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 640px) {
  .po-hero__grid {
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 64px;
  }
}

.po-hero__title { margin: 16px 0 18px; }
.po-hero__title em {
  font-style: normal; color: var(--po-orange);
  position: relative; display: inline-block;
}
.po-hero__title em::after {
  content: "";
  position: absolute; left: -4px; right: -4px; bottom: 4px; height: 10px;
  background: rgba(217,66,28,.18); z-index: -1; border-radius: 4px;
  transform: skewX(-12deg);
}

.po-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
/* Stack buttons on very small screens */
@media (max-width: 480px) {
  .po-hero__cta { flex-direction: column; }
  .po-hero__cta .po-btn { width: 100%; justify-content: center; }
}
@media (min-width: 640px) { .po-hero__cta { margin-top: 30px; gap: 14px; } }

/* 3-column grid for stats — keeps all 3 visible without flex-wrap chaos */
.po-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--po-line);
}
@media (min-width: 640px) { .po-hero__meta { gap: 32px; margin-top: 48px; padding-top: 28px; } }

.po-hero__meta-item strong {
  display: block; font-family: var(--po-font-display);
  font-size: clamp(20px, 5vw, 32px); font-weight: 700; color: #fff;
}
.po-hero__meta-item span { font-size: clamp(10px, 1.5vw, 13px); color: var(--po-mute); letter-spacing: .04em; }

/* Hero visual: hidden on tiny screens, capped on medium mobile */
.po-hero__visual {
  position: relative; aspect-ratio: 1 / 1;
  display: none; /* hidden < 480px — copy gets full focus */
  align-items: center; justify-content: center;
}
@media (min-width: 480px) {
  .po-hero__visual { display: flex; }
}
/* On single-column layout, limit the visual so it doesn't dominate */
@media (min-width: 480px) and (max-width: 639px) {
  .po-hero__visual { max-width: 300px; margin: 0 auto; }
}

.po-hero__halo {
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side, rgba(217,66,28,.35), transparent 65%),
    radial-gradient(closest-side at 30% 30%, rgba(88,118,193,.35), transparent 60%);
  filter: blur(40px);
  animation: poHaloFloat 8s var(--po-ease) infinite alternate;
}
.po-hero__logo {
  position: relative; width: 78%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  animation: poFloat 6s ease-in-out infinite;
}
.po-hero__ring {
  position: absolute; inset: -2%;
  border: 1px dashed rgba(255,255,255,.18); border-radius: 50%;
  animation: poSpin 40s linear infinite;
}
.po-hero__ring--2 { inset: 8%; animation-duration: 30s; animation-direction: reverse; }

/* =========================================================================
   HOME — SECONDARY LOGO BRAND STRIP
   ========================================================================= */
.po-brand-strip {
  padding: clamp(52px, 11vw, 160px) 0;
  border-top: 1px solid var(--po-line); border-bottom: 1px solid var(--po-line);
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(65% 75% at 50% 50%, rgba(217,66,28,.20), transparent 68%),
    radial-gradient(42% 52% at 8%  18%, rgba(88,118,193,.22), transparent 65%),
    radial-gradient(40% 50% at 92% 82%, rgba(155,90,220,.18), transparent 62%),
    radial-gradient(32% 42% at 88% 12%, rgba(64,200,180,.13), transparent 60%),
    radial-gradient(48% 38% at 50% 105%, rgba(217,66,28,.12), transparent 70%),
    linear-gradient(158deg, rgba(12,8,22,.97) 0%, rgba(5,6,10,1) 55%, rgba(9,5,20,.97) 100%);
}
.po-brand-strip::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px),
    repeating-linear-gradient( 45deg, rgba(255,255,255,.018) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(-45deg, rgba(88,118,193,.024) 0 1px, transparent 1px 56px);
  background-size: 36px 36px, 56px 56px, 56px 56px;
  mask-image: radial-gradient(75% 75% at 50% 50%, #000 18%, transparent 82%);
  -webkit-mask-image: radial-gradient(75% 75% at 50% 50%, #000 18%, transparent 82%);
  pointer-events: none;
}
.po-brand-strip::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 82%; aspect-ratio: 4 / 1;
  background:
    radial-gradient(closest-side,           rgba(217,66,28,.35),  transparent 70%),
    radial-gradient(closest-side at 22% 50%, rgba(88,118,193,.26), transparent 70%),
    radial-gradient(closest-side at 78% 50%, rgba(155,90,220,.22), transparent 70%);
  filter: blur(55px);
  animation: poHaloFloat 9s var(--po-ease) infinite alternate;
  pointer-events: none; z-index: 0;
}
.po-brand-strip__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(18px, 3vw, 40px);
}
.po-brand-strip img {
  width: clamp(240px, 82vw, 820px);
  max-width: 820px; max-height: none; height: auto;
  filter:
    drop-shadow(0 20px 50px rgba(217,66,28,.30))
    drop-shadow(0 8px 24px rgba(0,0,0,.45));
  transition: transform .8s var(--po-ease), filter .8s var(--po-ease);
}
.po-brand-strip:hover img {
  transform: scale(1.02);
  filter:
    drop-shadow(0 28px 60px rgba(217,66,28,.40))
    drop-shadow(0 10px 30px rgba(0,0,0,.50));
}
.po-brand-strip__tag {
  font-family: var(--po-font-display);
  font-size: clamp(10px, 1.05vw, 16px);
  letter-spacing: clamp(.12em, .6vw, .55em);
  text-transform: uppercase; color: var(--po-mute);
  display: inline-flex; align-items: center;
  gap: clamp(8px, 2vw, 28px);
  padding: 10px 14px;
  border: 1px solid var(--po-line-2); border-radius: 999px;
  background: rgba(5,6,10,.45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  /* Prevent overflow on narrow viewports */
  max-width: calc(100vw - 40px);
}
@media (min-width: 640px) { .po-brand-strip__tag { padding: 14px 28px; } }

.po-brand-strip__tag::before, .po-brand-strip__tag::after {
  content: ""; display: inline-block; flex-shrink: 0;
  width: clamp(14px, 4vw, 60px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--po-orange), transparent);
}

/* =========================================================================
   GRIDS — mobile-first: 1 → 2 → 3 columns
   ========================================================================= */
.po-grid { display: grid; gap: 16px; }

@media (min-width: 560px) {
  .po-grid            { gap: 20px; }
  .po-grid--2         { grid-template-columns: repeat(2, 1fr); }
  .po-grid--3         { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .po-grid            { gap: 24px; }
  .po-grid--3         { grid-template-columns: repeat(3, 1fr); }
}

.po-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(32px, 5vw, 56px);
}
.po-section-head__left { max-width: 720px; }
@media (max-width: 800px) { .po-section-head { flex-direction: column; align-items: flex-start; } }

/* =========================================================================
   SERVICE CARDS
   ========================================================================= */
.po-card {
  position: relative;
  padding: clamp(22px, 4vw, 36px) clamp(18px, 3.5vw, 32px);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--po-line-2); border-radius: var(--po-radius-lg);
  overflow: hidden;
  transition: transform .5s var(--po-ease), border-color .5s var(--po-ease);
}
.po-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at var(--mx,50%) var(--my,0%), rgba(217,66,28,.18), transparent 60%);
  opacity: 0; transition: opacity .4s var(--po-ease); pointer-events: none;
}
.po-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.24); }
.po-card:hover::before { opacity: 1; }
.po-card__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217,66,28,.18), rgba(143,180,232,.10));
  border: 1px solid var(--po-line-2); margin-bottom: 18px; color: var(--po-orange);
}
.po-card__icon svg { width: 26px; height: 26px; }
.po-card h3 { font-size: clamp(18px, 2.5vw, 22px); margin-bottom: 10px; }
.po-card__tag { font-family: var(--po-font-display); font-size: 12px; letter-spacing: .25em; color: var(--po-mute); }
.po-card__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--po-font-display); font-weight: 600; font-size: 14px; color: var(--po-orange);
}
.po-card__link svg { transition: transform .3s var(--po-ease); }
.po-card:hover .po-card__link svg { transform: translateX(4px); }

/* =========================================================================
   STATS
   ========================================================================= */
.po-stat {
  padding: clamp(18px, 3.5vw, 32px) clamp(16px, 3vw, 28px);
  border: 1px solid var(--po-line-2); border-radius: var(--po-radius);
  background: rgba(255,255,255,.02); text-align: left;
}
.po-stat__num {
  font-family: var(--po-font-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff, #FFB59A);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.po-stat__label { color: var(--po-mute); font-size: 14px; letter-spacing: .05em; margin-top: 8px; }

/* =========================================================================
   PROCESS TIMELINE — vertical on mobile, horizontal on large screens
   ========================================================================= */
.po-process {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
/* Vertical connector line (mobile) */
.po-process::before {
  content: ""; position: absolute;
  left: 37px; top: 0; bottom: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(217,66,28,.5), rgba(143,180,232,.5), transparent);
}
.po-process__step {
  position: relative;
  padding: 0 0 40px 104px;
  min-height: 110px;
}
.po-process__step:last-child { padding-bottom: 0; min-height: auto; }
.po-process__num {
  position: absolute; left: 0; top: 0; z-index: 2;
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--po-font-display); font-weight: 700; font-size: 22px;
  background: var(--po-ink-soft); border: 1px solid var(--po-line-2);
  transition: transform .4s var(--po-ease), background .4s var(--po-ease), border-color .4s var(--po-ease);
}
.po-process__step:hover .po-process__num {
  transform: scale(1.08); background: var(--po-orange); border-color: var(--po-orange);
  box-shadow: 0 0 40px rgba(217,66,28,.5);
}
.po-process__step h4 { font-size: 18px; margin-bottom: 6px; padding-top: 12px; }
.po-process__step p  { font-size: 14px; color: var(--po-mute); margin: 0; }

/* Horizontal layout at wide screens */
@media (min-width: 960px) {
  .po-process { grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .po-process::before {
    left: 0; right: 0; top: 38px; bottom: auto;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217,66,28,.5), rgba(143,180,232,.5), transparent);
  }
  .po-process__step { padding: 0 12px; min-height: 0; }
  .po-process__step h4 { padding-top: 0; }
  .po-process__num { position: relative; left: auto; top: auto; margin-bottom: 24px; }
}

/* =========================================================================
   PAGE HEADER (subpages)
   ========================================================================= */
.po-pagehead {
  padding: clamp(32px, 8vw, 60px) 0;
  position: relative;
}
.po-pagehead__inner { max-width: 880px; }
.po-pagehead h1 { margin: 14px 0 12px; }
.po-pagehead p { font-size: clamp(15px, 2vw, 18px); color: var(--po-mute); max-width: 60ch; }

/* =========================================================================
   FEATURE LIST
   ========================================================================= */
.po-feature {
  display: flex; gap: 16px;
  padding: clamp(18px, 3.5vw, 28px);
  border: 1px solid var(--po-line-2); border-radius: var(--po-radius);
  background: rgba(255,255,255,.025);
  transition: transform .4s var(--po-ease), border-color .4s var(--po-ease), background .4s var(--po-ease);
}
.po-feature:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.po-feature__num {
  flex: 0 0 36px; width: 36px; height: 36px;
  font-family: var(--po-font-display); font-weight: 700; font-size: 14px;
  color: var(--po-orange); border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(217,66,28,.4); background: rgba(217,66,28,.08);
}
.po-feature h4 { font-size: clamp(15px, 2vw, 18px); margin-bottom: 6px; }
.po-feature p  { color: var(--po-mute); margin: 0; font-size: 14px; }

/* =========================================================================
   PORTFOLIO GRID — mobile-first
   ========================================================================= */
.po-portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

@media (min-width: 560px) {
  .po-portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .po-portfolio-item--wide { grid-column: span 2; }
}
@media (min-width: 800px) {
  .po-portfolio-grid { grid-template-columns: repeat(12, 1fr); gap: 24px; }
  .po-portfolio-item--wide { grid-column: span 8; }
  .po-portfolio-item--tall { grid-column: span 4; aspect-ratio: 4 / 5; }
  .po-portfolio-item--sq   { grid-column: span 6; }
  .po-portfolio-item--full { grid-column: span 12; aspect-ratio: 16 / 7; }
}

.po-portfolio-item {
  position: relative; border-radius: var(--po-radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1d2a, #0b0d14);
  border: 1px solid var(--po-line-2); cursor: pointer;
  transition: transform .5s var(--po-ease);
}
.po-portfolio-item:hover { transform: translateY(-4px); }
.po-portfolio-item__bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  transition: transform .8s var(--po-ease);
}
.po-portfolio-item:hover .po-portfolio-item__bg { transform: scale(1.06); }
.po-portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,6,10,.92));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(14px, 3vw, 28px);
}
.po-portfolio-item__tag {
  font-family: var(--po-font-display); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase; color: var(--po-orange);
}
.po-portfolio-item__title { font-size: clamp(16px, 2.5vw, 22px); margin: 6px 0 0; }
.po-portfolio-item__sub   { color: var(--po-mute); font-size: 13px; margin-top: 4px; }
.po-portfolio-item__btn {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--po-line-2);
  transition: background .3s var(--po-ease), transform .3s var(--po-ease);
}
.po-portfolio-item:hover .po-portfolio-item__btn {
  background: var(--po-orange); transform: rotate(-45deg); border-color: var(--po-orange);
}

.po-bg-1 { background: radial-gradient(120% 80% at 0% 0%, #D9421C 0%, #14172a 60%); }
.po-bg-2 { background: radial-gradient(120% 80% at 100% 0%, #5876C1 0%, #0b0d14 60%); }
.po-bg-3 { background: radial-gradient(120% 80% at 50% 100%, #8FB4E8 0%, #14172a 60%); }
.po-bg-4 { background: linear-gradient(135deg, #D9421C 0%, #5876C1 100%); }
.po-bg-5 { background: linear-gradient(135deg, #1a1d2a 0%, #D9421C 100%); }
.po-bg-6 { background: linear-gradient(225deg, #8FB4E8 0%, #1a1d2a 60%, #D9421C 100%); }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.po-testimonials { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .po-testimonials { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 960px) { .po-testimonials { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.po-testimonial {
  padding: clamp(22px, 3.5vw, 36px);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--po-line-2); border-radius: var(--po-radius-lg); position: relative;
  transition: transform .5s var(--po-ease), border-color .5s var(--po-ease);
}
.po-testimonial:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.22); }
.po-testimonial__quote { font-family: var(--po-font-display); font-size: 52px; color: var(--po-orange); line-height: 1; margin-bottom: 8px; opacity: .55; }
.po-testimonial__body { font-size: 15px; color: rgba(245,246,248,.85); margin-bottom: 20px; }
.po-testimonial__person { display: flex; align-items: center; gap: 14px; }
.po-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--po-orange), var(--po-blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--po-font-display); font-weight: 700; color: #fff;
}
.po-testimonial__name { font-family: var(--po-font-display); font-weight: 600; font-size: 14px; }
.po-testimonial__role { color: var(--po-mute); font-size: 13px; }
.po-testimonial__stars { color: #FFC857; letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.po-faq { max-width: 880px; margin: 0 auto; }
.po-faq__item { border-bottom: 1px solid var(--po-line); padding: 4px 0; }
.po-faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 4px;
  font-family: var(--po-font-display); font-weight: 600;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--po-fg); min-height: 56px;
  transition: color .25s var(--po-ease);
}
.po-faq__q:hover { color: var(--po-orange-2); }
.po-faq__plus {
  width: 32px; height: 32px; border-radius: 50%; flex: 0 0 32px;
  border: 1px solid var(--po-line-2);
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  transition: transform .4s var(--po-ease), background .3s var(--po-ease);
}
.po-faq__plus::before, .po-faq__plus::after {
  content: ""; position: absolute; width: 12px; height: 1.5px;
  background: var(--po-fg); transition: transform .3s var(--po-ease);
}
.po-faq__plus::after { transform: rotate(90deg); }
.po-faq__item.is-open .po-faq__plus { background: var(--po-orange); border-color: var(--po-orange); }
.po-faq__item.is-open .po-faq__plus::after { transform: rotate(0deg); }
.po-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--po-ease), padding .3s var(--po-ease);
  color: var(--po-mute); font-size: clamp(14px, 1.5vw, 16px);
}
/* Increased from 400px — some answers are longer */
.po-faq__item.is-open .po-faq__a { max-height: 600px; padding: 0 4px 24px; }

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.po-cta-block {
  position: relative;
  padding: clamp(28px, 6vw, 88px);
  border-radius: clamp(var(--po-radius), 4vw, var(--po-radius-xl));
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(217,66,28,.35), transparent 60%),
    radial-gradient(80% 120% at 100% 100%, rgba(88,118,193,.30), transparent 60%),
    linear-gradient(180deg, #0F1119, #07080d);
  border: 1px solid var(--po-line-2);
  overflow: hidden;
}
.po-cta-block::before {
  content: ""; position: absolute; inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(217,66,28,.18), transparent 30%);
  animation: poSpin 22s linear infinite; pointer-events: none;
}
.po-cta-block > * { position: relative; z-index: 1; }
.po-cta-block h2 { font-size: clamp(1.55rem, 4.5vw, 3.5rem); max-width: 22ch; }
.po-cta-block p  { max-width: 60ch; font-size: clamp(15px, 2.5vw, 18px); }
.po-cta-block__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
/* Stack CTA buttons on small screens */
@media (max-width: 480px) {
  .po-cta-block__actions { flex-direction: column; }
  .po-cta-block__actions .po-btn { width: 100%; justify-content: center; }
}
@media (min-width: 640px) { .po-cta-block__actions { gap: 14px; margin-top: 28px; } }

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.po-contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .po-contact-grid { grid-template-columns: 1.1fr .9fr; gap: 56px; } }

.po-form { display: grid; gap: 18px; }
.po-field { display: grid; gap: 8px; }
.po-field--row { grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) { .po-field--row { grid-template-columns: 1fr 1fr; } }

.po-field label {
  font-family: var(--po-font-display); font-weight: 500; font-size: 13px;
  color: var(--po-mute); letter-spacing: .04em;
}
.po-input, .po-textarea {
  width: 100%; padding: 14px 16px;
  /* 16px prevents iOS auto-zoom on focus */
  font: inherit; font-size: 16px;
  color: var(--po-fg); background: rgba(255,255,255,.03);
  border: 1px solid var(--po-line-2); border-radius: 12px;
  -webkit-appearance: none; appearance: none; /* fix iOS rounding */
  transition: border-color .25s var(--po-ease), background .25s var(--po-ease), box-shadow .25s var(--po-ease);
}
.po-input:focus, .po-textarea:focus {
  outline: none; border-color: var(--po-orange);
  background: rgba(255,255,255,.05); box-shadow: 0 0 0 4px rgba(217,66,28,.12);
}
.po-input.is-error, .po-textarea.is-error { border-color: #ff6363; box-shadow: 0 0 0 4px rgba(255,99,99,.12); }
.po-textarea { min-height: 130px; resize: vertical; }
.po-field__error { color: #ff8a8a; font-size: 12px; margin-top: 4px; min-height: 14px; }

.po-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.po-form__submit { display: flex; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.po-form__status { font-size: 14px; }
.po-form__status.is-success { color: #8AE38A; }
.po-form__status.is-error   { color: #ff8a8a; }
.po-form.is-loading .po-btn--primary { opacity: .7; pointer-events: none; }

.po-contact-card {
  padding: clamp(20px, 4vw, 36px);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--po-line-2); border-radius: var(--po-radius-lg);
}
.po-contact-card h3 { margin-bottom: 20px; font-size: clamp(18px, 2.5vw, 22px); }
.po-contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid var(--po-line);
}
.po-contact-item:first-of-type { border-top: 0; padding-top: 0; }
.po-contact-item__icon {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(217,66,28,.18), rgba(143,180,232,.10));
  border: 1px solid var(--po-line-2); color: var(--po-orange);
}
.po-contact-item__icon svg { width: 20px; height: 20px; }
.po-contact-item__label { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--po-mute); margin-bottom: 4px; }
.po-contact-item__value { font-family: var(--po-font-display); font-weight: 500; font-size: 15px; color: var(--po-fg); }
.po-contact-item__value a:hover { color: var(--po-orange-2); }

.po-map {
  margin-top: 20px; height: 180px; border-radius: var(--po-radius);
  background:
    linear-gradient(135deg, rgba(217,66,28,.18), rgba(88,118,193,.18)),
    repeating-linear-gradient( 45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 14px),
    #0b0d14;
  border: 1px solid var(--po-line-2);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.po-map__pin {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(5,6,10,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--po-line-2);
  font-family: var(--po-font-display); font-weight: 500; font-size: 14px;
  max-width: calc(100% - 32px);
}
.po-map__pin::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--po-orange); box-shadow: 0 0 12px var(--po-orange);
  animation: poPulse 2s infinite;
}

/* =========================================================================
   FOOTER — mobile-first
   ========================================================================= */
.po-footer {
  margin-top: clamp(48px, 8vw, 80px);
  padding: clamp(48px, 8vw, 80px) 0 32px;
  border-top: 1px solid var(--po-line);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.4));
}
.po-footer__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 36px; margin-bottom: 40px;
}
@media (min-width: 560px) { .po-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 960px) { .po-footer__grid { grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 48px; margin-bottom: 56px; } }

.po-footer__brand img {
  max-height: 52px;
  max-width: 180px; /* prevent wide wordmark overflowing the column */
  width: auto; margin-bottom: 16px;
}
.po-footer__brand p { color: var(--po-mute); font-size: 14px; max-width: 38ch; }

.po-footer h5 {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--po-mute); margin-bottom: 16px;
}
.po-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.po-footer__list a { font-size: 14px; color: rgba(245,246,248,.78); }
.po-footer__list a:hover { color: var(--po-orange-2); }

.po-socials { display: flex; gap: 10px; margin-top: 18px; }
.po-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--po-line-2); color: var(--po-fg);
  transition: background .3s var(--po-ease), border-color .3s var(--po-ease), transform .3s var(--po-ease);
}
.po-socials a:hover { background: var(--po-orange); border-color: var(--po-orange); transform: translateY(-2px); }
.po-socials svg { width: 16px; height: 16px; }

.po-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--po-line);
  color: var(--po-mute); font-size: 13px;
}

/* =========================================================================
   UTILITIES
   ========================================================================= */
.po-center { text-align: center; }
.po-mt-0 { margin-top: 0; }
.po-mt-2 { margin-top: 16px; }
.po-mt-4 { margin-top: 32px; }
.po-mt-6 { margin-top: 48px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
