/* ==========================================================================
   Patchehub — Design System
   Tokens extracted from the live site (Cleeny theme + Elementor build).
   ========================================================================== */

:root {
  /* Brand palette */
  --pp-navy:        #02022A;   /* footer, mobile nav, deep surfaces      */
  --pp-navy-700:    #0A0A3D;   /* lifted navy for cards on dark          */
  --pp-red:         #B30000;   /* top bar, quote form, primary surfaces  */
  --pp-red-cta:     #BD0000;   /* header CTA button                      */
  --pp-red-deep:    #8F0000;   /* pressed / gradient end                 */
  --pp-gold:        #FFC703;   /* hover + highlight accent               */
  --pp-indigo:      #263B91;   /* secondary accent, rules                */
  --pp-blue:        #2F6EFF;   /* button hover fill (source theme a.dtbtn) */

  /* Neutrals */
  --pp-white:       #FFFFFF;
  --pp-lav:         #A7ABC8;   /* footer icons, muted on dark            */
  --pp-lav-light:   #B9BBD2;   /* footer body copy                       */
  --pp-ink:         #3F3F3F;   /* body copy on light                     */
  --pp-ink-soft:    #6A6A72;
  --pp-surface:     #F3F4F8;   /* light section background               */
  --pp-line:        #E4E6F0;

  /* Typography */
  --font-body:    "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ui:      "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Roboto Condensed", "Poppins", system-ui, sans-serif;

  /* Rhythm */
  --container: 1320px;
  --gutter: 24px;
  --section-y: 90px;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(2, 2, 42, .06);
  --shadow-md: 0 10px 30px rgba(2, 2, 42, .10);
  --shadow-lg: 0 24px 60px rgba(2, 2, 42, .16);

  --radius: 6px;
  --radius-lg: 12px;
  --ease: cubic-bezier(.4, 0, .2, 1);          /* standard UI easing        */
  --ease-out: cubic-bezier(.22, 1, .36, 1);    /* decelerating, for entrances */
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);/* slight overshoot, for pops  */
}

/* --------------------------------------------------------------- Reset -- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip; /* clips fixed off-canvas panels; overflow-x:hidden on body alone does not, in Safari */
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--pp-ink);
  background: var(--pp-white);
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }

h1, h2, h3, h4, h5, h6 { margin: 0 0 16px; font-family: var(--font-display); line-height: 1.25; color: var(--pp-navy); font-weight: 700; }
h1 { font-size: clamp(34px, 5vw, 52px); }
h2 { font-size: clamp(28px, 3.6vw, 40px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }
h4 { font-size: 20px; }

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* UA defaults here are margin:1em 40px, which silently indents quote text and
   figure content away from the rest of the card. */
blockquote, figure, figcaption { margin: 0; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--pp-gold); outline-offset: 2px; border-radius: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------- Utilities -- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 940px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: 60px; }
.section--surface { background: var(--pp-surface); }
.section--navy { background: var(--pp-navy); color: var(--pp-lav-light); }
.section--navy h2, .section--navy h3 { color: var(--pp-white); }

.text-center { text-align: center; }

/* Section title — mirrors the theme's .section-title.style1.center */
.section-title { margin-bottom: 46px; }
.section-title.center { text-align: center; }
.section-title .title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--pp-navy);
  margin: 0;
  position: relative;
  padding-bottom: 18px;
}
.section-title.center .title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 74px; height: 3px;
  background: var(--pp-red);
  border-radius: 3px;
}
.section-title.center .title::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -3px;
  transform: translateX(-50%);
  width: 10px; height: 9px;
  background: var(--pp-gold);
  border-radius: 50%;
  z-index: 1;
}
.section-title .subtitle {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pp-red);
  margin-bottom: 10px;
}
.section--navy .section-title .title { color: var(--pp-white); }

/* ------------------------------------------------------------- Buttons -- */

/* Pill button with a blue overlay that scales up from the centre on hover —
   this is the source site's `a.dtbtn` behaviour, reproduced exactly:
   border-radius 30px, 13px/30px padding, Poppins 500, and a ::before layer
   at #2F6EFF going scale(0) -> scale(1) over .5s. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding: 13px 30px;
  border: 2px solid transparent;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  transition: color .4s var(--ease), border-color .4s var(--ease),
              background-color .4s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: -2px;                       /* covers the border box too */
  border-radius: inherit;
  background: var(--pp-blue);
  transform: scale(0);
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn:hover::before,
.btn:focus-visible::before { transform: scale(1); }
.btn:hover, .btn:focus-visible { color: var(--pp-white); border-color: var(--pp-blue); }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--pp-red-cta); border-color: var(--pp-red-cta); color: var(--pp-white); }
.btn--gold    { background: var(--pp-gold);    border-color: var(--pp-gold);    color: var(--pp-navy);  }
.btn--ghost   { background: transparent;       border-color: var(--pp-white);   color: var(--pp-white); }
.btn--outline { background: transparent;       border-color: var(--pp-red);     color: var(--pp-red);   }
.btn--navy    { background: var(--pp-navy);    border-color: var(--pp-navy);    color: var(--pp-white); }

.btn--block { width: 100%; }
.btn--lg { padding: 17px 40px; font-size: 17px; }
.btn--sm { padding: 10px 22px; font-size: 14.5px; }

/* ================================================================ HEADER == */

.header-top {
  background: var(--pp-red);
  color: var(--pp-white);
  font-family: var(--font-ui);
  font-size: 14px;
}
.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 46px;
  padding-block: 6px;
}
.header-top__list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 28px; }
.header-top__list li { display: flex; align-items: center; gap: 9px; }
.header-top__list svg { width: 15px; height: 15px; fill: var(--pp-gold); flex: none; }
.header-top a:hover { color: var(--pp-gold); }

.header-top__social { display: flex; align-items: center; gap: 10px; }
.header-top__social a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.header-top__social svg { width: 14px; height: 14px; fill: currentColor; }
.header-top__social a:hover {
  background: var(--pp-gold);
  border-color: var(--pp-gold);
  color: var(--pp-navy);
}

/* --- Nav bar ------------------------------------------------------------ */

.nav-bar {
  background: var(--pp-white);
  box-shadow: 0 1px 0 var(--pp-line);
  position: relative;
  z-index: 60;
}
.nav-bar.is-stuck {
  position: fixed;
  inset-inline: 0;
  top: 0;
  box-shadow: var(--shadow-md);
  animation: pp-drop .4s var(--ease);
}
@keyframes pp-drop { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.nav-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
}

.brand { display: flex; align-items: center; flex: none; }
.brand img, .brand svg { width: 190px; height: auto; }

.nav { display: flex; align-items: center; gap: 34px; margin-inline-start: auto; }

.nav__list { display: flex; align-items: center; gap: 32px; }
.nav__list > li { position: relative; }
.nav__list > li > a {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  color: var(--pp-navy);
  padding-block: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 26px;
  width: 0; height: 2px;
  background: var(--pp-red);
  transition: width .3s var(--ease);
}
.nav__list > li > a:hover,
.nav__list > li.is-active > a { color: var(--pp-red); }
.nav__list > li > a:hover::after,
.nav__list > li.is-active > a::after { width: 100%; }

.nav__caret { width: 9px; height: 9px; fill: currentColor; transition: transform .3s var(--ease); }
.nav__list > li:hover .nav__caret { transform: rotate(180deg); }

/* Dropdown */
.nav__sub {
  position: absolute;
  top: 100%;
  left: -22px;
  min-width: 246px;
  background: var(--pp-white);
  border-top: 3px solid var(--pp-red);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav__list > li:hover > .nav__sub,
.nav__list > li:focus-within > .nav__sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__sub a {
  display: block;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--pp-navy);
  padding: 10px 24px;
  border-left: 3px solid transparent;
}
.nav__sub a:hover {
  color: var(--pp-red);
  border-left-color: var(--pp-red);
  background: var(--pp-surface);
  padding-left: 28px;
}

.nav-cta { flex: none; }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  background: var(--pp-red-cta);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 21px; height: 2px;
  background: var(--pp-white);
  margin: 4px auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  background: var(--pp-navy);
  color: var(--pp-white);
  padding: 28px 26px 40px;
  z-index: 200;
  transform: translateX(100%);
  /* visibility (not just the transform) keeps the closed drawer out of the tab
     order and the a11y tree — otherwise desktop keyboard users tab into an
     off-screen menu. It also stops the panel forcing horizontal overflow on
     browsers that don't clip fixed descendants. */
  visibility: hidden;
  transition: transform .38s var(--ease), visibility .38s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.mobile-nav__close {
  background: none; border: 0; color: var(--pp-white);
  font-size: 30px; line-height: 1; cursor: pointer; padding: 4px 8px;
}
.mobile-nav__close:hover { color: var(--pp-gold); }
.mobile-nav a { display: block; font-family: var(--font-ui); font-size: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mobile-nav a:hover { color: var(--pp-gold); }
.mobile-nav__sub { padding-left: 16px; display: none; }
.mobile-nav__sub.is-open { display: block; }
.mobile-nav__sub a { font-size: 15px; color: var(--pp-lav-light); }
.mobile-nav__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--pp-white); font-family: var(--font-ui); font-size: 16px;
  padding: 13px 0; cursor: pointer;
}
.mobile-nav__toggle:hover { color: var(--pp-gold); }
.mobile-nav .btn { margin-top: 24px; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(2, 2, 42, .6);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  z-index: 150;
}
.overlay.is-open { opacity: 1; visibility: visible; }

/* ============================================================ BREADCRUMB == */

.breadcrumb-area {
  position: relative;
  background-color: var(--pp-navy);
  /* Source banner (uploads/2026/07/header.png). The navy tint is already baked
     into the artwork, so only a light scrim is added for text contrast. */
  background-image:
    linear-gradient(rgba(2, 2, 42, .18), rgba(2, 2, 42, .30)),
    url("../img/photos/hero-banner.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover, cover;
  padding-block: 140px;
  text-align: left;
  overflow: hidden;
}
.breadcrumb-area::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.028) 0 2px, transparent 2px 7px);
  pointer-events: none;
}
.breadcrumb-area > .container { position: relative; z-index: 1; }
.breadcrumb-area h1,
.breadcrumb-area .breadcrumb-title {
  color: var(--pp-white);
  font-size: clamp(30px, 4.6vw, 48px);
  margin-bottom: 14px;
  text-transform: capitalize;
}
.breadcrumb-inner {
  display: flex;
  justify-content: flex-start;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--pp-lav-light);
}
.breadcrumb-inner a:hover { color: var(--pp-gold); }
.breadcrumb-inner .sep { color: var(--pp-gold); display: inline-flex; }
.breadcrumb-inner .sep svg { width: 11px; height: 11px; fill: currentColor; }
.breadcrumb-inner [aria-current] { color: var(--pp-gold); }

/* =============================================================== GALLERY == */

.patch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.patch-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.patch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.patch-card__media {
  aspect-ratio: 4 / 3;
  background: var(--pp-surface);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.patch-card__media img, .patch-card__media svg {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.patch-card:hover .patch-card__media img,
.patch-card:hover .patch-card__media svg { transform: scale(1.06); }
.patch-card__body { padding: 20px 22px 24px; }
.patch-card__body h4 { margin-bottom: 6px; font-family: var(--font-ui); font-weight: 600; font-size: 18px; color: var(--pp-navy); }
.patch-card__body p { font-size: 14.5px; color: var(--pp-ink-soft); line-height: 1.65; }

/* ========================================================== CONTENT COPY == */

.rich-copy h3 {
  font-size: clamp(21px, 2.3vw, 27px);
  margin-top: 38px;
  margin-bottom: 12px;
  color: var(--pp-navy);
}
.rich-copy h3:first-child { margin-top: 0; }
.rich-copy p { color: var(--pp-ink); line-height: 1.85; }

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 50px;
  align-items: start;
}

/* Feature list with check bullets */
.check-list { display: grid; gap: 14px; margin-top: 22px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-ui); font-size: 15.5px; color: var(--pp-ink);
}
.check-list svg { width: 20px; height: 20px; fill: var(--pp-red); flex: none; margin-top: 3px; }

/* ========================================================== QUOTE FORM ==== */

.quote-form {
  background: var(--pp-red);
  border-radius: var(--radius-lg);
  padding: 38px 34px 42px;
  color: var(--pp-white);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 110px;
}
.quote-form__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--pp-white);
  margin: 0 0 6px;
}
.quote-form__note { font-family: var(--font-ui); font-size: 14px; color: rgba(255,255,255,.82); margin-bottom: 26px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.form-field label .req { color: var(--pp-gold); }

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  color: var(--pp-white);
  font-family: var(--font-ui);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
  appearance: none;
}
.form-control::placeholder { color: rgba(255, 255, 255, .55); }
.form-control:focus {
  outline: none;
  border-color: var(--pp-gold);
  background: rgba(0, 0, 0, .26);
  box-shadow: 0 0 0 3px rgba(255, 199, 3, .22);
}
select.form-control {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
  cursor: pointer;
}
select.form-control option { background: var(--pp-red); color: var(--pp-white); }
textarea.form-control { resize: vertical; min-height: 96px; }

.form-control[aria-invalid="true"] { border-color: var(--pp-gold); box-shadow: 0 0 0 3px rgba(255,199,3,.25); }
.form-error { font-family: var(--font-ui); font-size: 12.5px; color: var(--pp-gold); min-height: 0; }

/* File upload */
.file-drop {
  display: flex; align-items: center; gap: 12px;
  border: 1px dashed rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  padding: 13px 14px;
  cursor: pointer;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.file-drop:hover { border-color: var(--pp-gold); background: rgba(0,0,0,.14); }
.file-drop svg { width: 18px; height: 18px; fill: var(--pp-gold); flex: none; }
.file-drop span { font-family: var(--font-ui); font-size: 14px; color: rgba(255,255,255,.8); }
.file-drop input[type="file"] { display: none; }

.form-success {
  display: none;
  margin-top: 18px;
  background: rgba(255, 255, 255, .14);
  border-left: 3px solid var(--pp-gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-ui);
  font-size: 14.5px;
}
.form-success.is-visible { display: block; }

/* Light variant of the form (standalone quote page) */
.quote-form--light {
  background: var(--pp-white);
  color: var(--pp-ink);
  border: 1px solid var(--pp-line);
  position: static;
}
.quote-form--light .quote-form__title { color: var(--pp-navy); }
.quote-form--light .quote-form__note { color: var(--pp-ink-soft); }
.quote-form--light .form-field label { color: var(--pp-navy); }
.quote-form--light .form-field label .req { color: var(--pp-red); }
.quote-form--light .form-control {
  background-color: var(--pp-surface);
  border-color: var(--pp-line);
  color: var(--pp-ink);
}
.quote-form--light .form-control::placeholder { color: #9A9AA6; }
.quote-form--light .form-control:focus { border-color: var(--pp-red); background-color: var(--pp-white); box-shadow: 0 0 0 3px rgba(179,0,0,.12); }
.quote-form--light select.form-control {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%233F3F3F' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
}
.quote-form--light select.form-control option { background: var(--pp-white); color: var(--pp-ink); }
.quote-form--light .file-drop { border-color: var(--pp-line); }
.quote-form--light .file-drop svg { fill: var(--pp-red); }
.quote-form--light .file-drop span { color: var(--pp-ink-soft); }
.quote-form--light .form-error { color: var(--pp-red); }
.quote-form--light .form-success { background: var(--pp-surface); border-left-color: var(--pp-red); }

/* ================================================================== HERO == */

.hero {
  position: relative;
  background: var(--pp-navy);
  background-image:
    radial-gradient(circle at 78% 22%, rgba(179, 0, 0, .55), transparent 52%),
    radial-gradient(circle at 12% 78%, rgba(38, 59, 145, .6), transparent 55%);
  color: var(--pp-white);
  padding-block: 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 8px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--pp-gold);
  background: rgba(255, 199, 3, .12);
  border: 1px solid rgba(255, 199, 3, .3);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 22px;
}
.hero h1 { color: var(--pp-white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--pp-gold); }
.hero__lead { font-size: 17px; color: var(--pp-lav-light); max-width: 56ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: 40px;
  margin-top: 48px; padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px; font-weight: 700; color: var(--pp-white); line-height: 1.1;
}
.hero__stat span { font-family: var(--font-ui); font-size: 13.5px; color: var(--pp-lav); }

.hero__art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hero__art > * {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* source photos vary in ratio — pin them square so the collage stays even */
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--pp-white);
}
.hero__art > *:nth-child(odd) { --tile-offset: -16px; transform: translateY(var(--tile-offset)); }

/* ============================================================== FEATURES == */

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature {
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: rgba(179, 0, 0, .08);
  margin-bottom: 20px;
  transition: background-color .35s var(--ease);
}
.feature__icon svg { width: 26px; height: 26px; fill: var(--pp-red); transition: fill .35s var(--ease); }
.feature:hover .feature__icon { background: var(--pp-red); }
.feature:hover .feature__icon svg { fill: var(--pp-white); }
.feature h4 { font-family: var(--font-ui); font-weight: 600; font-size: 18px; margin-bottom: 8px; color: var(--pp-navy); }
.feature p { font-size: 14.5px; color: var(--pp-ink-soft); line-height: 1.7; }

/* Step / process list */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 34px 26px; background: var(--pp-white); border-radius: var(--radius-lg); border: 1px solid var(--pp-line); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 44px; font-weight: 700;
  color: rgba(179, 0, 0, .12);
  line-height: 1;
  display: block; margin-bottom: 12px;
}
.step h4 { font-family: var(--font-ui); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--pp-ink-soft); line-height: 1.7; }

/* ========================================================= TESTIMONIALS === */

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.quote-card__stars { display: flex; align-items: center; gap: 4px; margin-bottom: 18px; line-height: 0; }
.quote-card__stars svg { width: 16px; height: 16px; fill: var(--pp-gold); flex: none; }
.quote-card blockquote { margin: 0 0 22px; }
.quote-card p { font-size: 15.5px; color: var(--pp-lav-light); line-height: 1.8; margin: 0; }
.quote-card__who { display: flex; align-items: center; gap: 13px; }
.quote-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pp-red); color: var(--pp-white);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.quote-card__who strong { display: block; font-family: var(--font-ui); font-size: 15px; color: var(--pp-white); font-weight: 600; }
.quote-card__who span { font-family: var(--font-ui); font-size: 13px; color: var(--pp-lav); }

/* ==================================================================== FAQ = */

.faq { display: grid; gap: 14px; max-width: 900px; margin-inline: auto; }
.faq__item { border: 1px solid var(--pp-line); border-radius: var(--radius-lg); overflow: hidden; background: var(--pp-white); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-ui); font-size: 16.5px; font-weight: 600; color: var(--pp-navy);
  text-align: left;
  padding: 20px 24px;
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--pp-red); }
.faq__q svg { width: 15px; height: 15px; fill: var(--pp-red); flex: none; transition: transform .3s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 24px 22px; font-size: 15.5px; color: var(--pp-ink-soft); line-height: 1.8; }

/* ================================================================== CTA === */

.cta-band {
  background: var(--pp-red);
  background-image: linear-gradient(135deg, var(--pp-red) 0%, var(--pp-red-deep) 100%);
  color: var(--pp-white);
  padding-block: 66px;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
}
.cta-band h2 { color: var(--pp-white); margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, .88); font-size: 16.5px; }

/* ================================================================ FOOTER == */

.footer { background: var(--pp-navy); color: var(--pp-lav-light); padding-top: 90px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 70px;
}
.footer__brand img, .footer__brand svg { width: 210px; margin-bottom: 22px; }
.footer__brand p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--pp-white);
  line-height: 1.8;
}
.footer h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--pp-white);
  margin-bottom: 24px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 16px; font-weight: 400;
  color: var(--pp-white);
  transition: color .4s var(--ease), padding-left .3s var(--ease);
}
.footer__links svg { width: 13px; height: 13px; fill: var(--pp-lav); transition: fill .4s var(--ease); flex: none; }
.footer__links a:hover { color: var(--pp-gold); padding-left: 5px; }
.footer__links a:hover svg { fill: var(--pp-gold); }

.footer__contact li { display: flex; gap: 15px; margin-bottom: 22px; }
.footer__contact svg { width: 19px; height: 19px; fill: var(--pp-gold); flex: none; margin-top: 5px; }
.footer__contact h4 {
  font-family: var(--font-ui); font-size: 17px; font-weight: 500;
  color: var(--pp-white); margin: 0 0 3px;
}
.footer__contact p {
  font-family: var(--font-body); font-weight: 400; font-size: 15px;
  color: var(--pp-lav-light); margin: 0; line-height: 1.6;
}
.footer__contact a:hover { color: var(--pp-gold); }

.footer__social { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.footer__social a {
  position: relative;
  width: 42px; height: 42px;
  flex: none;
  display: block;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: var(--pp-lav);
  transition: background-color .35s var(--ease), border-color .35s var(--ease),
              color .35s var(--ease), transform .35s var(--ease);
}
/* inset:0 + margin:auto on a definitely-sized absolute box centres in both
   axes without depending on the parent's flex context. */
.footer__social svg {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  fill: currentColor;
}
/* These glyphs carry different amounts of padding inside their own viewBox, so
   a single square box renders them at visibly different optical weights (the
   Facebook mark's ink fills 511/512 of its box, Instagram's only 449/512).
   Sizing each so the *ink* lands at ~15px makes the row read evenly. */
.footer__social .ico--fb { width: 15px;   height: 15px;   }
.footer__social .ico--ig { width: 17.5px; height: 17.5px; }
.footer__social .ico--wa { width: 17.5px; height: 17.5px; }

.footer__social a:hover {
  background: var(--pp-gold); border-color: var(--pp-gold);
  color: var(--pp-navy); transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 26px;
  text-align: center;
}
.footer__bottom p {
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: var(--pp-lav);
  margin: 0;
}
.footer__bottom a { color: var(--pp-gold); }
.footer__bottom a:hover { text-decoration: underline; }

/* ======================================================== FLOATING ACTIONS */

.float-actions {
  position: fixed;
  right: 22px; bottom: 22px;
  display: grid; gap: 12px;
  z-index: 120;
}
.float-actions a, .float-actions button {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.float-actions a:hover, .float-actions button:hover { transform: translateY(-3px); }
.float-actions svg { width: 22px; height: 22px; fill: var(--pp-white); }

.float-whatsapp { background: #25D366; }
.float-top {
  background: var(--pp-red-cta);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s, transform .3s var(--ease);
}
.float-top.is-visible { opacity: 1; visibility: visible; }
.float-top svg { width: 18px; height: 18px; }

/* =============================================================== MOTION === */

/* Content is visible by default. The hidden start-state is only applied once
   the inline head script confirms JS is running, so a script failure or a
   no-JS client can never leave the page blank. */

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity   .85s var(--ease-out),
    transform .85s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

/* Directional variants — pick per section so the page doesn't feel uniform. */
.js .reveal--left  { transform: translateX(-44px); }
.js .reveal--right { transform: translateX(44px); }
.js .reveal--zoom  { transform: scale(.93); }
.js .reveal--flip  {
  transform: perspective(1000px) rotateX(14deg) translateY(30px);
  transform-origin: top center;
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
/* Drop the hint once the animation has played so hover transforms stay smooth */
.js .reveal.is-done { will-change: auto; }

/* --- Hero entrance: plays on load, not on scroll ------------------------- */
.js .hero-in > * {
  opacity: 0;
  transform: translateY(26px);
  animation: pp-hero-in .9s var(--ease-out) forwards;
  animation-delay: calc(var(--hero-step, 0) * 110ms + 120ms);
}
@keyframes pp-hero-in {
  to { opacity: 1; transform: none; }
}

/* Hero artwork tiles lift in and settle into the offset grid.
   The resting offset is a custom property so the mobile breakpoint can zero it
   out — a `forwards` animation outranks a plain rule, so the media query has to
   change the keyframe's end value rather than fight it with transform:none. */
.js .hero__art > * {
  opacity: 0;
  animation: pp-tile-in 1s var(--ease-out) forwards;
  /* --tile-step is assigned per tile from main.js (see the hero entrance
     block); the 0 fallback only applies before that runs. */
  animation-delay: calc(var(--tile-step, 0) * 130ms + 380ms);
}
@keyframes pp-tile-in {
  from { opacity: 0; transform: translateY(38px) scale(.94); }
  to   { opacity: 1; transform: translateY(var(--tile-offset, 0px)) scale(1); }
}

/* --- Section title rule draws itself in --------------------------------- */
.section-title.center .title::after { transform: translateX(-50%) scaleX(0); transform-origin: center; }
.section-title.center .title::before { opacity: 0; transform: translateX(-50%) scale(0); }
.js .reveal.is-in .title::after,
.section-title.center.is-in .title::after {
  transform: translateX(-50%) scaleX(1);
  transition: transform .7s var(--ease-out) .25s;
}
.js .reveal.is-in .title::before,
.section-title.center.is-in .title::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition: opacity .4s var(--ease) .6s, transform .5s var(--ease-back) .6s;
}
/* No-JS: rules and dots are simply present */
html:not(.js) .section-title.center .title::after { transform: translateX(-50%) scaleX(1); }
html:not(.js) .section-title.center .title::before { opacity: 1; transform: translateX(-50%) scale(1); }

/* --- Scroll progress bar ------------------------------------------------ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--pp-red), var(--pp-gold));
  z-index: 300;
  pointer-events: none;
}

/* --- Card lift + artwork tilt ------------------------------------------- */
.patch-card__media { perspective: 800px; }
.patch-card__media img,
.patch-card__media svg {
  transition: transform .55s var(--ease-out);
}
.patch-card:hover .patch-card__media img,
.patch-card:hover .patch-card__media svg {
  transform: scale(1.07) rotate(-1.5deg);
}

/* Feature icon springs on hover */
.feature__icon { transition: background-color .35s var(--ease), transform .45s var(--ease-back); }
.feature:hover .feature__icon { transform: translateY(-3px) rotate(-6deg); }

/* Step number counts up visually on hover */
.step::before { transition: color .4s var(--ease), transform .45s var(--ease-back); }
.step:hover::before { color: rgba(179, 0, 0, .22); transform: translateX(4px); }

/* --- Floating WhatsApp pulse -------------------------------------------- */
.float-whatsapp { position: relative; }
.float-whatsapp::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pp-pulse 2.4s var(--ease) infinite;
  z-index: -1;
}
@keyframes pp-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* --- Stat counters ------------------------------------------------------ */
.hero__stat strong { font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------- Reduced motion -- */
/* One switch turns the whole motion layer off. Everything lands in its
   final state — nothing is left hidden, offset or mid-animation. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal,
  .js .hero-in > *,
  .js .hero__art > * { opacity: 1 !important; transform: translateY(var(--tile-offset, 0px)) !important; }
  .section-title.center .title::after { transform: translateX(-50%) scaleX(1) !important; }
  .section-title.center .title::before { opacity: 1 !important; transform: translateX(-50%) scale(1) !important; }
  .scroll-progress, .float-whatsapp::before { display: none !important; }
}

/* =========================================================== RESPONSIVE === */

@media (max-width: 1200px) {
  .content-split { grid-template-columns: minmax(0, 1fr) 380px; gap: 36px; }
  .nav__list { gap: 24px; }
  .nav { gap: 22px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__contact-col { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
  :root { --section-y: 66px; }

  .nav, .nav-cta { display: none; }
  .burger { display: grid; }
  .nav-bar__inner { min-height: 76px; }
  .brand img, .brand svg { width: 158px; }

  .hero { padding-block: 76px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__art > *:nth-child(odd) { --tile-offset: 0px; transform: none; }

  .content-split { grid-template-columns: 1fr; }
  .quote-form { position: static; }

  .patch-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }

  .breadcrumb-area { padding-block: 84px; }

  .footer { padding-top: 64px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__contact-col { grid-column: auto; }
}

@media (max-width: 767px) {
  .header-top__inner { flex-direction: column; align-items: flex-start; gap: 6px; padding-block: 10px; }
  .header-top__list { gap: 4px 18px; font-size: 13px; }

  .hero__stats { gap: 26px; }
  .hero__stat strong { font-size: 27px; }

  .footer__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 575px) {
  :root { --gutter: 18px; }
  .patch-grid, .feature-grid, .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px 32px; }
  .btn { padding: 14px 26px; font-size: 14.5px; }
  .breadcrumb-area { padding-block: 64px; }
}

/* ================================================================ PRINT === */

@media print {
  .header-top, .nav-bar, .float-actions, .footer, .quote-form, .cta-band { display: none !important; }
  body { color: #000; }
}

/* ==========================================================================
   SECTIONS MIRRORED FROM THE SOURCE SITE
   ========================================================================== */

/* --- Feature strip: Fast Turnaround / Heat. Press. Done. / 700+ Colours -- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.strip-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.strip-item__icon {
  width: 62px; height: 62px; flex: none;
  display: grid; place-items: center;
  background: rgba(179, 0, 0, .07);
  border-radius: 50%;
  transition: background-color .35s var(--ease);
}
.strip-item:hover .strip-item__icon { background: rgba(47, 110, 255, .12); }
.strip-item__icon img { width: 32px; height: 32px; object-fit: contain; }
.strip-item h4 { font-family: var(--font-display); font-size: 21px; margin-bottom: 6px; color: var(--pp-navy); }
.strip-item p { font-size: 14.5px; line-height: 1.7; color: var(--pp-ink-soft); }

/* --- Intro split: copy beside a hero photo ------------------------------ */
.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.intro-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;   /* fixed frame so the panel can never half-fill */
  background: var(--pp-surface);
}
.intro-split__media img { width: 100%; height: 100%; object-fit: cover; }
.intro-split h2 { margin-bottom: 18px; }
.intro-split p { color: var(--pp-ink); line-height: 1.85; }

/* --- Patch-type cards (photo on top, copy below) ------------------------ */
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.type-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.type-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.type-card__media {
  aspect-ratio: 4 / 3;
  background: var(--pp-surface);
  overflow: hidden;
}
.type-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-out); }
.type-card:hover .type-card__media img { transform: scale(1.07); }
.type-card__body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.type-card__body h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.type-card__body p { font-size: 14.5px; line-height: 1.7; color: var(--pp-ink-soft); margin-bottom: 18px; }
.type-card__body .btn { margin-top: auto; align-self: flex-start; }

/* --- Product cards (icon badge + copy) ---------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 32px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.product-card::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--pp-red), var(--pp-gold));
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s var(--ease-out);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card:hover::after { transform: scaleX(1); }
/* The category artwork is a landscape product shot, not a glyph — showing it
   in a 52px circle shrank it to nothing. Give it a real media block. */
.product-card__media {
  aspect-ratio: 16 / 11;
  background: var(--pp-surface);
  border-radius: var(--radius-lg);
  margin-bottom: 22px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 14px;
  transition: background-color .35s var(--ease);
}
.product-card:hover .product-card__media { background: rgba(47, 110, 255, .08); }
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;          /* cut-outs must not be cropped */
  transition: transform .5s var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card h3 { font-size: 22px; margin-bottom: 10px; }
.product-card p { font-size: 14.5px; line-height: 1.75; color: var(--pp-ink-soft); margin-bottom: 16px; }
.product-card__more {
  font-family: var(--font-ui); font-size: 14.5px; font-weight: 600;
  color: var(--pp-red); display: inline-flex; align-items: center; gap: 8px;
}
.product-card__more svg { width: 12px; height: 12px; fill: currentColor; transition: transform .3s var(--ease); }
.product-card:hover .product-card__more { color: var(--pp-blue); }
.product-card:hover .product-card__more svg { transform: translateX(4px); }

/* --- Why-choose grid (6 items, PNG icons) ------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card__icon {
  width: 70px; height: 70px;
  display: grid; place-items: center;
  background: rgba(179, 0, 0, .07);
  border-radius: var(--radius-lg);
  margin-bottom: 22px;
  transition: background-color .35s var(--ease), transform .45s var(--ease-back);
}
.why-card:hover .why-card__icon { background: rgba(47, 110, 255, .12); transform: translateY(-3px) rotate(-6deg); }
.why-card__icon img { width: 38px; height: 38px; object-fit: contain; }
.why-card h4 { font-family: var(--font-display); font-size: 21px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; line-height: 1.75; color: var(--pp-ink-soft); }

/* --- Process: Easy Steps to Works --------------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: pstep; }
.process-step { text-align: center; position: relative; }
.process-step__media {
  width: 170px; height: 170px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--pp-white);
  border: 2px dashed var(--pp-line);
  display: grid; place-items: center;
  position: relative;
  transition: border-color .4s var(--ease), transform .45s var(--ease-out);
}
.process-step:hover .process-step__media { border-color: var(--pp-red); transform: translateY(-6px); }
.process-step__media img { width: 108px; height: 108px; object-fit: contain; border-radius: 50%; }
.process-step__num {
  counter-increment: pstep;
  position: absolute; top: 4px; right: 4px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--pp-red); color: var(--pp-white);
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  transition: background-color .4s var(--ease);
}
.process-step__num::before { content: "0" counter(pstep); }
.process-step:hover .process-step__num { background: var(--pp-blue); }
.process-step h4 { font-family: var(--font-display); font-size: 19px; margin-bottom: 10px; }
.process-step p { font-size: 14.5px; line-height: 1.7; color: var(--pp-ink-soft); }
.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 85px; left: calc(50% + 100px); right: calc(-50% + 100px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--pp-line) 0 8px, transparent 8px 16px);
}

/* --- Contact info cards -------------------------------------------------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card__icon {
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  background: var(--pp-red);
  border-radius: 50%;
  transition: background-color .4s var(--ease), transform .45s var(--ease-back);
}
.contact-card:hover .contact-card__icon { background: var(--pp-blue); transform: translateY(-4px); }
.contact-card__icon svg { width: 30px; height: 30px; fill: var(--pp-white); }
.contact-card h3 { font-size: 21px; margin-bottom: 10px; }
.contact-card p { font-size: 15.5px; line-height: 1.75; color: var(--pp-ink-soft); margin: 0; }
.contact-card a:hover { color: var(--pp-red); }

/* --- Order builder (custom-patches page) -------------------------------- */
.builder { display: grid; gap: 34px; }
.builder-step {
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.builder-step__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px; padding-bottom: 18px;
  border-bottom: 1px solid var(--pp-line);
}
.builder-step__badge {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  background: var(--pp-red); color: var(--pp-white);
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
}
.builder-step__head h3 { margin: 0; font-size: 23px; }

.pick-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.pick {
  display: block;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--pp-line);
  border-radius: var(--radius-lg);
  padding: 14px 10px 16px;
  text-align: center;
  background: var(--pp-white);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pick:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--pp-blue); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick img { width: 100%; aspect-ratio: 1; object-fit: contain; margin-bottom: 10px; }
.pick span { font-family: var(--font-ui); font-size: 13.5px; font-weight: 500; color: var(--pp-navy); }
.pick:has(input:checked) { border-color: var(--pp-red); box-shadow: 0 0 0 3px rgba(179, 0, 0, .12); }
.pick:has(input:focus-visible) { outline: 3px solid var(--pp-gold); outline-offset: 3px; }

/* ---------------------------------------------------- Section responsive - */
@media (max-width: 1200px) {
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .pick-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step:not(:last-child)::before { display: none; }
}
@media (max-width: 991px) {
  .feature-strip { grid-template-columns: 1fr; }
  .intro-split { grid-template-columns: 1fr; gap: 36px; }
  .product-grid, .why-grid, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 767px) {
  .type-grid, .product-grid, .why-grid, .contact-cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .pick-grid { grid-template-columns: repeat(2, 1fr); }
  .builder-step { padding: 26px 20px; }
}
