/* ==========================================================================
   Pearl Tech Software Solutions — design system
   Layered on top of Bootstrap 5. Everything brand-specific lives here.

   Contents
   1.  Tokens
   2.  Base & typography
   3.  Layout primitives
   4.  Buttons & links
   5.  Header / navigation
   6.  Hero
   7.  Cards & surfaces
   8.  Sections (clients, process, stats, products, industries, tech…)
   9.  Portfolio
   10. Pricing
   11. Forms
   12. Footer
   13. Utilities, motion & print
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* Brand */
  --pt-navy-900: #0A1730;
  --pt-navy-800: #0F1E3D;
  --pt-navy-700: #16305C;
  --pt-navy-600: #1D3E75;
  --pt-navy-500: #2A5296;

  --pt-cyan-600: #1385B4;
  --pt-cyan-500: #1FA2D6;
  --pt-cyan-400: #45B7E3;
  --pt-cyan-050: #E8F5FB;

  /* Neutrals */
  --pt-ink:      #0C1728;
  --pt-body:     #4A5A70;
  --pt-muted:    #7C8899;
  --pt-line:     #E2E7EF;
  --pt-line-soft:#EDF1F6;
  --pt-surface:  #F6F8FB;
  --pt-surface-2:#EEF2F7;
  --pt-white:    #FFFFFF;

  /* Status */
  --pt-success:  #12855F;
  --pt-success-bg:#E6F4EF;
  --pt-danger:   #C0392B;
  --pt-danger-bg:#FBEBE9;
  --pt-warning:  #B7791F;

  /* Type */
  --pt-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --pt-font-head: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape & depth */
  --pt-radius:    10px;
  --pt-radius-sm: 7px;
  --pt-radius-lg: 14px;
  --pt-shadow-xs: 0 1px 2px rgba(12, 23, 40, .05);
  --pt-shadow-sm: 0 2px 8px rgba(12, 23, 40, .06);
  --pt-shadow-md: 0 10px 28px -12px rgba(12, 23, 40, .18);
  --pt-shadow-lg: 0 24px 60px -28px rgba(12, 23, 40, .32);

  /* Rhythm */
  --pt-section-y: 6.5rem;
  --pt-header-h:  74px;

  --pt-ease: cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 991.98px) {
  :root { --pt-section-y: 4rem; --pt-header-h: 64px; }
}

/* Bootstrap variable overrides */
:root {
  --bs-primary: var(--pt-navy-800);
  --bs-body-color: var(--pt-body);
  --bs-body-font-family: var(--pt-font-body);
  --bs-link-color: var(--pt-cyan-600);
  --bs-link-hover-color: var(--pt-navy-700);
  --bs-border-color: var(--pt-line);
}

/* ==========================================================================
   2. BASE & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--pt-header-h) + 16px); }

body {
  font-family: var(--pt-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pt-body);
  background: var(--pt-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
  font-family: var(--pt-font-head);
  color: var(--pt-ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.021em;
  margin: 0 0 .6rem;
}

h1, .h1 { font-size: clamp(2rem, 1.4rem + 2.1vw, 3.05rem); letter-spacing: -0.03em; }
h2, .h2 { font-size: clamp(1.65rem, 1.2rem + 1.7vw, 2.4rem);  letter-spacing: -0.026em; }
h3, .h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); }
h4, .h4 { font-size: 1.1rem; }
h5      { font-size: 1rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--pt-cyan-600); text-decoration: none; transition: color .18s var(--pt-ease); }
a:hover { color: var(--pt-navy-700); }

strong, b { font-weight: 650; color: var(--pt-ink); }

img { max-width: 100%; height: auto; }

::selection { background: var(--pt-cyan-500); color: #fff; }

:focus-visible {
  outline: 2px solid var(--pt-cyan-500);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Text helpers */
.lead-text { font-size: 1.09rem; line-height: 1.72; color: var(--pt-body); }
.text-ink   { color: var(--pt-ink) !important; }
.text-muted-2 { color: var(--pt-muted) !important; }
.text-accent { color: var(--pt-cyan-600) !important; }
.fw-650 { font-weight: 650; }

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */
.container, .container-lg, .container-xl { max-width: 1200px; }
.container-narrow { max-width: 840px; margin-inline: auto; }

.section { padding-block: var(--pt-section-y); position: relative; }
.section--tight { padding-block: calc(var(--pt-section-y) * .62); }
.section--surface { background: var(--pt-surface); }
.section--line-top { border-top: 1px solid var(--pt-line); }
.section--dark {
  background: var(--pt-navy-800);
  color: rgba(255, 255, 255, .74);
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark .eyebrow { color: #fff; }
.section--dark .eyebrow { color: var(--pt-cyan-400); }

/* Section heading block */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--pt-font-body);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--pt-cyan-600);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--pt-cyan-500);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.section-head { margin-bottom: 3rem; }
.section-head p { color: var(--pt-body); max-width: 60ch; }
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

/* Thin divider */
.rule { height: 1px; background: var(--pt-line); border: 0; margin: 0; }

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn-pt,
.btn-pt-outline,
.btn-pt-accent,
.btn-pt-ghost {
  --_bg: transparent;
  --_fg: var(--pt-ink);
  --_bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.4rem;
  font-family: var(--pt-font-body);
  font-size: .945rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.005em;
  border: 1px solid var(--_bd);
  border-radius: var(--pt-radius-sm);
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  text-align: center;
  transition: background-color .18s var(--pt-ease), border-color .18s var(--pt-ease),
              color .18s var(--pt-ease), transform .18s var(--pt-ease), box-shadow .18s var(--pt-ease);
}
.btn-pt i, .btn-pt-outline i, .btn-pt-accent i, .btn-pt-ghost i { font-size: 1.05em; }

.btn-pt { --_bg: var(--pt-navy-800); --_fg: #fff; --_bd: var(--pt-navy-800); }
.btn-pt:hover { --_bg: var(--pt-navy-700); --_bd: var(--pt-navy-700); color: #fff; transform: translateY(-1px); box-shadow: var(--pt-shadow-md); }

.btn-pt-accent { --_bg: var(--pt-cyan-500); --_fg: #fff; --_bd: var(--pt-cyan-500); }
.btn-pt-accent:hover { --_bg: var(--pt-cyan-600); --_bd: var(--pt-cyan-600); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(31, 162, 214, .7); }

.btn-pt-outline { --_bg: transparent; --_fg: var(--pt-ink); --_bd: var(--pt-line); }
.btn-pt-outline:hover { --_bg: var(--pt-white); --_bd: var(--pt-navy-800); color: var(--pt-navy-800); }

.btn-pt-ghost { --_fg: var(--pt-ink); padding-inline: .35rem; }
.btn-pt-ghost:hover { --_fg: var(--pt-cyan-600); }

.section--dark .btn-pt-outline,
.hero .btn-pt-outline,
.page-head .btn-pt-outline,
.cta-band .btn-pt-outline { --_fg: #fff; --_bd: rgba(255,255,255,.28); }
.section--dark .btn-pt-outline:hover,
.hero .btn-pt-outline:hover,
.page-head .btn-pt-outline:hover,
.cta-band .btn-pt-outline:hover { --_bg: rgba(255,255,255,.08); --_bd: rgba(255,255,255,.65); color: #fff; }

.section--dark .btn-pt,
.hero .btn-pt,
.page-head .btn-pt,
.cta-band .btn-pt { --_bg: #fff; --_fg: var(--pt-navy-800); --_bd: #fff; }
.section--dark .btn-pt:hover,
.hero .btn-pt:hover,
.page-head .btn-pt:hover,
.cta-band .btn-pt:hover { --_bg: var(--pt-cyan-050); --_bd: var(--pt-cyan-050); color: var(--pt-navy-800); }

/* Cards and windows keep their own light colour scheme inside dark sections,
   including the buttons that sit inside them. */
.hero .card-pt, .hero .app-window, .hero .side-card,
.page-head .card-pt, .page-head .side-card,
.section--dark .card-pt, .cta-band .card-pt { color: var(--pt-body); }

.hero .card-pt .btn-pt, .page-head .card-pt .btn-pt,
.section--dark .card-pt .btn-pt, .cta-band .card-pt .btn-pt {
  --_bg: var(--pt-navy-800); --_fg: #fff; --_bd: var(--pt-navy-800);
}
.hero .card-pt .btn-pt:hover, .page-head .card-pt .btn-pt:hover,
.section--dark .card-pt .btn-pt:hover, .cta-band .card-pt .btn-pt:hover {
  --_bg: var(--pt-navy-700); --_bd: var(--pt-navy-700); color: #fff;
}
.hero .card-pt .btn-pt-outline, .page-head .card-pt .btn-pt-outline,
.section--dark .card-pt .btn-pt-outline, .cta-band .card-pt .btn-pt-outline {
  --_fg: var(--pt-ink); --_bd: var(--pt-line);
}
.hero .card-pt .btn-pt-outline:hover, .page-head .card-pt .btn-pt-outline:hover,
.section--dark .card-pt .btn-pt-outline:hover, .cta-band .card-pt .btn-pt-outline:hover {
  --_bg: var(--pt-white); --_bd: var(--pt-navy-800); color: var(--pt-navy-800);
}

.btn-sm-pt { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg-pt { padding: .9rem 1.7rem; font-size: 1rem; }
.btn-block-sm { width: 100%; }
@media (min-width: 576px) { .btn-block-sm { width: auto; } }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  font-weight: 600;
  font-size: .93rem;
  color: var(--pt-navy-700);
}
.link-arrow i { transition: transform .2s var(--pt-ease); font-size: .95em; }
.link-arrow:hover { color: var(--pt-cyan-600); }
.link-arrow:hover i { transform: translateX(3px); }

/* ==========================================================================
   5. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--pt-line-soft);
  transition: box-shadow .25s var(--pt-ease), border-color .25s var(--pt-ease);
}
.site-header.is-stuck { box-shadow: 0 1px 18px rgba(12, 23, 40, .07); border-color: transparent; }

.site-header__inner {
  height: var(--pt-header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: .62rem; flex-shrink: 0; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--pt-font-head);
  font-weight: 800;
  font-size: 1.09rem;
  color: var(--pt-ink);
  letter-spacing: -.024em;
}
.brand__sub {
  font-size: .625rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--pt-muted);
  font-weight: 600;
}

/* Desktop nav */
.nav-main { display: none; margin-left: auto; }
@media (min-width: 992px) { .nav-main { display: flex; align-items: center; gap: .15rem; } }

.nav-main__item { position: relative; }
.nav-main__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .78rem;
  border-radius: var(--pt-radius-sm);
  font-size: .935rem;
  font-weight: 550;
  color: var(--pt-body);
  white-space: nowrap;
}
.nav-main__link:hover { color: var(--pt-ink); background: var(--pt-surface); }
.nav-main__link.is-active { color: var(--pt-navy-800); font-weight: 650; }
.nav-main__link .bi-chevron-down { font-size: .6rem; opacity: .55; transition: transform .2s var(--pt-ease); }
.nav-main__item:hover .bi-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 340px;
  padding: .5rem;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  box-shadow: var(--pt-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s var(--pt-ease), transform .18s var(--pt-ease), visibility .18s;
}
.nav-main__item:hover > .nav-drop,
.nav-main__item:focus-within > .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop::before { content: ""; position: absolute; inset: -12px 0 100% 0; }

.nav-drop__link {
  display: flex;
  gap: .75rem;
  padding: .6rem .7rem;
  border-radius: var(--pt-radius-sm);
  color: var(--pt-ink);
}
.nav-drop__link:hover { background: var(--pt-surface); color: var(--pt-ink); }
.nav-drop__icon {
  flex: 0 0 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--pt-cyan-050);
  color: var(--pt-cyan-600);
  font-size: .95rem;
}
.nav-drop__label { font-weight: 620; font-size: .91rem; line-height: 1.35; }
.nav-drop__sub {
  display: block;
  font-size: .795rem;
  color: var(--pt-muted);
  line-height: 1.45;
  margin-top: .1rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-cta { display: none; margin-left: .6rem; }
@media (min-width: 992px) { .header-cta { display: inline-flex; gap: .5rem; } }

/* Mobile toggle + drawer */
.nav-toggle {
  margin-left: auto;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius-sm);
  background: #fff;
  color: var(--pt-ink);
  font-size: 1.25rem;
}
@media (min-width: 992px) { .nav-toggle { display: none; } }

.nav-mobile {
  position: fixed;
  inset: var(--pt-header-h) 0 0 0;
  background: #fff;
  z-index: 1029;
  overflow-y: auto;
  padding: 1.25rem 0 3rem;
  transform: translateX(100%);
  transition: transform .28s var(--pt-ease);
  visibility: hidden;
}
.nav-mobile.is-open { transform: translateX(0); visibility: visible; }
body.nav-locked { overflow: hidden; }

.nav-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid var(--pt-line-soft);
  font-family: var(--pt-font-head);
  font-weight: 620;
  font-size: 1.02rem;
  color: var(--pt-ink);
}
.nav-mobile__sublist { padding: .35rem 0 .75rem; }
.nav-mobile__sublink {
  display: block;
  padding: .5rem 0 .5rem .9rem;
  border-left: 2px solid var(--pt-line);
  font-size: .93rem;
  color: var(--pt-body);
}
.nav-mobile__sublink:hover { border-color: var(--pt-cyan-500); color: var(--pt-ink); }
.nav-mobile__group > .nav-mobile__link { cursor: pointer; }
.nav-mobile__group[data-open="false"] .nav-mobile__sublist { display: none; }
.nav-mobile__group[data-open="true"] .nav-mobile__link i { transform: rotate(180deg); }
.nav-mobile__link i { transition: transform .2s var(--pt-ease); font-size: .7rem; color: var(--pt-muted); }

/* Top strip */
.topbar {
  background: var(--pt-navy-900);
  color: rgba(255,255,255,.72);
  font-size: .8rem;
}
.topbar a { color: rgba(255,255,255,.86); }
.topbar a:hover { color: #fff; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.topbar__list { display: flex; gap: 1.35rem; list-style: none; margin: 0; padding: 0; }
.topbar__list li { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 767.98px) { .topbar { display: none; } }

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--pt-navy-800);
  color: rgba(255,255,255,.76);
  overflow: hidden;
  padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 460px at 82% 8%, rgba(31,162,214,.22), transparent 62%),
    radial-gradient(700px 420px at 6% 96%, rgba(42,82,150,.42), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 78%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }

.hero h1 { color: #fff; margin-bottom: 1.15rem; }
.hero__lead { font-size: clamp(1.02rem, .96rem + .3vw, 1.16rem); color: rgba(255,255,255,.76); max-width: 34rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .38rem .8rem .38rem .45rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  font-size: .8rem;
  color: rgba(255,255,255,.86);
  margin-bottom: 1.4rem;
}
.hero__badge b {
  background: var(--pt-cyan-500);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .18rem .5rem;
  border-radius: 100px;
}

.hero__points { list-style: none; margin: 1.7rem 0 0; padding: 0; display: grid; gap: .55rem; }
@media (min-width: 576px) { .hero__points { grid-template-columns: 1fr 1fr; } }
.hero__points li { display: flex; align-items: flex-start; gap: .55rem; font-size: .925rem; color: rgba(255,255,255,.8); }
.hero__points i { color: var(--pt-cyan-400); margin-top: .18rem; flex-shrink: 0; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

.hero__trust {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1.9rem;
}
.hero__trust div span { display: block; font-family: var(--pt-font-head); font-size: 1.45rem; font-weight: 700; color: #fff; line-height: 1.1; }
.hero__trust div small { font-size: .78rem; color: rgba(255,255,255,.55); letter-spacing: .01em; }

/* Hero visual: a stylised product window built in CSS (no image needed) */
.app-window {
  border-radius: var(--pt-radius-lg);
  background: #fff;
  color: var(--pt-body);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 90px -30px rgba(4, 12, 28, .75);
  overflow: hidden;
}
.app-window__bar {
  display: flex; align-items: center; gap: .45rem;
  padding: .62rem .85rem;
  background: var(--pt-surface);
  border-bottom: 1px solid var(--pt-line);
}
.app-window__dot { width: 9px; height: 9px; border-radius: 50%; background: #D6DCE5; }
.app-window__title {
  margin-left: .5rem; font-size: .72rem; color: var(--pt-muted);
  font-weight: 600; letter-spacing: .02em;
}
.app-window__body { padding: 1.05rem; background: #fff; }

.mini-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-bottom: .85rem; }
.mini-kpi { border: 1px solid var(--pt-line); border-radius: var(--pt-radius-sm); padding: .6rem .7rem; }
.mini-kpi small { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; color: var(--pt-muted); font-weight: 650; }
.mini-kpi span { font-family: var(--pt-font-head); font-size: 1.02rem; font-weight: 700; color: var(--pt-ink); }
.mini-kpi em { font-style: normal; font-size: .68rem; font-weight: 650; color: var(--pt-success); }

.mini-chart { display: flex; align-items: flex-end; gap: 5px; height: 92px; padding: .35rem .1rem 0; }
.mini-chart i {
  flex: 1;
  background: linear-gradient(180deg, var(--pt-cyan-400), var(--pt-cyan-600));
  border-radius: 3px 3px 0 0;
  min-height: 8%;
  animation: bar-rise .9s var(--pt-ease) backwards;
}
.mini-chart i:nth-child(even) { background: linear-gradient(180deg, #C9DCEB, #A9C4DA); }
@keyframes bar-rise { from { height: 4% !important; opacity: .2; } }

.mini-rows { margin-top: .85rem; border-top: 1px solid var(--pt-line-soft); }
.mini-row {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .5rem 0; border-bottom: 1px solid var(--pt-line-soft); font-size: .78rem;
}
.mini-row:last-child { border-bottom: 0; }
.mini-row span:first-child { color: var(--pt-ink); font-weight: 600; }
.mini-row span:last-child { color: var(--pt-muted); }
.mini-pill {
  font-size: .66rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .15rem .48rem; border-radius: 100px; background: var(--pt-success-bg); color: var(--pt-success);
}
.mini-pill--warn { background: #FFF4E0; color: var(--pt-warning); }

.hero__float {
  position: absolute;
  background: #fff;
  border-radius: var(--pt-radius);
  border: 1px solid var(--pt-line);
  box-shadow: var(--pt-shadow-lg);
  padding: .7rem .9rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .8rem;
  color: var(--pt-ink);
  font-weight: 600;
}
.hero__float i { color: var(--pt-cyan-600); font-size: 1.15rem; }
.hero__float--a { left: -26px; bottom: -20px; }
.hero__float--b { right: -22px; top: -20px; }
@media (max-width: 1199.98px) { .hero__float { display: none; } }

.hero-visual { position: relative; }

/* Page header for interior pages */
.page-head {
  background: var(--pt-navy-800);
  color: rgba(255,255,255,.74);
  padding-block: clamp(2.6rem, 1.8rem + 3vw, 4.4rem);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(760px 340px at 88% 0%, rgba(31,162,214,.24), transparent 62%);
}
.page-head > .container { position: relative; z-index: 2; }
.page-head h1 { color: #fff; margin-bottom: .8rem; }
.page-head p { color: rgba(255,255,255,.74); max-width: 62ch; font-size: 1.04rem; }

.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 1.1rem; font-size: .83rem; }
.crumbs li { color: rgba(255,255,255,.5); }
.crumbs li + li::before { content: "/"; margin-right: .45rem; opacity: .45; }
.crumbs a { color: rgba(255,255,255,.78); }
.crumbs a:hover { color: #fff; }

/* ==========================================================================
   7. CARDS & SURFACES
   ========================================================================== */
.card-pt {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  padding: 1.6rem;
  transition: border-color .2s var(--pt-ease), box-shadow .2s var(--pt-ease), transform .2s var(--pt-ease);
}
.card-pt:hover { border-color: #CFDAE7; box-shadow: var(--pt-shadow-md); transform: translateY(-2px); }
.card-pt h3, .card-pt h4 { margin-bottom: .45rem; }
.card-pt p { font-size: .935rem; color: var(--pt-body); margin-bottom: 0; }
.card-pt--flat:hover { transform: none; box-shadow: var(--pt-shadow-xs); }
.card-pt--pad-lg { padding: 2rem; }

.icon-tile {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--pt-cyan-050);
  color: var(--pt-cyan-600);
  font-size: 1.28rem;
  margin-bottom: 1.05rem;
  transition: background-color .2s var(--pt-ease), color .2s var(--pt-ease);
}
.card-pt:hover .icon-tile { background: var(--pt-navy-800); color: #fff; }
.icon-tile--navy { background: rgba(15,30,61,.06); color: var(--pt-navy-800); }
.icon-tile--sm { width: 38px; height: 38px; font-size: 1.05rem; border-radius: 8px; margin-bottom: .8rem; }
.icon-tile--lg { width: 56px; height: 56px; font-size: 1.55rem; border-radius: 12px; }

.stretch-link::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
}

/* Feature panel (large, two-up) */
.panel {
  height: 100%;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius-lg);
  padding: 2.1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.panel--accent {
  background: linear-gradient(180deg, #FBFDFE, #F4F9FC);
  border-color: #D9E9F3;
}
.panel__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--pt-cyan-600);
  margin-bottom: .7rem;
}
.panel ul { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .5rem; }
.panel ul li { display: flex; gap: .55rem; font-size: .92rem; }
.panel ul li i { color: var(--pt-cyan-600); margin-top: .22rem; flex-shrink: 0; font-size: .95em; }
.panel__foot { margin-top: auto; padding-top: 1.5rem; }

/* Checklist */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .62rem; }
.check-list li { display: flex; gap: .6rem; font-size: .95rem; }
.check-list li i { color: var(--pt-cyan-600); margin-top: .25rem; flex-shrink: 0; font-size: .9em; }

/* Placeholder used when artwork is missing */
.media-placeholder { background: var(--pt-surface-2); border: 1px dashed #CFD8E3; border-radius: var(--pt-radius); overflow: hidden; }
.media-placeholder__inner {
  display: grid; place-items: center; width: 100%; height: 100%;
  background-image: linear-gradient(135deg, rgba(255,255,255,.7) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.7) 50%, rgba(255,255,255,.7) 75%, transparent 75%);
  background-size: 18px 18px;
}
.media-placeholder__inner span {
  font-family: var(--pt-font-head); font-weight: 800; font-size: 1.5rem;
  color: #9FADBE; letter-spacing: .04em;
}

/* Accordion */
.acc-item { border-bottom: 1px solid var(--pt-line); }
.acc-item:first-child { border-top: 1px solid var(--pt-line); }
.acc-btn {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: 1.25rem 0;
  background: none; border: 0; text-align: left;
  font-family: var(--pt-font-head); font-weight: 650; font-size: 1.03rem; color: var(--pt-ink);
  cursor: pointer;
}
.acc-btn i { flex-shrink: 0; color: var(--pt-cyan-600); font-size: 1.1rem; transition: transform .25s var(--pt-ease); margin-top: .12rem; }
.acc-item.is-open .acc-btn i { transform: rotate(45deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s var(--pt-ease); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding-bottom: 1.3rem; font-size: .95rem; max-width: 74ch; margin: 0; }

/* ==========================================================================
   8. SECTIONS
   ========================================================================== */

/* Client logo strip */
.logo-strip { padding-block: 2.6rem; border-block: 1px solid var(--pt-line); background: #fff; }
.logo-strip__label {
  text-align: center; font-size: .76rem; font-weight: 650; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pt-muted); margin-bottom: 1.6rem;
}
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: 0 0 auto; padding-inline: 2.2rem; display: grid; place-items: center; }
.marquee__item img {
  height: 42px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(0); opacity: 1; transition: filter .25s var(--pt-ease), opacity .25s var(--pt-ease);
}
.marquee__item img:hover { filter: grayscale(1); opacity: .52; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Stats */
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--pt-line); border: 1px solid var(--pt-line); border-radius: var(--pt-radius); overflow: hidden; }
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; padding: 1.85rem 1.4rem; text-align: center; }
.stat__value { font-family: var(--pt-font-head); font-size: clamp(1.9rem, 1.5rem + 1.2vw, 2.5rem); font-weight: 800; color: var(--pt-navy-800); line-height: 1; letter-spacing: -.03em; }
.stat__label { font-size: .85rem; color: var(--pt-muted); margin-top: .5rem; }
.section--dark .stat-grid { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.12); }
.section--dark .stat { background: var(--pt-navy-800); }
.section--dark .stat__value { color: #fff; }
.section--dark .stat__label { color: rgba(255,255,255,.6); }

/* Process */
.process-grid { display: grid; gap: 1px; background: var(--pt-line); border: 1px solid var(--pt-line); border-radius: var(--pt-radius); overflow: hidden; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step { background: #fff; padding: 1.8rem 1.6rem; transition: background-color .2s var(--pt-ease); }
.process-step:hover { background: var(--pt-surface); }
.process-step__no {
  font-family: var(--pt-font-head); font-size: .8rem; font-weight: 800; letter-spacing: .08em;
  color: var(--pt-cyan-600); display: block; margin-bottom: .7rem;
}
.process-step h4 { margin-bottom: .4rem; }
.process-step p { font-size: .9rem; margin: 0; }

/* Product cards */
.product-card {
  position: relative; height: 100%; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--pt-line); border-radius: var(--pt-radius-lg);
  overflow: hidden;
  transition: border-color .2s var(--pt-ease), box-shadow .2s var(--pt-ease), transform .2s var(--pt-ease);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--pt-shadow-lg); border-color: #CFDAE7; }
.product-card__top {
  padding: 1.7rem 1.7rem 1.3rem;
  background: linear-gradient(180deg, #F8FBFD, #fff);
  border-bottom: 1px solid var(--pt-line-soft);
}
.product-card__cat { font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--pt-cyan-600); }
.product-card__name { font-size: 1.42rem; margin: .45rem 0 .35rem; letter-spacing: -.03em; }
.product-card__body { padding: 1.4rem 1.7rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.product-card__body > p { font-size: .935rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .38rem; margin: 1.1rem 0 1.35rem; }
.chip {
  font-size: .755rem; font-weight: 600; color: var(--pt-navy-700);
  background: var(--pt-surface); border: 1px solid var(--pt-line);
  padding: .25rem .58rem; border-radius: 100px;
}
.product-card__foot { margin-top: auto; }

/* Industries */
.industry-grid { display: grid; gap: 1px; background: var(--pt-line); border: 1px solid var(--pt-line); border-radius: var(--pt-radius); overflow: hidden; }
@media (min-width: 576px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .industry-grid { grid-template-columns: repeat(4, 1fr); } }
.industry { background: #fff; padding: 1.5rem 1.35rem; transition: background-color .2s var(--pt-ease); }
.industry:hover { background: var(--pt-surface); }
.industry i { font-size: 1.35rem; color: var(--pt-cyan-600); }
.industry h4 { font-size: .99rem; margin: .7rem 0 .3rem; }
.industry p { font-size: .855rem; margin: 0; color: var(--pt-muted); }

/* Tech chips */
.tech-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.tech-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border: 1px solid var(--pt-line); border-radius: 100px;
  background: #fff; font-size: .885rem; font-weight: 550; color: var(--pt-ink);
  transition: border-color .2s var(--pt-ease), transform .2s var(--pt-ease);
}
.tech-chip:hover { border-color: var(--pt-cyan-400); transform: translateY(-2px); }
.tech-chip i { color: var(--pt-cyan-600); font-size: 1rem; }
.section--dark .tech-chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.section--dark .tech-chip i { color: var(--pt-cyan-400); }

/* Testimonials */
.quote-card {
  height: 100%; background: #fff; border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius); padding: 2rem;
  display: flex; flex-direction: column;
}
.quote-card__mark { font-size: 1.7rem; color: var(--pt-cyan-500); line-height: 1; margin-bottom: .9rem; }
.quote-card blockquote { font-size: 1.01rem; line-height: 1.72; color: var(--pt-ink); margin: 0 0 1.5rem; font-weight: 450; }
.quote-card__who { display: flex; align-items: center; gap: .8rem; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--pt-line-soft); }
.quote-card__who img, .quote-card__who .avatar-fallback {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.avatar-fallback {
  display: grid; place-items: center; background: var(--pt-navy-800); color: #fff;
  font-family: var(--pt-font-head); font-weight: 700; font-size: .95rem;
}
.quote-card__who strong { display: block; font-size: .93rem; color: var(--pt-ink); }
.quote-card__who small { color: var(--pt-muted); font-size: .82rem; }

/* Team */
.team-card { text-align: left; }
.team-card__photo { border-radius: var(--pt-radius); overflow: hidden; background: var(--pt-surface-2); aspect-ratio: 4/5; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--pt-ease); }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card h4 { font-size: 1rem; margin: .9rem 0 .15rem; }
.team-card p { font-size: .85rem; color: var(--pt-muted); margin: 0; }

/* CTA band */
.cta-band {
  background: var(--pt-navy-800);
  border-radius: var(--pt-radius-lg);
  padding: clamp(2rem, 1.2rem + 3vw, 3.4rem);
  color: rgba(255,255,255,.76);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 320px at 92% 10%, rgba(31,162,214,.3), transparent 60%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); }

/* Contact info list */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.35rem; }
.info-list li { display: flex; gap: .95rem; }
.info-list i {
  flex: 0 0 40px; height: 40px; display: grid; place-items: center;
  border-radius: 9px; background: var(--pt-cyan-050); color: var(--pt-cyan-600); font-size: 1.05rem;
}
.info-list h4 { font-size: .93rem; margin-bottom: .12rem; }
.info-list p, .info-list a { font-size: .93rem; margin: 0; color: var(--pt-body); display: block; }
.info-list a:hover { color: var(--pt-cyan-600); }

.map-frame { border: 1px solid var(--pt-line); border-radius: var(--pt-radius); overflow: hidden; line-height: 0; }
.map-frame iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(.25); }

/* ==========================================================================
   9. PORTFOLIO
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 2.2rem; }
.filter-btn {
  padding: .48rem 1rem; border: 1px solid var(--pt-line); background: #fff;
  border-radius: 100px; font-size: .875rem; font-weight: 600; color: var(--pt-body); cursor: pointer;
  transition: all .18s var(--pt-ease);
}
.filter-btn:hover { border-color: var(--pt-navy-600); color: var(--pt-ink); }
.filter-btn.is-active { background: var(--pt-navy-800); border-color: var(--pt-navy-800); color: #fff; }

.work-card {
  position: relative; height: 100%; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--pt-line); border-radius: var(--pt-radius); overflow: hidden;
  transition: box-shadow .22s var(--pt-ease), transform .22s var(--pt-ease), border-color .22s var(--pt-ease);
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--pt-shadow-lg); border-color: #CFDAE7; }
.work-card__thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--pt-surface-2); border-bottom: 1px solid var(--pt-line-soft); }
.work-card__thumb img, .work-card__thumb .media-placeholder { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 0; border: 0; }
.work-card:hover .work-card__thumb img { transform: scale(1.03); }
.work-card__thumb img { transition: transform .45s var(--pt-ease); }
.work-card__type {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(4px);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--pt-navy-800); padding: .25rem .6rem; border-radius: 100px;
}
.work-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.work-card__body h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.work-card__body p { font-size: .89rem; margin-bottom: 1rem; }
.work-card__tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: 1.1rem; }
.work-card__tags span { font-size: .715rem; color: var(--pt-muted); background: var(--pt-surface); border: 1px solid var(--pt-line-soft); padding: .18rem .5rem; border-radius: 4px; }
.work-card__foot { margin-top: auto; display: flex; gap: 1.1rem; align-items: center; }

/* Sticky sidebar used on detail pages */
.side-sticky { position: sticky; top: calc(var(--pt-header-h) + 24px); }
.side-nav { border: 1px solid var(--pt-line); border-radius: var(--pt-radius); overflow: hidden; background: #fff; }
.side-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .82rem 1.05rem; font-size: .9rem; font-weight: 550; color: var(--pt-body);
  border-bottom: 1px solid var(--pt-line-soft);
}
.side-nav a:last-child { border-bottom: 0; }
.side-nav a:hover { background: var(--pt-surface); color: var(--pt-ink); }
.side-nav a.is-active { background: var(--pt-navy-800); color: #fff; font-weight: 620; }
.side-nav a.is-active i { color: #fff; }
.side-nav a i { color: var(--pt-muted); font-size: .78rem; }

.side-card { border: 1px solid var(--pt-line); border-radius: var(--pt-radius); padding: 1.5rem; background: var(--pt-surface); }
.side-card h4 { font-size: 1.02rem; }
.side-card p { font-size: .89rem; }

/* Prose block for long-form service/product copy */
.prose > p { font-size: 1.005rem; line-height: 1.78; margin-bottom: 1.15rem; }
.prose h3 { margin-top: 2.4rem; margin-bottom: .9rem; }
.prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 0; list-style: none; }

/* Module cards on product pages */
.module-card { height: 100%; border: 1px solid var(--pt-line); border-radius: var(--pt-radius); padding: 1.55rem; background: #fff; }
.module-card__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.05rem; }
.module-card__head i {
  flex: 0 0 36px; height: 36px; display: grid; place-items: center; border-radius: 8px;
  background: var(--pt-cyan-050); color: var(--pt-cyan-600); font-size: 1.05rem;
}
.module-card__head h4 { margin: 0; font-size: 1.02rem; }
.module-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .48rem; }
.module-card ul li { position: relative; padding-left: 1.15rem; font-size: .895rem; line-height: 1.58; }
.module-card ul li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--pt-cyan-500);
}

/* Problem / outcome pair */
.contrast-pair { display: grid; gap: 1px; background: var(--pt-line); border: 1px solid var(--pt-line); border-radius: var(--pt-radius); overflow: hidden; }
@media (min-width: 768px) { .contrast-pair { grid-template-columns: 1fr 1fr; } }
.contrast-pair > div { background: #fff; padding: 1.8rem; }
.contrast-pair > div:last-child { background: var(--pt-navy-800); color: rgba(255,255,255,.8); }
.contrast-pair > div:last-child h4 { color: #fff; }
.contrast-pair h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--pt-muted); margin-bottom: .8rem; }
.contrast-pair p { font-size: 1.02rem; line-height: 1.65; color: inherit; margin: 0; }
.contrast-pair > div:first-child p { color: var(--pt-ink); }

/* ==========================================================================
   10. PRICING
   ========================================================================== */
.plan {
  height: 100%; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--pt-line); border-radius: var(--pt-radius-lg); padding: 2rem;
  position: relative;
  transition: border-color .2s var(--pt-ease), box-shadow .2s var(--pt-ease);
}
.plan:hover { border-color: #CFDAE7; box-shadow: var(--pt-shadow-md); }
.plan--popular { border-color: var(--pt-navy-800); box-shadow: var(--pt-shadow-md); }
.plan__flag {
  position: absolute; top: -11px; left: 2rem;
  background: var(--pt-navy-800); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 100px;
}
.plan__name { font-size: 1.15rem; margin-bottom: .3rem; }
.plan__blurb { font-size: .88rem; color: var(--pt-muted); margin-bottom: 1.3rem; }
.plan__price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .25rem; }
.plan__price b { font-family: var(--pt-font-head); font-size: 2.5rem; font-weight: 800; color: var(--pt-ink); letter-spacing: -.035em; line-height: 1; }
.plan__price span { font-size: .9rem; color: var(--pt-muted); }
.plan__year { font-size: .82rem; color: var(--pt-muted); margin-bottom: 1.5rem; }
.plan__specs { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .55rem; }
.plan__specs li { display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; padding-bottom: .55rem; border-bottom: 1px solid var(--pt-line-soft); }
.plan__specs li:last-child { border-bottom: 0; }
.plan__specs span:first-child { color: var(--pt-muted); }
.plan__specs span:last-child { color: var(--pt-ink); font-weight: 600; }
.plan__foot { margin-top: auto; }

.price-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .93rem; }
.price-table th, .price-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--pt-line-soft); vertical-align: middle; }
.price-table thead th {
  background: var(--pt-surface); color: var(--pt-muted);
  font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  border-bottom: 1px solid var(--pt-line); white-space: nowrap;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: #FBFCFE; }
.price-table td:first-child { font-weight: 600; color: var(--pt-ink); }
.table-wrap { border: 1px solid var(--pt-line); border-radius: var(--pt-radius); overflow: hidden; background: #fff; }
.table-scroll { overflow-x: auto; }

/* ==========================================================================
   11. FORMS
   ========================================================================== */
.form-label {
  font-size: .845rem; font-weight: 620; color: var(--pt-ink);
  margin-bottom: .38rem; display: block;
}
.form-label .req { color: var(--pt-danger); font-weight: 400; }

.form-control, .form-select {
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius-sm);
  padding: .68rem .85rem;
  font-size: .94rem;
  color: var(--pt-ink);
  background-color: #fff;
  transition: border-color .18s var(--pt-ease), box-shadow .18s var(--pt-ease);
}
.form-control::placeholder { color: #A6B0BE; }
.form-control:focus, .form-select:focus {
  border-color: var(--pt-cyan-500);
  box-shadow: 0 0 0 3px rgba(31,162,214,.13);
  outline: none;
}
textarea.form-control { min-height: 132px; resize: vertical; }

.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .82rem; color: var(--pt-muted); }

.form-alert {
  display: none;
  padding: .85rem 1rem;
  border-radius: var(--pt-radius-sm);
  font-size: .9rem;
  margin-bottom: 1.1rem;
  border: 1px solid transparent;
}
.form-alert.is-visible { display: block; }
.form-alert--ok   { background: var(--pt-success-bg); border-color: #BFE3D5; color: var(--pt-success); }
.form-alert--err  { background: var(--pt-danger-bg);  border-color: #F1C9C4; color: var(--pt-danger); }

.form-card { border: 1px solid var(--pt-line); border-radius: var(--pt-radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); background: #fff; }

.dropzone {
  border: 1px dashed #C3CEDC;
  border-radius: var(--pt-radius);
  background: var(--pt-surface);
  padding: 2rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s var(--pt-ease), background-color .18s var(--pt-ease);
}
.dropzone:hover, .dropzone.is-drag { border-color: var(--pt-cyan-500); background: var(--pt-cyan-050); }
.dropzone i { font-size: 1.7rem; color: var(--pt-cyan-600); }
.dropzone p { font-size: .9rem; margin: .55rem 0 0; }
.dropzone small { color: var(--pt-muted); font-size: .8rem; }
.file-chosen { margin-top: .7rem; font-size: .875rem; color: var(--pt-success); font-weight: 600; display: none; }
.file-chosen.is-visible { display: block; }

.btn-loading { position: relative; pointer-events: none; opacity: .75; }
.btn-loading::after {
  content: ""; width: 15px; height: 15px; margin-left: .1rem;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Job / position cards */
.job-card {
  height: 100%; border: 1px solid var(--pt-line); border-radius: var(--pt-radius);
  padding: 1.6rem; background: #fff;
  transition: border-color .2s var(--pt-ease), box-shadow .2s var(--pt-ease);
}
.job-card:hover { border-color: #CFDAE7; box-shadow: var(--pt-shadow-sm); }
.job-card__meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .9rem; }
.job-card__meta span {
  font-size: .73rem; font-weight: 600; color: var(--pt-navy-700);
  background: var(--pt-cyan-050); padding: .2rem .55rem; border-radius: 4px;
}

/* Verify result */
.verify-result { display: none; }
.verify-result.is-visible { display: block; }
.verify-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 100px; font-weight: 650; font-size: .92rem;
}
.verify-badge--ok  { background: var(--pt-success-bg); color: var(--pt-success); }
.verify-badge--bad { background: var(--pt-danger-bg);  color: var(--pt-danger); }
.detail-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.detail-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--pt-line-soft); font-size: .92rem; }
.detail-list li:last-child { border-bottom: 0; }
.detail-list span:first-child { color: var(--pt-muted); }
.detail-list span:last-child { color: var(--pt-ink); font-weight: 600; text-align: right; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.site-footer { background: var(--pt-navy-900); color: rgba(255,255,255,.62); font-size: .915rem; }
.site-footer a { color: rgba(255,255,255,.62); }
.site-footer a:hover { color: #fff; }

.footer-cta { border-bottom: 1px solid rgba(255,255,255,.09); padding-block: 3rem; }
.footer-cta h3 { color: #fff; font-size: 1.42rem; margin-bottom: .35rem; }
.footer-cta p { color: rgba(255,255,255,.6); margin: 0; font-size: .95rem; }

.footer-main { padding-block: 3.6rem 2.6rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.footer-brand img { width: 34px; height: 34px; object-fit: contain; }
.footer-brand span { font-family: var(--pt-font-head); font-weight: 800; font-size: 1.08rem; color: #fff; letter-spacing: -.02em; }

.footer-col h4 {
  color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .11em;
  text-transform: uppercase; margin-bottom: 1.15rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .62rem; }
.footer-col ul a { font-size: .9rem; }

.footer-contact { display: grid; gap: .55rem; font-size: .9rem; }
.footer-contact div { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact i { color: var(--pt-cyan-400); margin-top: .22rem; font-size: .9rem; }

.social-row { display: flex; gap: .5rem; margin-top: 1.5rem; }
.social-row a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.14); border-radius: 8px;
  color: rgba(255,255,255,.72); font-size: .95rem;
  transition: all .18s var(--pt-ease);
}
.social-row a:hover { background: var(--pt-cyan-500); border-color: var(--pt-cyan-500); color: #fff; transform: translateY(-2px); }

.footer-news input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}
.footer-news input::placeholder { color: rgba(255,255,255,.4); }
.footer-news input:focus { background: rgba(255,255,255,.1); border-color: var(--pt-cyan-500); box-shadow: none; color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 1.5rem;
  font-size: .845rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* Floating helpers */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 1020;
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--pt-navy-800); color: #fff; border-radius: 9px;
  box-shadow: var(--pt-shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s var(--pt-ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--pt-cyan-500); color: #fff; }

.wa-float {
  position: fixed; right: 20px; bottom: 74px; z-index: 1020;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: #25D366; color: #fff; border-radius: 50%; font-size: 1.4rem;
  box-shadow: var(--pt-shadow-md);
  transition: transform .2s var(--pt-ease);
}
.wa-float:hover { color: #fff; transform: scale(1.06); }

/* ==========================================================================
   13. UTILITIES, MOTION & PRINT
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--pt-ease), transform .55s var(--pt-ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
.reveal[data-delay="5"] { transition-delay: .35s; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--pt-navy-800); color: #fff; padding: .75rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.is-hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .to-top, .wa-float, .topbar, .filter-bar { display: none !important; }
  body { color: #000; }
  .section { padding-block: 1.5rem; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}
