/* ==========================================================================
   Premium Post Tension — components.css
   The single shared component library for every page except the homepage.
   This is the approved homepage's own css/home.css, made page-agnostic:
   the header/nav, buttons, hero, trust strip, cards, process steps,
   carousels, testimonials, FAQ accordion, contact panel and footer are
   byte-for-byte the same rules the approved homepage renders with, minus
   the handful of selectors that were scoped to ".pt-home" (now global so
   they apply on any page), with the brand color tokens aliased back to
   global.css so there is one real source of truth for color.
   Load order: global.css, then mmenu.css, then this file.
   ========================================================================== */

:root {
  --pt-navy: var(--color-primary);
  --pt-deep: var(--color-deep);
  --pt-red: var(--color-accent);
  --pt-burgundy: var(--color-accent-end);
  --pt-gradient: var(--gradient-accent);
  --pt-paper: #F6F7F9;
  --pt-warm: #F8F4F2;
  --pt-white: var(--color-surface);
  --pt-copy: #46536B;
  --pt-line: #E3E7ED;
  --pt-shadow-red: 0 6px 16px rgba(122,16,21,.35), inset 0 1px 0 rgba(255,255,255,.18);
  --pt-shadow-red-hover: 0 8px 20px rgba(122,16,21,.45), inset 0 1px 0 rgba(255,255,255,.22);
  --pt-section-y: var(--section-y-lg);
  --pt-heading-gap: var(--heading-gap);
  --pt-content-gap: var(--content-gap);
  --pt-grid-gap: var(--grid-gap);
  --pt-card-gap: var(--card-gap);
}

body { background: var(--pt-white); color: var(--pt-navy); }
img { display: block; }
a { transition: color .2s ease, opacity .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
em { color: var(--pt-red); font-style: normal; }
h1, h2 { font-family: 'Archivo Black', 'Arial Black', sans-serif; font-weight: 400; text-wrap: balance; }
h3 { font-family: var(--font-primary); font-weight: 700; text-wrap: balance; }

.pt-skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; border-radius: 8px; background: var(--pt-white); color: var(--pt-navy); font-weight: 700; }
.pt-skip-link:focus { top: 16px; }

.pt-utility-bar { position: relative; z-index: 50; background: var(--pt-gradient); color: var(--pt-white); font-size: 12px; box-shadow: inset 0 1px 0 rgba(255,255,255,.16); }
.pt-utility-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.pt-utility-inner p { letter-spacing: .02em; }
.pt-utility-inner p span { margin-right: 7px; color: #FF858A; font-weight: 800; }
.pt-utility-links { display: flex; align-items: center; gap: 22px; }
.pt-utility-links a { color: var(--pt-white); }
.pt-utility-links a:hover { color: var(--pt-white); }
.pt-social-links { display: inline-flex; align-items: center; gap: 9px; }
.pt-social-links a, .pt-social-links .pt-social-placeholder { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: var(--pt-white); }
.pt-social-links a:hover, .pt-social-links a:focus-visible { border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.12); transform: translateY(-1px); }
.pt-social-links svg { width: 12px; height: 12px; fill: currentColor; }
.pt-social-placeholder { cursor: default; opacity: .72; }

.pt-site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(1,16,45,.08); backdrop-filter: blur(16px); transition: box-shadow .25s ease, background .25s ease; }
.pt-site-header.is-scrolled { box-shadow: 0 10px 35px rgba(1,16,45,.09); background: rgba(255,255,255,.98); }
.pt-header-inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.pt-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--pt-navy); flex: 0 0 auto; }
.pt-brand:hover { color: var(--pt-navy); }
.pt-brand img { width: 54px; height: 54px; object-fit: contain; }
.pt-brand span { display: grid; line-height: 1; text-transform: uppercase; letter-spacing: .02em; }
.pt-brand strong { font-size: 16px; font-weight: 800; }
.pt-brand small { margin-top: 6px; color: var(--pt-red); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.pt-primary-nav { margin-left: auto; align-self: stretch; display: flex; align-items: center; }
.pt-primary-nav > ul { height: 100%; display: flex; align-items: center; gap: clamp(12px,1.45vw,24px); }
.pt-primary-nav > ul > li { height: 100%; display: flex; align-items: center; }
.pt-primary-nav > ul > li > a, .pt-primary-nav > ul > li > button { position: relative; height: 100%; display: inline-flex; align-items: center; gap: 7px; padding: 0 2px; border: 0; background: transparent; color: var(--pt-navy); font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
.pt-primary-nav > ul > li > a::after, .pt-primary-nav > ul > li > button::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--pt-gradient); transform: scaleX(0); transform-origin: right; transition: transform .28s ease; }
.pt-primary-nav > ul > li > a:hover::after, .pt-primary-nav > ul > li > a:focus-visible::after, .pt-primary-nav > ul > li > button:hover::after, .pt-primary-nav > ul > li > button:focus-visible::after, .pt-has-submenu.is-open > button::after { transform: scaleX(1); transform-origin: left; }
.pt-primary-nav button svg { width: 10px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .28s ease; }
.pt-has-submenu.is-open > button svg { transform: rotate(180deg); }
.pt-has-submenu { position: relative; }
.pt-mega-menu { position: absolute; top: calc(100% - 1px); left: 50%; width: min(790px,calc(100vw - 40px)); display: grid; grid-template-columns: 245px 1fr; overflow: hidden; border: 1px solid rgba(1,16,45,.09); border-radius: 0 0 22px 22px; background: rgba(255,255,255,.98); box-shadow: 0 28px 65px rgba(1,16,45,.18); opacity: 0; visibility: hidden; transform: translate(-38%,-10px) scale(.985); transform-origin: top center; transition: opacity .24s ease, transform .32s cubic-bezier(.2,.8,.2,1), visibility .24s; pointer-events: none; }
.pt-has-submenu.is-open .pt-mega-menu { opacity: 1; visibility: visible; transform: translate(-38%,0) scale(1); pointer-events: auto; }
.pt-menu-intro { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 30px 27px; overflow: hidden; background: radial-gradient(circle at 82% 18%,rgba(196,39,44,.32),transparent 38%),linear-gradient(145deg,rgba(14,31,62,.98),rgba(1,16,45,.95)); color: var(--pt-white); }
.pt-menu-intro::after { content: ""; position: absolute; right: -42px; bottom: -58px; width: 145px; height: 145px; border-radius: 50%; background: var(--pt-gradient); opacity: .9; filter: blur(2px); }
.pt-menu-intro > span { margin-bottom: 15px; color: #FF8B90; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.pt-menu-intro > strong { position: relative; z-index: 1; font-size: 17px; line-height: 1.48; }
.pt-menu-intro > a { position: relative; z-index: 1; margin-top: auto; padding-top: 30px; color: var(--pt-white); font-size: 12px; font-weight: 750; }
.pt-menu-intro > a b { margin-left: 6px; color: #FF8B90; }
.pt-menu-links { display: grid; grid-template-columns: 1fr 1fr; padding: 14px; }
.pt-menu-links > a { display: grid; grid-template-columns: 29px 1fr; column-gap: 10px; padding: 15px; border-radius: 13px; color: var(--pt-navy); }
.pt-menu-links > a:hover, .pt-location-links > a:hover { background: var(--pt-paper); transform: translateY(-1px); }
.pt-menu-links > a > span { grid-row: 1 / 3; color: var(--pt-red); font-size: 10px; font-weight: 800; }
.pt-menu-links strong { font-size: 13px; }
.pt-menu-links small { margin-top: 5px; color: var(--pt-copy); font-size: 11px; }
.pt-locations-menu { width: min(680px,calc(100vw - 40px)); }
.pt-location-links { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 3px; padding: 19px; }
.pt-location-links > a { display: flex; justify-content: space-between; align-items: center; padding: 13px 15px; border-radius: 11px; color: var(--pt-navy); font-size: 13px; font-weight: 700; }
.pt-location-links > a span { color: var(--pt-red); }
.pt-nav-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; border-radius: 12px; background: var(--pt-paper); }
.pt-nav-toggle > span:not(.visually-hidden) { display: block; height: 2px; margin: 5px 0; background: var(--pt-navy); transition: transform .2s ease, opacity .2s ease; }
.pt-mobile-menu { display: none; }
.mm-menu.pt-mobile-menu,
.mm-menu--offcanvas.pt-mobile-menu { position: fixed !important; display: block; overflow: hidden; --mm-color-background: rgba(1,16,45,.92); --mm-color-text: rgba(255,255,255,.86); --mm-color-border: rgba(255,255,255,.1); --mm-color-icon: #FF858A; --mm-color-text-dimmed: rgba(255,255,255,.58); --mm-color-background-highlight: rgba(255,255,255,.06); --mm-color-background-emphasis: rgba(196,39,44,.16); --mm-size: min(88vw,390px); background: rgba(1,16,45,.88); border-left: 1px solid rgba(255,255,255,.18); box-shadow: -28px 0 70px rgba(0,8,23,.35); backdrop-filter: blur(24px) saturate(1.18); }
.mm-menu.pt-mobile-menu::before, .mm-menu.pt-mobile-menu::after { content: ""; position: absolute; z-index: 0; width: 280px; height: 280px; border-radius: 50%; pointer-events: none; filter: blur(18px); opacity: .72; animation: pt-menu-glow 9s ease-in-out infinite alternate; }
.mm-menu.pt-mobile-menu::before { top: -105px; right: -105px; background: radial-gradient(circle,rgba(196,39,44,.72),rgba(122,16,21,.12) 54%,transparent 70%); }
.mm-menu.pt-mobile-menu::after { right: -155px; bottom: 3%; background: radial-gradient(circle,rgba(38,72,132,.45),transparent 68%); animation-delay: -4s; }
.pt-mobile-menu .mm-navbars, .pt-mobile-menu .mm-panels { position: relative; z-index: 1; background: transparent; }
.pt-mobile-menu .mm-panel, .pt-mobile-menu .mm-navbar { background: rgba(4,18,46,.48); backdrop-filter: blur(16px); }
.pt-mobile-menu .mm-navbar { min-height: 60px; border-bottom-color: rgba(255,255,255,.1); }
.pt-mobile-menu .mm-navbar__title { color: var(--pt-white); font-weight: 800; }
.pt-mobile-menu .mm-navbar__btn.mm-btn--prev { width: 88px; justify-content: flex-end; padding-right: 14px; color: #FFD6D7; font-size: 12px; font-weight: 750; }
.pt-mobile-menu .mm-navbar__btn.mm-btn--prev::after { content: "Back"; display: block; margin-left: 22px; }
.pt-mobile-menu .mm-navbar__btn.mm-btn--prev::before { inset-inline-start: 18px; border-color: #FF858A; }
.pt-mobile-menu .mm-listitem__text { padding-top: 16px; padding-bottom: 16px; font-weight: 650; }
.pt-mobile-menu .mm-listitem::after { left: 20px; }
.pt-mobile-menu .pt-mobile-brand > a { display: flex; align-items: center; gap: 12px; padding: 21px 20px; background: rgba(255,255,255,.045); }
.pt-mobile-brand img { width: 50px; height: 50px; object-fit: contain; }
.pt-mobile-brand span { display: grid; text-transform: uppercase; color: var(--pt-white); }
.pt-mobile-brand strong { font-size: 14px; }
.pt-mobile-brand small { margin-top: 4px; color: #FF858A; font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.pt-mobile-menu .pt-mobile-cta { margin: 18px 20px; border-radius: 999px; background: var(--pt-gradient); box-shadow: var(--pt-shadow-red); }
.pt-mobile-menu .pt-mobile-cta::after { display: none; }
.pt-mobile-menu .pt-mobile-cta > a { justify-content: center; padding: 14px 20px; color: var(--pt-white); text-align: center; }
.pt-mobile-menu .pt-mobile-contact-title { margin: 24px 20px 5px; border-top: 1px solid rgba(255,255,255,.13); }
.pt-mobile-menu .pt-mobile-contact-title::after, .pt-mobile-menu .pt-mobile-contact::after, .pt-mobile-menu .pt-mobile-social::after { display: none; }
.pt-mobile-menu .pt-mobile-contact-title > span { padding: 24px 0 8px; color: #FF9B9F; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.pt-mobile-menu .pt-mobile-contact > a, .pt-mobile-menu .pt-mobile-contact > span { display: flex; align-items: flex-start; gap: 12px; margin: 0 12px; padding: 11px 8px; border-radius: 12px; white-space: normal; }
.pt-mobile-menu .pt-mobile-contact > a:hover { background: rgba(255,255,255,.07); }
.pt-mobile-contact svg { flex: 0 0 34px; width: 34px; height: 34px; padding: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(255,255,255,.06); fill: none; stroke: #FF9B9F; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pt-mobile-contact a > span, .pt-mobile-contact > span > span { display: grid; gap: 3px; color: rgba(255,255,255,.9); font-size: 12px; line-height: 1.45; }
.pt-mobile-contact small { color: rgba(255,255,255,.48); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.pt-mobile-hours > span { color: inherit !important; }
.pt-mobile-menu .pt-mobile-social { display: flex; gap: 9px; padding: 15px 20px 30px; }
.pt-mobile-menu .pt-mobile-social > a, .pt-mobile-menu .pt-mobile-social > .pt-social-placeholder { width: 38px; height: 38px; display: grid; flex-grow: 0; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--pt-white); font-weight: 800; }
.pt-mobile-menu .pt-mobile-social > a:hover { border-color: #FF9B9F; background: rgba(196,39,44,.18); }
.pt-mobile-social svg { width: 15px; height: 15px; fill: currentColor; }
.pt-fallback-menu { position: fixed; z-index: 100; inset: 0 0 0 auto; width: min(88vw,390px); display: block; overflow-y: auto; padding: 24px 20px; background: var(--pt-navy); color: var(--pt-white); box-shadow: -24px 0 60px rgba(0,8,23,.3); transform: translateX(105%); transition: transform .38s cubic-bezier(.2,.8,.2,1); }
.pt-fallback-menu-open .pt-fallback-menu { transform: translateX(0); }
.pt-fallback-menu-open::before { content: ""; position: fixed; z-index: 90; inset: 0; background: rgba(0,8,23,.58); backdrop-filter: blur(3px); }
.pt-fallback-menu ul ul { margin: 8px 0 12px 18px; border-left: 1px solid rgba(255,255,255,.14); }
.pt-fallback-menu li > a, .pt-fallback-menu li > span { padding: 13px 12px; color: rgba(255,255,255,.86); font-weight: 700; }
.pt-fallback-menu li > span { color: #FF9296; }
.pt-fallback-menu .pt-mobile-brand > a { display: flex; }
.pt-fallback-menu .pt-mobile-cta { margin: 18px 0; background: var(--pt-gradient); }
.mm-wrapper--opened .pt-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mm-wrapper--opened .pt-nav-toggle span:nth-child(2) { opacity: 0; }
.mm-wrapper--opened .pt-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@keyframes pt-menu-glow { from { transform: translate3d(-8px,-6px,0) scale(.92); } to { transform: translate3d(18px,24px,0) scale(1.12); } }

.pt-button { min-height: 48px; display: inline-flex; justify-content: center; align-items: center; gap: 11px; padding: 13px 21px; border: 1px solid transparent; border-radius: 999px; font: inherit; font-size: 14px; font-weight: 750; text-align: center; cursor: pointer; }
.pt-button-primary { color: var(--pt-white); background: var(--pt-gradient); box-shadow: var(--pt-shadow-red); }
.pt-button-primary:hover { color: var(--pt-white); transform: translateY(-1px); box-shadow: var(--pt-shadow-red-hover); }
.pt-button-light { color: var(--pt-navy); background: var(--pt-white); box-shadow: 0 10px 28px rgba(0,8,23,.25); }
.pt-button-light:hover { color: var(--pt-navy); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,8,23,.32); }
.pt-button-ghost-light { color: var(--pt-white); border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.07); }
.pt-button-ghost-light:hover { color: var(--pt-white); border-color: var(--pt-white); background: rgba(255,255,255,.12); }
.pt-button-outline { color: var(--pt-navy); border-color: rgba(1,16,45,.25); background: transparent; }
.pt-button-outline:hover { color: var(--pt-navy); border-color: var(--pt-red); transform: translateY(-1px); }
.pt-red-mark { color: var(--pt-red); }

.pt-eyebrow { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 19px; color: var(--pt-red); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.pt-eyebrow > span { width: 30px; height: 2px; background: currentColor; }
.pt-eyebrow-light { color: #FF858A; }

.pt-hero { position: relative; min-height: clamp(700px, 82vh, 890px); display: grid; align-items: center; overflow: hidden; background: var(--pt-deep); color: var(--pt-white); }
.pt-hero-slides, .pt-hero-slide, .pt-hero-overlay { position: absolute; inset: 0; }
.pt-hero-slide { opacity: 0; transform: scale(1.04); transition: opacity 1s ease, transform 7s ease; }
.pt-hero-slide.is-active { opacity: 1; transform: scale(1); }
.pt-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.pt-hero-overlay { background: linear-gradient(90deg, rgba(0,8,23,.96) 0%, rgba(1,16,45,.86) 45%, rgba(1,16,45,.42) 72%, rgba(0,8,23,.56) 100%); }
.pt-hero-content { position: relative; z-index: 2; width: 100%; display: flex; justify-content: center; align-items: center; padding-top: 90px; padding-bottom: 120px; text-align: center; }
.pt-hero-copy { width: min(100%,980px); }
.pt-hero-copy .pt-eyebrow { justify-content: center; }
.pt-hero-copy h1 { max-width: 980px; margin: 0 auto 24px; color: var(--pt-white); font-size: clamp(2.7rem, 4.6vw, 5rem); line-height: .99; letter-spacing: -.052em; }
.pt-hero-copy h1 em { display: block; margin-top: 10px; color: var(--pt-white); font-size: .58em; line-height: 1.1; letter-spacing: -.035em; }
.pt-hero-copy > p:not(.pt-eyebrow,.pt-license-note) { max-width: 780px; margin-inline: auto; color: #D4DCE8; font-size: clamp(14px, 1vw, 16px); line-height: 1.7; }
.pt-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 33px 0 27px; }
.pt-license-note { display: flex; justify-content: center; align-items: center; gap: 10px; color: #E4E9F0; font-size: 13px; font-weight: 650; }
.pt-license-note span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--pt-gradient); color: var(--pt-white); }
.pt-hero-panel { position: relative; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.055)); box-shadow: 0 30px 70px rgba(0,0,0,.32); backdrop-filter: blur(16px); }
.pt-hero-panel::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(145deg, rgba(255,255,255,.4), transparent 45%, rgba(196,39,44,.42)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; pointer-events: none; }
.pt-panel-label { margin-bottom: 18px; color: #FF9A9E; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pt-hero-panel ol { display: grid; gap: 11px; }
.pt-hero-panel li { display: grid; grid-template-columns: 29px 1fr 26px; gap: 10px; align-items: center; padding: 14px 15px; border-radius: 13px; background: rgba(255,255,255,.075); color: #C7D0DE; font-size: 13px; font-weight: 650; }
.pt-hero-panel li > span { color: #7F8BA0; font-size: 10px; }
.pt-hero-panel li > b { width: 22px; height: 22px; display: grid; place-items: center; border: 1.5px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 11px; }
.pt-hero-panel li.is-complete { color: var(--pt-white); }
.pt-hero-panel li.is-complete > b { border: 0; background: var(--pt-gradient); }
.pt-hero-panel dl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); }
.pt-hero-panel dl div { display: grid; gap: 4px; }
.pt-hero-panel dt { color: #9DA9BA; font-size: 11px; }
.pt-hero-panel dd { margin: 0; color: var(--pt-white); font-size: 20px; font-weight: 800; }
.pt-hero-controls { position: absolute; left: 50%; bottom: 34px; z-index: 4; display: flex; align-items: center; gap: 15px; transform: translateX(-50%); }
.pt-hero-controls > button, .pt-project-nav button, .pt-carousel-controls button, .pt-quote-controls > button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.08); color: var(--pt-white); font-size: 18px; cursor: pointer; }
.pt-hero-controls > button:hover { background: var(--pt-white); color: var(--pt-navy); }
.pt-slider-dots { display: flex; gap: 8px; }
.pt-slider-dots button, .pt-quote-controls div button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.36); cursor: pointer; transition: width .25s ease, background .25s ease; }
.pt-slider-dots button.is-active, .pt-quote-controls div button.is-active { width: 28px; background: var(--pt-red); }

.pt-trust-strip { overflow: hidden; border-bottom: 1px solid var(--pt-line); background: var(--pt-white); }
.pt-marquee { overflow: hidden; padding: 22px 0; }
.pt-marquee-track { width: max-content; display: flex; animation: pt-home-marquee 34s linear infinite; }
.pt-marquee:hover .pt-marquee-track, .pt-marquee:focus-within .pt-marquee-track { animation-play-state: paused; }
.pt-trust-item { width: 275px; display: flex; align-items: center; gap: 13px; padding: 0 28px; border-right: 1px solid var(--pt-line); }
.pt-trust-item img { width: 48px; height: 48px; object-fit: contain; }
.pt-trust-item span { display: grid; color: var(--pt-copy); font-size: 12px; }
.pt-trust-item strong { margin-bottom: 2px; color: var(--pt-navy); font-size: 14px; }
@keyframes pt-home-marquee { to { transform: translateX(-50%); } }

.pt-section { padding-block: var(--pt-section-y); }
.pt-section > .container { position: relative; z-index: 1; }
.pt-why, .pt-projects, .pt-insights { position: relative; isolation: isolate; overflow: hidden; }
.pt-why::before, .pt-projects::before, .pt-insights::before { content: ""; position: absolute; z-index: -1; width: 460px; height: 460px; right: -230px; top: 8%; border-radius: 50%; background: radial-gradient(circle,rgba(196,39,44,.07),rgba(196,39,44,0) 68%); }
.pt-why::after, .pt-projects::after, .pt-insights::after { content: ""; position: absolute; z-index: -1; left: -70px; bottom: 5%; width: 340px; height: 340px; opacity: .32; background-image: linear-gradient(rgba(1,16,45,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(1,16,45,.055) 1px,transparent 1px); background-size: 32px 32px; -webkit-mask-image: radial-gradient(circle,#000,transparent 70%); mask-image: radial-gradient(circle,#000,transparent 70%); transform: rotate(-10deg); }
.pt-section-heading { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); column-gap: clamp(36px, 6vw, 90px); row-gap: var(--pt-content-gap); align-items: end; margin-bottom: var(--pt-heading-gap); }
.pt-section-heading h2, .pt-faq-layout header h2, .pt-contact-copy h2, .pt-testimonial-intro h2 { max-width: 820px; color: var(--pt-navy); font-size: clamp(1.95rem, 2.8vw, 3.15rem); line-height: 1.12; letter-spacing: -.032em; }
.pt-section-heading > p, .pt-faq-layout header > p, .pt-testimonial-intro > p { color: var(--pt-copy); font-size: 16px; line-height: 1.72; }
.pt-section-heading-dark h2, .pt-section-heading-dark > p { color: var(--pt-white); }
.pt-section-heading-dark > p { color: #BBC6D5; }
.pt-section-heading-center { display: block; max-width: 900px; margin-left: auto; margin-right: auto; text-align: center; }
.pt-section-heading-center .pt-eyebrow { justify-content: center; }
.pt-section-heading-center > p { max-width: 650px; margin: 20px auto 0; }
.pt-approved-copy { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: var(--pt-grid-gap); margin: calc(var(--pt-heading-gap) * -.35) 0 var(--pt-heading-gap); }
.pt-approved-copy p { padding: 22px; border-left: 2px solid rgba(196,39,44,.35); background: rgba(246,247,249,.7); color: var(--pt-copy); font-size: 14px; line-height: 1.75; }
.pt-approved-copy-dark { grid-template-columns: 1.35fr .65fr; }
.pt-approved-copy-dark p { border-color: rgba(255,133,138,.52); background: rgba(255,255,255,.055); color: #BBC6D5; }

.pt-services { background: var(--pt-paper); }
.pt-service-layout { display: grid; grid-template-columns: minmax(300px,.7fr) minmax(0,1.3fr); gap: var(--pt-grid-gap); align-items: start; }
.pt-service-visual { position: sticky; top: 118px; min-height: 650px; overflow: hidden; border-radius: 30px; box-shadow: 0 24px 55px rgba(1,16,45,.14); }
.pt-service-visual picture, .pt-service-visual img { width: 100%; height: 100%; }
.pt-service-visual img { position: absolute; inset: 0; object-fit: cover; }
.pt-service-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(0,8,23,.91)); }
.pt-service-visual figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; color: #DDE4ED; font-size: 17px; line-height: 1.45; }
.pt-service-visual figcaption strong { display: block; color: var(--pt-white); font-size: 28px; }
.pt-services-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: var(--pt-card-gap); }
.pt-service-card { position: relative; min-height: 310px; display: flex; flex-direction: column; padding: 26px; overflow: hidden; border: 1px solid var(--pt-line); border-radius: 22px; background: var(--pt-white); color: inherit; box-shadow: 0 2px 4px rgba(1,16,45,.02), 0 12px 30px rgba(1,16,45,.045); }
.pt-service-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(196,39,44,.07), transparent 45%); opacity: 0; transition: opacity .3s ease; }
.pt-service-card:hover { color: inherit; transform: translateY(-6px); border-color: rgba(196,39,44,.35); box-shadow: 0 22px 45px rgba(1,16,45,.11); }
.pt-service-card:hover::before { opacity: 1; }
.pt-service-card img { position: relative; width: 74px; height: 74px; object-fit: contain; margin-bottom: 22px; }
.pt-card-index { position: absolute; top: 25px; right: 25px; color: #A6AFBD; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.pt-service-card h3 { position: relative; margin-bottom: 12px; color: var(--pt-navy); font-size: 19px; line-height: 1.25; }
.pt-service-card p { position: relative; margin-bottom: 20px; color: var(--pt-copy); font-size: 14px; line-height: 1.62; }
.pt-service-card > b { position: relative; margin-top: auto; color: var(--pt-red); font-size: 13px; }
.pt-service-card > b span { display: inline-block; transition: transform .2s ease; }
.pt-service-card:hover > b span { transform: translateX(4px); }
.pt-service-card-cta { justify-content: center; border: 0; background: var(--pt-navy); color: var(--pt-white); }
.pt-service-card-cta::after { content: ""; position: absolute; width: 230px; height: 230px; right: -90px; bottom: -100px; border-radius: 50%; background: var(--pt-gradient); opacity: .58; filter: blur(10px); }
.pt-service-card-cta h3 { color: var(--pt-white); font-size: 27px; }
.pt-service-card-cta p { color: #C3CEDC; }
.pt-service-card-cta .pt-button { position: relative; z-index: 2; align-self: flex-start; margin-top: 8px; }

.pt-why { background: var(--pt-white); }
.pt-why-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: var(--pt-card-gap); }
.pt-feature-card { isolation: isolate; min-height: 385px; position: relative; overflow: hidden; padding: 28px; border: 1px solid rgba(1,16,45,.11); border-radius: 25px; background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(245,247,250,.8)); box-shadow: 0 14px 38px rgba(1,16,45,.07); transition: transform .4s var(--ease-out), box-shadow .4s ease, border-color .4s ease; }
.pt-feature-card::before { content: ""; position: absolute; z-index: -2; width: 190px; height: 190px; left: -80px; top: 35px; border-radius: 50%; background: radial-gradient(circle,rgba(196,39,44,.22),rgba(122,16,21,0) 70%); filter: blur(8px); animation: pt-glow-drift 7s ease-in-out infinite alternate; }
.pt-feature-card::after { content: ""; position: absolute; z-index: 3; width: 55%; height: 170%; left: -80%; top: -35%; background: linear-gradient(100deg,transparent,rgba(255,255,255,.68),transparent); opacity: .36; transform: rotate(14deg); animation: pt-glass-sweep 7.5s ease-in-out infinite; pointer-events: none; }
.pt-feature-card:nth-child(2)::before, .pt-feature-card:nth-child(2)::after { animation-delay: -1.7s; }
.pt-feature-card:nth-child(3)::before, .pt-feature-card:nth-child(3)::after { animation-delay: -3.4s; }
.pt-feature-card:nth-child(4)::before, .pt-feature-card:nth-child(4)::after { animation-delay: -5.1s; }
.pt-feature-card:hover { transform: translateY(-8px); border-color: rgba(196,39,44,.32); box-shadow: 0 26px 58px rgba(1,16,45,.14); }
.pt-feature-photo { position: absolute; z-index: -1; inset: 0 0 auto; width: 100%; height: 195px; object-fit: cover; filter: saturate(.88) contrast(1.03); transition: transform .8s var(--ease-out),filter .5s ease; }
.pt-feature-card:hover .pt-feature-photo { transform: scale(1.055); filter: saturate(1) contrast(1.06); }
.pt-feature-card > span { position: relative; z-index: 2; display: block; margin-bottom: 101px; color: #FFD4D6; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.pt-feature-card > span::after { content: ""; display: block; width: 36px; height: 2px; margin-top: 12px; background: currentColor; }
.pt-feature-graphic { position: relative; z-index: 2; width: 78px; height: 78px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.78); border-radius: 20px; background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(255,255,255,.62)); box-shadow: inset 0 1px 0 rgba(255,255,255,.95),0 13px 30px rgba(1,16,45,.14),0 0 28px rgba(196,39,44,.14); backdrop-filter: blur(12px); animation: pt-icon-hover 5.5s ease-in-out infinite; }
.pt-feature-card:nth-child(2n) .pt-feature-graphic { animation-delay: -2.7s; }
.pt-feature-graphic svg { width: 48px; height: 48px; overflow: visible; fill: none; stroke: var(--pt-navy); stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.pt-feature-graphic .pt-svg-accent { stroke: var(--pt-red); }
.pt-feature-card h3 { position: relative; z-index: 2; margin-bottom: 13px; color: var(--pt-navy); font-size: 21px; }
.pt-feature-card p { position: relative; z-index: 2; color: var(--pt-copy); font-size: 14px; line-height: 1.68; }
.pt-feature-card-dark { border-color: rgba(255,255,255,.15); background: linear-gradient(145deg,rgba(1,16,45,.98),rgba(0,8,23,.95)); box-shadow: 0 24px 55px rgba(1,16,45,.2); }
.pt-feature-card-dark .pt-feature-photo { opacity: .7; }
.pt-feature-card-dark::before { background: radial-gradient(circle,rgba(196,39,44,.48),rgba(122,16,21,0) 70%); }
.pt-feature-card-dark .pt-feature-graphic { border-color: rgba(255,255,255,.28); background: linear-gradient(145deg,rgba(255,255,255,.18),rgba(255,255,255,.055)); box-shadow: inset 0 1px 0 rgba(255,255,255,.35),0 14px 32px rgba(0,0,0,.28),0 0 34px rgba(196,39,44,.24); }
.pt-feature-card-dark .pt-feature-graphic svg { stroke: var(--pt-white); }
.pt-feature-card-dark h3 { color: var(--pt-white); }
.pt-feature-card-dark p { color: #BFCADA; }
.pt-feature-card-soft { border-color: #F0DADD; background: linear-gradient(145deg,#FBF7F5,#F5EBEA); }
@keyframes pt-glass-sweep { 0%,18% { left:-80%; } 52%,100% { left:145%; } }
@keyframes pt-glow-drift { to { transform: translate(115px,55px) scale(1.18); } }
@keyframes pt-icon-hover { 50% { transform: translateY(-6px); box-shadow: inset 0 1px 0 rgba(255,255,255,.9),0 19px 34px rgba(1,16,45,.14),0 0 36px rgba(196,39,44,.2); } }
.pt-number-band { margin-top: 58px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--pt-line); border-bottom: 1px solid var(--pt-line); }
.pt-number-band > div { padding: 30px; text-align: center; border-right: 1px solid var(--pt-line); }
.pt-number-band > div:last-child { border: 0; }
.pt-number-band strong { display: block; color: var(--pt-navy); font-size: 35px; line-height: 1; }
.pt-number-band strong::after { content: "+"; color: var(--pt-red); font-size: .55em; }
.pt-number-band > div:nth-child(3) strong::after, .pt-number-band > div:nth-child(4) strong::after { display: none; }
.pt-number-band span { display: block; margin-top: 8px; color: var(--pt-copy); font-size: 12px; }

.pt-areas { position: relative; overflow: hidden; background: var(--pt-deep); }
.pt-area-watermark { position: absolute; right: -50px; top: 20px; color: rgba(255,255,255,.025); font-size: clamp(180px, 30vw, 430px); font-weight: 800; line-height: 1; letter-spacing: -.08em; }
.pt-area-carousel { position: relative; }
.pt-carousel-viewport { overflow: hidden; }
.pt-area-track { display: flex; gap: 18px; transition: transform .55s cubic-bezier(.22,.7,.3,1); }
.pt-area-card { isolation: isolate; position: relative; flex: 0 0 calc((100% - 36px)/3); min-height: 410px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 28px; border: 1px solid rgba(255,255,255,.25); border-radius: 24px; background: #0A1830; color: var(--pt-white); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.pt-area-card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg,rgba(0,8,23,.03) 15%,rgba(0,8,23,.32) 45%,rgba(0,8,23,.98) 100%); }
.pt-area-card::after { content: ""; position: absolute; z-index: -1; left: -35%; right: 35%; bottom: -30%; height: 70%; border-radius: 50%; background: radial-gradient(circle,rgba(196,39,44,.42),rgba(122,16,21,0) 68%); filter: blur(14px); opacity: .72; transition: transform .7s ease,opacity .4s ease; }
.pt-area-card > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out),filter .5s ease; }
.pt-area-card:hover { color: var(--pt-white); transform: translateY(-7px); border-color: rgba(255,255,255,.62); box-shadow: 0 28px 65px rgba(0,0,0,.32); }
.pt-area-card:hover > img { transform: scale(1.055); filter: saturate(1.08) contrast(1.03); }
.pt-area-card:hover::after { transform: translate(55%, -20%) scale(1.2); opacity: .95; }
.pt-area-card > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: auto; border: 1px solid rgba(255,255,255,.3); border-radius: 13px; background: rgba(1,16,45,.48); color: #FFADB0; font-size: 12px; font-weight: 800; backdrop-filter: blur(12px); box-shadow: inset 0 1px 0 rgba(255,255,255,.2); }
.pt-area-card h3 { margin: 80px 0 12px; color: var(--pt-white); font-size: 30px; text-shadow: 0 2px 16px rgba(0,0,0,.48); }
.pt-area-card p { min-height: 44px; color: #D8E0EA; font-size: 14px; line-height: 1.55; }
.pt-area-card b { margin-top: 20px; color: var(--pt-white); font-size: 13px; }
.pt-carousel-controls { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.pt-carousel-controls button { flex: 0 0 auto; }
.pt-carousel-progress { max-width: 240px; height: 2px; flex: 1; overflow: hidden; background: rgba(255,255,255,.2); }
.pt-carousel-progress span { display: block; width: 33.333%; height: 100%; background: var(--pt-red); transition: transform .5s ease; }

.pt-projects { background: var(--pt-white); }
.pt-project-slider { position: relative; margin-top: var(--pt-content-gap); }
.pt-project-slide { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(410px,.92fr); min-height: 410px; overflow: hidden; border-radius: 28px; background: var(--pt-navy); color: var(--pt-white); box-shadow: 0 24px 52px rgba(1,16,45,.17); animation: pt-slide-in .5s ease both; }
.pt-project-slide[hidden] { display: none !important; }
.pt-project-slide picture, .pt-project-slide img { width: 100%; height: 100%; min-height: 410px; }
.pt-project-slide img { object-fit: cover; }
.pt-project-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(27px,3.2vw,40px); }
.pt-project-copy > span { margin-bottom: 14px; color: #FF9195; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pt-project-copy h3 { margin-bottom: 13px; color: var(--pt-white); font-size: clamp(24px,2.25vw,32px); line-height: 1.13; }
.pt-project-copy p { color: #C3CDDA; font-size: 13px; line-height: 1.62; }
.pt-project-copy dl { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.pt-project-copy dl div { display: grid; gap: 5px; }
.pt-project-copy dt { color: #8997AA; font-size: 11px; }
.pt-project-copy dd { margin: 0; color: var(--pt-white); font-size: 17px; font-weight: 750; }
.pt-project-copy > a { color: #FF9EA1; font-size: 13px; font-weight: 750; }
.pt-project-nav { position: absolute; left: 30px; bottom: 28px; display: flex; align-items: center; gap: 14px; }
.pt-project-nav span { color: rgba(255,255,255,.62); font-size: 12px; }
.pt-project-nav span b { color: var(--pt-white); }
.pt-project-note { max-width: 820px; margin: var(--pt-content-gap) auto 0; color: var(--pt-copy); font-size: 13px; line-height: 1.65; text-align: center; }
@keyframes pt-slide-in { from { opacity: .3; transform: translateX(14px); } }

.pt-process { background: var(--pt-paper); }
.pt-process-grid { position: relative; display: grid; grid-template-columns: repeat(6,1fr); gap: 13px; }
.pt-process-grid::before { content: ""; position: absolute; left: 7%; right: 7%; top: 71px; height: 2px; background: linear-gradient(90deg, var(--pt-red), rgba(196,39,44,.15)); }
.pt-process-step { position: relative; min-width: 0; padding: 18px 14px 24px; text-align: center; }
.pt-process-step > span { display: block; margin-bottom: 10px; color: #9AA4B2; font-size: 10px; font-weight: 800; }
.pt-process-step img { position: relative; width: 70px; height: 70px; margin: 0 auto 20px; object-fit: contain; animation: pt-icon-float 5s ease-in-out infinite; }
.pt-process-step:nth-child(2n) img { animation-delay: -2.5s; }
.pt-process-step h3 { margin-bottom: 9px; color: var(--pt-navy); font-size: 17px; }
.pt-process-step p { color: var(--pt-copy); font-size: 12px; line-height: 1.58; }
@keyframes pt-icon-float { 50% { transform: translateY(-7px); } }
.pt-process-visual { position: relative; min-height: 520px; margin-top: 62px; overflow: hidden; border-radius: 30px; }
.pt-process-visual picture, .pt-process-visual img { position: absolute; inset: 0; width: 100%; height: 100%; }
.pt-process-visual img { object-fit: cover; }
.pt-process-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,8,23,.9), rgba(0,8,23,.22)); }
.pt-process-visual figcaption { position: absolute; z-index: 2; left: clamp(26px,5vw,64px); right: clamp(26px,5vw,64px); bottom: clamp(28px,5vw,60px); color: var(--pt-white); }
.pt-process-visual figcaption > p { max-width: 700px; margin-bottom: 27px; font-size: clamp(28px,4vw,52px); font-weight: 800; line-height: 1.05; letter-spacing: -.04em; }
.pt-process-visual figcaption > div { display: flex; flex-wrap: wrap; gap: 30px; }
.pt-process-visual figcaption span { color: #C5CEDB; font-size: 12px; }
.pt-process-visual figcaption strong { margin-right: 6px; color: var(--pt-white); font-size: 20px; }
.pt-process-links { margin-top: 26px; color: var(--pt-copy); font-size: 14px; text-align: center; }
.pt-process-links a { color: var(--pt-red); font-weight: 750; }

.pt-insights { background: var(--pt-white); }
.pt-insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--pt-card-gap); align-items: stretch; }
.pt-insight-card { min-width: 0; overflow: hidden; border: 1px solid var(--pt-line); border-radius: 22px; background: var(--pt-white); box-shadow: 0 2px 4px rgba(1,16,45,.02), 0 12px 30px rgba(1,16,45,.05); }
.pt-insight-card:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(1,16,45,.11); }
.pt-insight-card a { height: 100%; display: flex; flex-direction: column; color: inherit; }
.pt-insight-card a:hover { color: inherit; }
.pt-insight-card img { width: 100%; height: 165px; flex: 0 0 165px; object-fit: cover; object-position: center 48%; transition: transform .6s ease; }
.pt-insight-card:hover img { transform: scale(1.045); }
.pt-insight-card div { min-height: 230px; display: flex; flex: 1; flex-direction: column; padding: 22px; }
.pt-insight-card div > span { color: var(--pt-red); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pt-insight-card h3 { margin: 11px 0; color: var(--pt-navy); font-size: 18px; line-height: 1.28; }
.pt-insight-card p { color: var(--pt-copy); font-size: 13px; line-height: 1.58; }
.pt-insight-card b { display: block; margin-top: auto; padding-top: 17px; color: var(--pt-red); font-size: 12px; }
.pt-centered-action { margin-top: 38px; text-align: center; }

.pt-testimonials { overflow: hidden; background: var(--pt-navy); }
.pt-testimonial-shell { display: grid; grid-template-columns: minmax(300px,.8fr) minmax(0,1.2fr); gap: clamp(40px,7vw,105px); align-items: center; }
.pt-testimonial-intro h2 { color: var(--pt-white); }
.pt-testimonial-intro h2 em { color: #FF8E92; }
.pt-testimonial-intro > p { margin-top: 22px; color: #B7C3D3; }
.pt-rating { display: flex; align-items: center; gap: 15px; margin-top: 32px; }
.pt-rating > strong { color: var(--pt-white); font-size: 43px; }
.pt-rating > span { display: grid; color: #FFCA5C; letter-spacing: .08em; }
.pt-rating small { margin-top: 5px; color: #9EAABC; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.pt-testimonial-slider { min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px,5vw,58px); border-radius: 30px; background: var(--pt-white); box-shadow: 0 32px 70px rgba(0,0,0,.3); }
.pt-quote { animation: pt-quote-in .45s ease both; }
.pt-quote::before { content: "“"; display: block; height: 65px; color: var(--pt-red); font-family: Georgia,serif; font-size: 100px; line-height: 1; }
.pt-quote > p { color: var(--pt-navy); font-size: clamp(20px,2.3vw,30px); font-weight: 650; line-height: 1.45; letter-spacing: -.025em; }
.pt-quote footer { display: grid; gap: 4px; margin-top: 28px; }
.pt-quote footer strong { color: var(--pt-navy); font-size: 15px; }
.pt-quote footer span { color: var(--pt-copy); font-size: 12px; }
.pt-quote-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.pt-quote-controls > button { border-color: var(--pt-line); background: var(--pt-paper); color: var(--pt-navy); }
.pt-quote-controls div { display: flex; gap: 7px; }
.pt-quote-controls div button { background: #D4D9E1; }
@keyframes pt-quote-in { from { opacity: 0; transform: translateY(10px); } }

.pt-faq { background: var(--pt-paper); }
.pt-faq-layout { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); gap: clamp(46px,8vw,115px); align-items: start; }
.pt-faq-layout header { position: sticky; top: 125px; }
.pt-faq-layout header > p { margin: 23px 0 28px; }
.pt-accordion { border-top: 1px solid #CED5DF; }
.pt-faq-item { border-bottom: 1px solid #CED5DF; }
.pt-faq-item h3 { margin: 0; }
.pt-faq-item button { width: 100%; display: grid; grid-template-columns: 1fr 42px; gap: 18px; align-items: center; padding: 26px 0; border: 0; background: transparent; color: var(--pt-navy); font: inherit; font-size: clamp(16px,1.5vw,20px); font-weight: 750; text-align: left; cursor: pointer; }
.pt-faq-item button span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--pt-white); color: var(--pt-red); box-shadow: 0 5px 16px rgba(1,16,45,.08); }
.pt-faq-answer { padding: 0 58px 27px 0; animation: pt-answer-in .3s ease both; }
.pt-faq-answer p { color: var(--pt-copy); font-size: 15px; line-height: 1.75; }
@keyframes pt-answer-in { from { opacity: 0; transform: translateY(-5px); } }

.pt-contact { padding: clamp(80px,9vw,125px) 0 clamp(64px,7vw,96px); background: var(--pt-white); }
.pt-contact-panel { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); overflow: hidden; border-radius: 34px; background: var(--pt-navy); box-shadow: 0 30px 70px rgba(1,16,45,.2); }
.pt-contact-copy { padding: clamp(35px,5vw,70px); }
.pt-contact-copy h2 { color: var(--pt-white); }
.pt-contact-copy > p { margin: 22px 0 31px; color: #B9C5D4; line-height: 1.72; }
.pt-contact-copy ul { display: grid; gap: 13px; }
.pt-contact-copy li { display: grid; grid-template-columns: 52px 1fr; gap: 13px; align-items: center; color: #D1D9E5; font-size: 13px; line-height: 1.45; }
.pt-contact-copy li img { width: 48px; height: 48px; }
.pt-contact-copy li span { display: grid; gap: 3px; }
.pt-contact-copy li small { color: #8F9CAF; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.pt-contact-copy li a { color: var(--pt-white); font-weight: 700; }
.pt-contact-form { margin: 18px; padding: clamp(28px,4vw,50px); border-radius: 26px; background: var(--pt-white); }
.pt-form-label { margin-bottom: 8px; color: var(--pt-red); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.pt-contact-form h3 { margin-bottom: 28px; color: var(--pt-navy); font-size: 28px; }
.pt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pt-contact-form > label, .pt-form-grid label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--pt-navy); font-size: 12px; font-weight: 750; }
.pt-contact-form input, .pt-contact-form textarea { width: 100%; padding: 14px 15px; border: 1px solid #D7DDE6; border-radius: 11px; background: #FBFCFD; color: var(--pt-navy); font: inherit; font-size: 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.pt-contact-form input:focus, .pt-contact-form textarea:focus { border-color: var(--pt-red); box-shadow: 0 0 0 3px rgba(196,39,44,.11); }
.pt-upload { grid-template-columns: 45px 1fr auto !important; align-items: center; padding: 12px; border: 1px dashed #BEC6D2; border-radius: 13px; cursor: pointer; }
.pt-upload img { width: 42px; height: 42px; }
.pt-upload span { display: grid; gap: 3px; }
.pt-upload small { color: var(--pt-copy); font-weight: 500; }
.pt-upload input { max-width: 118px; padding: 5px; border: 0; background: transparent; font-size: 10px; }
.pt-contact-form .pt-button { width: 100%; margin-top: 8px; }
.pt-form-status { min-height: 20px; margin-top: 12px; color: var(--pt-red); font-size: 12px; font-weight: 700; text-align: center; }
.pt-map { position: relative; height: 390px; margin: 42px 0 0; overflow: hidden; border: 2px solid transparent; border-radius: 30px; background: linear-gradient(var(--pt-navy),var(--pt-navy)) padding-box,var(--pt-gradient) border-box; box-shadow: 0 24px 55px rgba(1,16,45,.17),0 8px 25px rgba(122,16,21,.13); }
.pt-map::before { content: ""; position: absolute; z-index: 1; inset: 0; border-radius: 28px; background-image: linear-gradient(115deg,rgba(1,16,45,.2),transparent 45%,rgba(122,16,21,.13)),linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: auto,32px 32px,32px 32px; pointer-events: none; }
.pt-map iframe { position: relative; z-index: 0; width: 100%; height: 100%; border: 0; border-radius: 28px; background: var(--pt-navy); filter: saturate(.45) contrast(1.06) brightness(.95); }
.pt-map > div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 17px 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: linear-gradient(135deg,rgba(1,16,45,.95),rgba(1,16,45,.82)); color: var(--pt-white); box-shadow: 0 15px 35px rgba(0,8,23,.25); backdrop-filter: blur(14px); }
.pt-map > div span { font-weight: 750; }
.pt-map > div a { color: #FF979A; font-size: 13px; font-weight: 750; }

.pt-footer { padding: 72px 0 22px; background: var(--pt-deep); color: #9EABBC; }
.pt-footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3,1fr); gap: clamp(35px,6vw,80px); }
.pt-brand-light { color: var(--pt-white); }
.pt-brand-light:hover { color: var(--pt-white); }
.pt-footer-brand > p { max-width: 340px; margin-top: 20px; color: #9EABBC; font-size: 13px; line-height: 1.7; }
.pt-footer-social { display: flex; gap: 10px; margin-top: 22px; }
.pt-footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: var(--pt-white); background: rgba(255,255,255,.045); }
.pt-footer-social a:hover, .pt-footer-social a:focus-visible { border-color: #FF8D91; color: #FFB4B7; background: rgba(196,39,44,.16); transform: translateY(-2px); }
.pt-footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.pt-footer-grid > div:not(.pt-footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.pt-footer h2 { margin-bottom: 8px; color: var(--pt-white); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.pt-footer a { color: #B9C4D2; font-size: 13px; }
.pt-footer a:hover { color: var(--pt-white); }
.pt-footer-grid p { font-size: 12px; line-height: 1.65; }
.pt-footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.pt-footer-bottom div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.7,.3,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .pt-header-cta { display: none; }
  .pt-why-grid { grid-template-columns: repeat(2,1fr); }
  .pt-process-grid { grid-template-columns: repeat(3,1fr); }
  .pt-process-grid::before { display: none; }
  .pt-footer-grid { grid-template-columns: 1.25fr repeat(2,1fr); }
  .pt-footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 991px) {
  .pt-utility-inner > p, .pt-utility-links a:nth-last-child(-n+2) { display: none; }
  .pt-utility-inner { justify-content: center; }
  .pt-header-inner { min-height: 72px; }
  .pt-nav-toggle { display: block; margin-left: auto; }
  .pt-primary-nav { display: none; }
  .pt-hero { min-height: 820px; }
  .pt-hero-content { padding-top: 70px; padding-bottom: 120px; }
  .pt-section-heading, .pt-service-layout, .pt-testimonial-shell, .pt-faq-layout, .pt-contact-panel { grid-template-columns: 1fr; }
  .pt-approved-copy { grid-template-columns: 1fr; }
  .pt-service-visual, .pt-faq-layout header { position: relative; top: auto; }
  .pt-service-visual { min-height: 500px; }
  .pt-area-card { flex-basis: calc((100% - 18px)/2); }
  .pt-project-slide { grid-template-columns: 1fr; }
  .pt-project-slide picture, .pt-project-slide img { min-height: 285px; max-height: 305px; }
  .pt-project-nav { left: auto; right: 25px; top: 255px; bottom: auto; }
  .pt-insight-grid { grid-template-columns: 1fr 1fr; }
  .pt-insight-card img { height: 150px; flex-basis: 150px; }
  .pt-contact-form { margin-top: 0; }
  .pt-footer-grid { grid-template-columns: repeat(2,1fr); }
  .pt-footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .pt-brand img { width: 48px; height: 48px; }
  .pt-brand strong { font-size: 14px; }
  .pt-hero { min-height: 790px; }
  .pt-hero-content { padding-top: 55px; padding-bottom: 105px; }
  .pt-hero-copy h1 { font-size: clamp(2.35rem, 11vw, 3.35rem); }
  .pt-hero-panel { display: none; }
  .pt-hero-overlay { background: linear-gradient(180deg, rgba(0,8,23,.87), rgba(0,8,23,.83)); }
  .pt-hero-actions { align-items: stretch; flex-direction: column; }
  .pt-hero-actions .pt-button { width: 100%; }
  .pt-hero-controls { width: calc(100% - 40px); justify-content: space-between; }
  .pt-section { padding-block: var(--section-y-sm); }
  .pt-section-heading { display: block; }
  .pt-section-heading > p { margin-top: 22px; }
  .pt-section-heading h2, .pt-faq-layout header h2, .pt-contact-copy h2, .pt-testimonial-intro h2 { font-size: clamp(1.8rem, 8vw, 2.25rem); line-height: 1.14; }
  .pt-service-visual { min-height: 420px; }
  .pt-services-grid, .pt-why-grid, .pt-insight-grid { grid-template-columns: 1fr; }
  .pt-insight-card img { height: 160px; flex-basis: 160px; }
  .pt-insight-card div { min-height: 210px; padding: 21px; }
  .pt-service-card { min-height: 285px; }
  .pt-number-band { grid-template-columns: 1fr 1fr; }
  .pt-number-band > div:nth-child(2) { border-right: 0; }
  .pt-number-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--pt-line); }
  .pt-area-card { flex-basis: 88%; }
  .pt-project-slide picture, .pt-project-slide img { min-height: 225px; max-height: 240px; }
  .pt-project-copy { padding: 30px 24px 34px; }
  .pt-project-copy dl { grid-template-columns: 1fr; }
  .pt-project-nav { top: 194px; right: 18px; }
  .pt-process-grid { grid-template-columns: 1fr 1fr; }
  .pt-process-step { padding: 16px 10px 24px; }
  .pt-process-visual { min-height: 550px; }
  .pt-process-visual::after { background: linear-gradient(180deg, rgba(0,8,23,.18), rgba(0,8,23,.92)); }
  .pt-process-visual figcaption > div { display: grid; gap: 10px; }
  .pt-testimonial-slider { min-height: 470px; padding: 27px; }
  .pt-faq-layout header { margin-bottom: 30px; }
  .pt-faq-answer { padding-right: 0; }
  .pt-contact-panel { border-radius: 27px; }
  .pt-contact-copy { padding: 34px 24px; }
  .pt-contact-form { margin: 0 10px 10px; padding: 27px 20px; }
  .pt-form-grid { grid-template-columns: 1fr; gap: 0; }
  .pt-upload { grid-template-columns: 42px 1fr !important; }
  .pt-upload input { grid-column: 1 / -1; max-width: none; }
  .pt-map { height: 340px; margin-top: 28px; border-radius: 24px; }
  .pt-map iframe, .pt-map::before { border-radius: 22px; }
  .pt-map > div { align-items: flex-start; flex-direction: column; }
  .pt-footer-grid { grid-template-columns: 1fr; }
  .pt-footer-bottom { align-items: flex-start; flex-direction: column; }
  .pt-footer-bottom div { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .pt-marquee-track, .pt-process-step img, .pt-feature-card::before, .pt-feature-card::after, .pt-feature-graphic, .mm-menu.pt-mobile-menu::before, .mm-menu.pt-mobile-menu::after { animation: none; }
  .pt-hero-slide, .pt-area-track, [data-reveal] { transition-duration: .01ms; }
  [data-reveal] { opacity: 1; transform: none; }
}
