/*
Theme Name: PrimeTax Theme
Theme URI: https://github.com/dexterrTech/primetaxuae-frontend
Author: Dexterr Tech
Description: Starter theme for matching PrimeTax Next.js UI. Activate this in WP Admin → Appearance → Themes.
Version: 0.3.27
Text Domain: primetax-theme
*/

:root {
  --background: #ffffff;
  --foreground: #000000;
  --brand-navy: #1b365d;
  --brand-accent: #008bcf;
  --brand-muted: #f8fafc;
  --brand-border: #e5e7eb;
  --font-sans: "Dubai", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Dubai", "Segoe UI", system-ui, sans-serif;
  --pt-section-y: 3.5rem;
  --pt-section-y-md: 5rem;
  --text-base: 1rem;
  --text-lead: 1.125rem;
  --lh-tight: 1.2;
  --lh-body: 1.6;
  --page-title-size: clamp(2rem, 3.8vw, 2.6rem);
  --page-subtitle-size: clamp(1.375rem, 2.2vw, 1.75rem);
  --pt-layout-max: 90rem;
  --pt-layout-pad: 1rem;
  --pt-layout-pad-md: 1.375rem;
}

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

body.pt-body {
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: clip;
  background: var(--background);
  color: #171717;
  font-family: var(--font-sans);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

/* Shared horizontal gutters — mobile uses --pt-layout-pad; 768px+ uses --pt-layout-pad-md */
.pt-topbar__inner,
.pt-header__inner,
.pt-hero__inner,
.pt-footer__inner,
.pt-home-wrap {
  box-sizing: border-box;
}

.pt-skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: #fff;
  color: var(--brand-navy);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.12);
}

.pt-skip-link:focus {
  left: 1rem;
  top: 1rem;
  text-decoration: none;
}

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

body.pt-body--nav-open {
  overflow: hidden;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Top bar — web/src/components/layout/TopBar.tsx */
.pt-icon {
  flex-shrink: 0;
}

.pt-icon--sm {
  opacity: 0.9;
}

.pt-topbar {
  background: var(--brand-navy);
  color: #fff;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .pt-topbar {
    font-size: 0.875rem;
  }
}

.pt-topbar__inner {
  max-width: min(var(--pt-layout-max), 100%);
  margin: 0 auto;
  padding: 0.5rem var(--pt-layout-pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

@media (min-width: 768px) {
  .pt-topbar__inner {
    padding: 1rem var(--pt-layout-pad-md);
  }
}

.pt-topbar__tagline {
  display: none;
  margin: 0;
  font-weight: 500;
  color: rgb(255 255 255 / 0.9);
}

@media (min-width: 640px) {
  .pt-topbar__tagline {
    display: block;
  }
}

.pt-topbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1rem;
}

.pt-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: inherit;
  text-decoration: none;
  border-radius: 0.375rem;
  padding: 0.25rem 0.375rem;
  transition: background 0.15s ease;
}

.pt-topbar__link:hover {
  background: rgb(255 255 255 / 0.1);
  text-decoration: none;
  color: #fff;
}

.pt-topbar__sep {
  color: rgb(255 255 255 / 0.4);
  user-select: none;
}

.pt-topbar__sep--md-hide {
  display: inline;
}

@media (min-width: 768px) {
  .pt-topbar__sep--md-hide {
    display: none;
  }
}

.pt-topbar__sep--lg {
  display: none;
}

@media (min-width: 768px) {
  .pt-topbar__sep--lg {
    display: inline;
  }
}

.pt-topbar__link--secondary {
  display: none;
  color: rgb(255 255 255 / 0.85);
}

@media (min-width: 1024px) {
  .pt-topbar__link--secondary {
    display: inline-flex;
  }
}

.pt-locale {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 0.375rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.05);
  padding: 0.25rem 0.5rem;
  color: rgb(255 255 255 / 0.95);
}

.pt-locale__select {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

@media (min-width: 768px) {
  .pt-locale__select {
    font-size: 0.875rem;
  }
}

.pt-topbar__cta {
  display: none;
  align-items: center;
  border-radius: 9999px;
  background: var(--brand-accent);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: background 0.15s ease;
}

.pt-topbar__cta:hover {
  background: rgb(0 139 207 / 0.9);
  text-decoration: none;
  color: #fff;
}

@media (min-width: 1024px) {
  .pt-topbar__cta {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .pt-topbar__cta {
    font-size: 0.875rem;
  }
}

/* Main header + mega nav — web/src/components/layout/MainNav.tsx */
.pt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgb(229 231 235 / 0.9);
  background: rgb(255 255 255 / 0.95);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  backdrop-filter: blur(12px);
}

@supports (backdrop-filter: blur(4px)) {
  .pt-header {
    background: rgb(255 255 255 / 0.9);
  }
}

.pt-header__inner {
  max-width: min(var(--pt-layout-max), 100%);
  margin: 0 auto;
  padding: 0.5rem var(--pt-layout-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .pt-header__inner {
    padding: 0.5rem var(--pt-layout-pad-md);
  }
}

.pt-header__brand {
  flex-shrink: 0;
}

.pt-header__logo .pt-brand-logo__link,
.pt-header__logo .custom-logo-link,
.pt-mobile-nav__logo .pt-brand-logo__link,
.pt-mobile-nav__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.pt-brand-logo__img--header,
.pt-header__logo .custom-logo-link img,
.pt-mobile-nav__logo .custom-logo-link img {
  height: 2.5rem;
  width: auto;
  max-width: min(100%, 220px);
  object-fit: contain;
}

@media (min-width: 640px) {
  .pt-brand-logo__img--header,
  .pt-header__logo .custom-logo-link img,
  .pt-mobile-nav__logo .custom-logo-link img {
    height: 3.5rem;
  }
}

.pt-header__title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--brand-navy);
  text-decoration: none;
}

.pt-header__title:hover {
  color: var(--brand-accent);
  text-decoration: none;
}

.pt-desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .pt-desktop-nav {
    display: flex;
  }
}

.pt-navlink {
  border-radius: 0.375rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.pt-navlink:hover {
  background: #f5f5f5;
  color: var(--brand-navy);
  text-decoration: none;
}

.pt-navlink.is-active {
  color: var(--brand-accent);
}

/* Mega menu */
.pt-mega {
  position: relative;
}

.pt-mega__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  border-radius: 0.375rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  color: #171717;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.pt-mega__trigger:hover,
.pt-mega:hover .pt-mega__trigger,
.pt-mega__trigger.is-active,
.pt-mega.is-mega-active .pt-mega__trigger {
  background: #f5f5f5;
  color: var(--brand-navy);
}

.pt-chevron {
  flex-shrink: 0;
  opacity: 0.7;
}

.pt-mega__panel {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 50;
  padding-top: 0.5rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease,
    transform 0.15s ease;
}

.pt-mega:hover .pt-mega__panel,
.pt-mega:focus-within .pt-mega__panel {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pt-mega__grid {
  display: grid;
  min-width: 40rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  padding: 1.5rem;
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.08),
    0 0 0 1px rgb(0 0 0 / 0.03);
}

.pt-mega__all {
  grid-column: 1 / -1;
  margin: -1.5rem -1.5rem 0.25rem;
  padding: 0.65rem 1.5rem;
  border-bottom: 1px solid var(--brand-border);
  background: linear-gradient(90deg, rgb(0 139 207 / 0.08), rgb(27 54 93 / 0.06));
  border-radius: 0.75rem 0.75rem 0 0;
}

.pt-mega__all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pt-mega__all-link:hover {
  color: var(--brand-accent);
}

.pt-mega__heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

.pt-mega__heading--spaced {
  margin-top: 1rem;
}

.pt-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-mega__list li {
  margin-top: 0.5rem;
}

.pt-mega__list li:first-child {
  margin-top: 0;
}

.pt-mega__list a {
  display: block;
  border-radius: 0.375rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
  color: #404040;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.pt-mega__list a:hover {
  background: #fafafa;
  color: var(--brand-navy);
  text-decoration: none;
}

.pt-header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .pt-header__cta {
    display: block;
    flex-shrink: 0;
  }
}

.pt-header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  background: var(--brand-navy);
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: background 0.15s ease;
}

.pt-header__cta-btn:hover {
  background: rgb(27 54 93 / 0.9);
  text-decoration: none;
  color: #fff;
}

.pt-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid var(--brand-border);
  padding: 0.5rem;
  color: var(--brand-navy);
  background: #fff;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .pt-nav-toggle {
    display: none;
  }
}

/* Mobile drawer */
.pt-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  height: 100dvh;
  flex-direction: column;
  background: #fff;
}

.pt-mobile-nav.pt-mobile-nav--open {
  display: flex;
}

.pt-mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--brand-border);
  padding: 0.75rem 1rem;
}

.pt-mobile-nav__logo .custom-logo-link img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .pt-mobile-nav__logo .custom-logo-link img {
    height: 2.5rem;
  }
}

.pt-mobile-nav__title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--brand-navy);
  text-decoration: none;
}

.pt-mobile-nav__close {
  border: 0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  color: #525252;
  background: transparent;
  cursor: pointer;
}

.pt-mobile-nav__close:hover {
  background: #f5f5f5;
}

.pt-mobile-nav__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.pt-mobile-nav__link {
  display: block;
  border-radius: 0.5rem;
  padding: 0.75rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #171717;
  text-decoration: none;
}

.pt-mobile-nav__link:hover {
  background: #fafafa;
  text-decoration: none;
}

.pt-mobile-nav__section {
  margin: 0;
  padding: 0.75rem 0.75rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

.pt-mobile-nav__sublink {
  display: block;
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: #262626;
  text-decoration: none;
}

.pt-mobile-nav__sublink:hover {
  background: #fafafa;
  text-decoration: none;
}

.pt-mobile-nav__bottom {
  border-top: 1px solid var(--brand-border);
  padding: 1rem;
}

.pt-mobile-nav__cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  background: var(--brand-navy);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.pt-mobile-nav__cta:hover {
  background: rgb(27 54 93 / 0.92);
  text-decoration: none;
  color: #fff;
}

@media (min-width: 1024px) {
  .pt-mobile-nav {
    display: none !important;
  }
}

/* Hero (from web/src/components/home/Hero.tsx + messages/en.json Home) */
.pt-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--brand-navy);
  background-image: linear-gradient(
      105deg,
      rgb(27 54 93 / 0.93) 0%,
      rgb(27 54 93 / 0.82) 36%,
      rgb(27 54 93 / 0.52) 55%,
      rgb(27 54 93 / 0.22) 100%
    ),
    url("https://images.pexels.com/photos/3183197/pexels-photo-3183197.jpeg?auto=compress&cs=tinysrgb&w=2600&h=1400&dpr=1");
  background-size: cover;
  background-position: 50% 35%;
}

.pt-hero__inner {
  position: relative;
  max-width: min(var(--pt-layout-max), 100%);
  margin: 0 auto;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem var(--pt-layout-pad) 3.25rem;
}

@media (min-width: 768px) {
  .pt-hero__inner {
    padding: 5.5rem var(--pt-layout-pad-md) 3.5rem;
  }
}

@media (min-width: 1024px) {
  .pt-hero__inner {
    padding: 6.5rem var(--pt-layout-pad-md) 3.5rem;
  }
}

.pt-hero__content {
  width: 100%;
}

@media (min-width: 1024px) {
  .pt-hero__content {
    max-width: 56%;
  }
}

.pt-hero__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.pt-hero__title {
  margin: 0.875rem 0 0;
  max-width: 42rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
}

.pt-hero__subtitle {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: var(--lh-body);
  color: rgb(255 255 255 / 0.85);
}

@media (min-width: 640px) {
  .pt-hero__subtitle {
    font-size: 1.125rem;
  }
}

.pt-hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (min-width: 640px) {
  .pt-hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  min-width: 11rem;
}

@media (min-width: 640px) {
  .pt-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    gap: 0.5rem;
    min-width: auto;
  }
}

.pt-btn--primary {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
  box-shadow: 0 10px 25px rgb(0 139 207 / 0.25);
}

.pt-btn--primary:hover {
  background: rgb(0 139 207 / 0.9);
  border-color: rgb(0 139 207 / 0.9);
  text-decoration: none;
  color: #fff;
}

.pt-btn--ghost {
  background: rgb(255 255 255 / 0.05);
  color: #fff;
  border-color: rgb(255 255 255 / 0.4);
  backdrop-filter: blur(4px);
}

.pt-btn--ghost:hover {
  background: rgb(255 255 255 / 0.1);
  text-decoration: none;
  color: #fff;
}

.pt-hero__bullets {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.pt-hero__bullets li {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.95);
}

@media (min-width: 640px) {
  .pt-hero__bullets li {
    font-size: 1rem;
  }
}

.pt-hero__bullets li:first-child {
  margin-top: 0;
}

.pt-hero__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  color: var(--brand-accent);
}

/* Footer (web/src/components/layout/SiteFooter.tsx) */
.pt-footer {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  background: linear-gradient(
    135deg,
    var(--brand-navy) 40%,
    #152d4d 70%,
    #0f243f 100%
  );
  color: #fff;
}

.pt-footer__inner {
  max-width: min(var(--pt-layout-max), 100%);
  margin: 0 auto;
  padding: 3.5rem var(--pt-layout-pad) 0;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.85);
}

@media (min-width: 768px) {
  .pt-footer__inner {
    padding-left: var(--pt-layout-pad-md);
    padding-right: var(--pt-layout-pad-md);
  }
}

.pt-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .pt-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .pt-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}

.pt-footer__col--brand .pt-footer__logo-wrap {
  margin-bottom: 1rem;
  background: transparent;
}

.pt-footer__logo-link {
  display: inline-block;
  line-height: 0;
  background: transparent;
}

.pt-footer__logo-img {
  display: block;
  height: 5.5rem;
  width: auto;
  max-width: min(100%, 400px);
  object-fit: contain;
  background: transparent;
  filter: none;
}

@media (min-width: 640px) {
  .pt-footer__logo-img {
    height: 6.75rem;
    max-width: min(100%, 440px);
  }
}

/* Fallback when footer logo unset — header Site Identity logo inverted for navy */
.pt-footer__logo-wrap--site-logo .custom-logo-link {
  display: inline-block;
}

.pt-footer__logo-wrap--site-logo .custom-logo-link img {
  height: 3rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

@media (min-width: 640px) {
  .pt-footer__logo-wrap--site-logo .custom-logo-link img {
    height: 3.5rem;
  }
}

.pt-footer__name-logo {
  display: inline-block;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
}

.pt-footer__name-logo:hover {
  color: rgb(255 255 255 / 0.9);
  text-decoration: none;
}

.pt-footer__company-title {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #fff;
}

.pt-footer__blurb {
  margin: 0;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.8);
}

.pt-footer__heading {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

.pt-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-footer__links li {
  margin-top: 0.5rem;
}

.pt-footer__links li:first-child {
  margin-top: 0;
}

.pt-footer__links a {
  color: rgb(255 255 255 / 0.85);
  text-decoration: none;
  transition: color 0.15s ease;
}

.pt-footer__links a:hover {
  color: #fff;
  text-decoration: none;
}

.pt-footer__subheading {
  margin: 2rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

.pt-footer__subheading--spaced {
  margin-top: 1.5rem;
}

.pt-footer__hours {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.85);
}

.pt-footer__address {
  margin: 0;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.85);
}

.pt-footer__address p {
  margin: 0 0 0.75rem;
}

.pt-footer__address p:last-child {
  margin-bottom: 0;
}

.pt-footer__accent-link {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

.pt-footer__accent-link:hover {
  color: #fff;
  text-decoration: none;
}

.pt-footer__social {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.75rem;
}

.pt-footer__social-btn {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.05);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease;
}

.pt-footer__social-btn:hover {
  background: rgb(255 255 255 / 0.15);
  text-decoration: none;
  color: #fff;
}

.pt-footer__social-icon--stroke {
  stroke: currentColor;
  fill: none;
}

.pt-footer__social-icon--stroke circle[fill] {
  fill: currentColor;
  stroke: none;
}

.pt-footer__social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.pt-footer__legal {
  margin-top: 3rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.6);
}

/* Homepage below hero — web/src/components/home/HomeSections.tsx */
.pt-home-below {
  background: #fff;
}

.pt-home-wrap {
  width: 100%;
  max-width: min(var(--pt-layout-max), 100%);
  margin: 0 auto;
  padding-left: var(--pt-layout-pad);
  padding-right: var(--pt-layout-pad);
}

@media (min-width: 768px) {
  .pt-home-wrap {
    padding-left: var(--pt-layout-pad-md);
    padding-right: var(--pt-layout-pad-md);
  }
}

.pt-home-band {
  border-bottom: 1px solid var(--brand-border);
}

.pt-home-band--muted {
  border-top: 1px solid var(--brand-border);
  background: rgb(248 250 252 / 0.7);
  padding-bottom: 4rem;
}

.pt-home-band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 3.5rem;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .pt-home-band__head {
    padding-top: 5rem;
  }
}

.pt-home-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.pt-home-eyebrow--center {
  text-align: center;
}

.pt-home-h2 {
  margin: 0.75rem 0 0;
  max-width: 48rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--brand-navy);
}

@media (min-width: 768px) {
  .pt-home-h2 {
    font-size: 1.875rem;
  }
}

.pt-home-h2--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pt-home-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgb(27 54 93 / 0.2);
  background: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}

.pt-home-btn-outline:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  text-decoration: none;
}

.pt-home-arrow {
  flex-shrink: 0;
}

.pt-home-spotlight-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .pt-home-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pt-home-spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 5rem;
  }
}

.pt-home-card {
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-home-card--spotlight:hover {
  transform: translateY(-2px);
  border-color: rgb(0 139 207 / 0.35);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
}

.pt-home-ico {
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgb(27 54 93 / 0.14), rgb(27 54 93 / 0.06));
  color: var(--brand-navy);
  box-shadow: inset 0 0 0 1px rgb(27 54 93 / 0.08);
}

.pt-home-ico--accent {
  background: rgb(0 139 207 / 0.22);
  color: var(--brand-accent);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
}

.pt-home-ico--lg {
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.pt-home-ico__svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.pt-home-ico--lg .pt-home-ico__svg {
  width: 2.1rem;
  height: 2.1rem;
}

.pt-home-card__title {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.375;
  color: var(--brand-navy);
}

.pt-home-card__excerpt {
  margin: 0.75rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #404040;
}

.pt-home-card__link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-accent);
  text-decoration: none;
  transition: gap 0.15s ease;
}

.pt-home-card--spotlight:hover .pt-home-card__link {
  gap: 0.5rem;
}

.pt-home-band--journey {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0f3f6a 50%, #0c3157 100%);
  color: #fff;
}

.pt-home-band--journey .pt-home-eyebrow {
  color: var(--brand-accent);
}

.pt-home-band--journey .pt-home-h2 {
  color: #fff;
}

.pt-home-band--journey .pt-home-wrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .pt-home-band--journey .pt-home-wrap {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.pt-home-lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.8);
}

.pt-home-steps-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pt-home-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pt-home-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pt-home-step-card {
  border-radius: 1rem;
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(255 255 255 / 0.08);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.pt-home-step-card:hover {
  transform: translateY(-4px);
  border-color: rgb(0 139 207 / 0.6);
  background: rgb(255 255 255 / 0.12);
}

.pt-home-step-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pt-home-step-num {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgb(0 139 207 / 0.2);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-accent);
}

.pt-home-step-card__title {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.375;
  color: #fff;
}

.pt-home-step-card__excerpt {
  margin: 0.75rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.8);
}

.pt-home-band--white {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #171717;
}

.pt-home-band--white .pt-home-wrap {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pt-home-band--white::before,
.pt-home-band--white::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.pt-home-band--white::before {
  width: clamp(180px, 30vw, 360px);
  height: clamp(180px, 30vw, 360px);
  right: -110px;
  top: 12%;
  background: radial-gradient(circle, rgb(0 139 207 / 0.12) 0%, rgb(0 139 207 / 0) 70%);
}

.pt-home-band--white::after {
  width: clamp(150px, 26vw, 320px);
  height: clamp(150px, 26vw, 320px);
  left: -90px;
  bottom: 5%;
  background: radial-gradient(circle, rgb(27 54 93 / 0.09) 0%, rgb(27 54 93 / 0) 70%);
}

@media (min-width: 768px) {
  .pt-home-band--white .pt-home-wrap {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.pt-home-band--why-tight .pt-home-wrap {
  padding-top: 2.25rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .pt-home-band--why-tight .pt-home-wrap {
    padding-top: 2.75rem;
    padding-bottom: 3.5rem;
  }
}

.pt-home-band--why-tight .pt-home-why-grid {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .pt-home-band--why-tight .pt-home-why-grid {
    margin-top: 1.75rem;
  }
}

/* Merged: “What you can expect from us” + video tour */
.pt-home-why-video__intro {
  text-align: center;
}

.pt-home-why-video__tagline {
  margin: 0.65rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-accent);
}

.pt-home-lead--why-video {
  margin: 0.85rem auto 0;
  max-width: 40rem;
  text-align: center;
}

.pt-home-why-video__split {
  display: grid;
  gap: 2rem;
  margin-top: 2.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .pt-home-why-video__split:not(.pt-home-why-video__split--video-only) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
  }
}

@media (min-width: 1200px) {
  .pt-home-why-video__split:not(.pt-home-why-video__split--video-only) {
    gap: 2.5rem;
  }
}

.pt-home-why-video__split--video-only {
  margin-top: 1.75rem;
}

.pt-home-why-video__split--video-only .pt-home-why-video__embed {
  max-width: 52rem;
  margin-inline: auto;
  width: 100%;
}

.pt-home-why-video__points {
  min-width: 0;
}

@media (min-width: 1024px) {
  .pt-home-why-video__points {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.pt-home-why-video__points .pt-home-why-grid {
  margin-top: 0;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pt-home-why-video__points .pt-home-why-grid {
    gap: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .pt-home-why-video__points .pt-home-why-grid {
    flex: 1;
    height: 100%;
    grid-auto-rows: 1fr;
    align-content: stretch;
  }
}

.pt-home-why-video__points .pt-home-why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  box-shadow:
    0 4px 6px rgb(27 54 93 / 0.04),
    0 14px 32px rgb(27 54 93 / 0.09);
}

.pt-home-why-video__points .pt-home-why-card__title {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.4;
}

.pt-home-why-video__points .pt-home-why-card__body {
  margin: 0.6rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

.pt-home-why-video__embed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .pt-home-why-video__split:not(.pt-home-why-video__split--video-only) .pt-home-why-video__embed {
    position: sticky;
    top: 1.25rem;
    align-self: stretch;
  }
}

.pt-home-why-video__media-shell {
  border-radius: 1rem;
  padding: 0.65rem;
  background: linear-gradient(
    160deg,
    rgb(248 250 252) 0%,
    #fff 45%,
    rgb(232 244 252 / 0.55) 100%
  );
  border: 1px solid rgb(27 54 93 / 0.1);
  box-shadow:
    0 4px 6px rgb(27 54 93 / 0.04),
    0 18px 40px rgb(27 54 93 / 0.1);
}

@media (min-width: 768px) {
  .pt-home-why-video__media-shell {
    padding: 0.85rem;
    border-radius: 1.1rem;
  }
}

.pt-home-why-video__embed .pt-video-embed {
  margin: 0;
  max-width: none;
}

.pt-home-why-video__media-shell:has(.pt-video-embed__frame--short) {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem;
}

.pt-home-why-video__stack {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pt-home-why-video__stack--single .pt-home-why-video__media-shell {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

/* Single video beside the 2×2 cards */
.pt-home-why-video__stack--single .pt-video-embed__frame--short {
  width: min(200px, 72vw);
  max-width: 200px;
}

@media (min-width: 768px) {
  .pt-home-why-video__stack--single .pt-video-embed__frame--short {
    width: min(220px, 38vw);
    max-width: 220px;
  }
}

@media (min-width: 1024px) {
  .pt-home-why-video__stack--single .pt-video-embed__frame--short {
    width: 220px;
    max-width: 220px;
  }
}

.pt-home-why-video__stack--single .pt-video-embed__frame:not(.pt-video-embed__frame--short) {
  width: 100%;
  max-width: 100%;
}

.pt-home-band--why-video.pt-home-band--why-tight .pt-home-wrap {
  padding-bottom: 3.75rem;
}

@media (min-width: 768px) {
  .pt-home-band--why-video.pt-home-band--why-tight .pt-home-wrap {
    padding-bottom: 4.25rem;
  }
}

/* Optional second homepage video (Customizer → Second video URL) */
.pt-home-band--video-extra {
  padding-top: 0.5rem;
  padding-bottom: 3.25rem;
}

@media (min-width: 768px) {
  .pt-home-band--video-extra {
    padding-top: 0.75rem;
    padding-bottom: 4.25rem;
  }
}

.pt-home-video-extra__inner {
  max-width: 52rem;
  margin-inline: auto;
}

.pt-home-video-extra__title {
  margin-bottom: 0.25rem;
}

.pt-home-video-extra__shell {
  margin-top: 1.35rem;
}

@media (min-width: 768px) {
  .pt-home-video-extra__shell {
    margin-top: 1.6rem;
  }
}

.pt-home-why-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pt-home-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pt-home-why-card {
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: #fafafa;
  padding: 1.5rem;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.pt-home-why-card:hover {
  border-color: rgb(0 139 207 / 0.45);
  background: #fff;
}

.pt-home-why-card__title {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-home-why-card__body {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #404040;
}

.pt-home-band--glance {
  background: linear-gradient(
    90deg,
    rgb(8 44 82 / 0.95) 0%,
    rgb(11 61 104 / 0.95) 50%,
    rgb(10 47 85 / 0.95) 100%
  );
  color: #fff;
}

.pt-home-band--glance .pt-home-wrap {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .pt-home-band--glance .pt-home-wrap {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.pt-home-glance {
  display: grid;
  gap: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.05);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .pt-home-glance {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .pt-home-glance {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.pt-home-glance__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 640px) {
  .pt-home-glance__title {
    font-size: 2.25rem;
  }
}

.pt-home-glance__desc {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.85);
}

@media (min-width: 640px) {
  .pt-home-glance__desc {
    font-size: 1rem;
  }
}

.pt-home-btn-accent-xl {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: var(--brand-accent);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease;
}

.pt-home-btn-accent-xl:hover {
  background: rgb(0 139 207 / 0.9);
  text-decoration: none;
  color: #fff;
}

.pt-home-glance__stats {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pt-home-glance__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pt-home-stat {
  border-radius: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.08);
  padding: 1rem;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.pt-home-stat:hover {
  border-color: rgb(0 139 207 / 0.45);
  background: rgb(255 255 255 / 0.12);
}

.pt-home-stat__n {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 600;
  color: #fff;
}

.pt-home-stat__l {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
}

.pt-home-band--explorer {
  background: #fff;
}

.pt-home-band--explorer .pt-home-wrap {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .pt-home-band--explorer .pt-home-wrap {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.pt-home-explorer__grid {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pt-home-explorer__grid {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

.pt-explorer__list-wrap {
  max-height: 35rem;
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  padding: 0.75rem;
}

.pt-explorer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-explorer__list li + li {
  margin-top: 0.5rem;
}

.pt-explorer__tab {
  width: 100%;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  background: #fafafa;
  color: #262626;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-explorer__tab:hover {
  background: #f5f5f5;
}

.pt-explorer__tab.is-active {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.12);
}

.pt-explorer__tab-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.pt-explorer__tab.is-active .pt-explorer__tab-label {
  opacity: 0.9;
}

.pt-explorer__tab-title {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.375;
}

.pt-explorer__panels {
  position: relative;
}

.pt-explorer__panel {
  border-radius: 1.5rem;
  border: 1px solid var(--brand-border);
  background: linear-gradient(135deg, #fff 0%, rgb(248 250 252 / 0.45) 100%);
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

@media (min-width: 768px) {
  .pt-explorer__panel {
    padding: 2.25rem;
  }
}

.pt-explorer__panel-title {
  margin: 0;
  text-wrap: balance;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--brand-navy);
}

@media (min-width: 768px) {
  .pt-explorer__panel-title {
    font-size: 1.875rem;
  }
}

.pt-explorer__body {
  margin-top: 1.5rem;
}

.pt-explorer__body p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.625;
  color: #404040;
}

.pt-explorer__body p:last-child {
  margin-bottom: 0;
}

.pt-explorer__tagline {
  margin: 2rem 0 0;
  border-radius: 0.75rem;
  border-left: 4px solid var(--brand-accent);
  background: #fff;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-navy);
}

.pt-explorer__checks {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #404040;
}

.pt-explorer__checks li {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.pt-explorer__checks li:first-child {
  margin-top: 0;
}

.pt-home-badge {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--brand-accent);
}

.pt-home-btn-navy {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-navy);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease;
}

.pt-home-btn-navy:hover {
  background: rgb(27 54 93 / 0.9);
  text-decoration: none;
  color: #fff;
}

.pt-home-band--reach {
  border-bottom: 1px solid var(--brand-border);
  background: linear-gradient(135deg, var(--brand-navy) 0%, #152d4d 50%, var(--brand-navy) 100%);
  color: #fff;
}

.pt-home-band--reach .pt-home-wrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .pt-home-band--reach .pt-home-wrap {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.pt-home-reach__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 768px) {
  .pt-home-reach__title {
    font-size: 1.875rem;
  }
}

.pt-home-reach__body {
  margin: 1.5rem 0 0;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.9);
}

.pt-home-reach__body + .pt-home-reach__body {
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.85);
}

.pt-home-pills {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.9);
}

.pt-home-pill {
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.2);
  padding: 0.375rem 0.75rem;
}

.pt-home-band--clients {
  background: #fff;
}

.pt-home-band--clients .pt-home-wrap {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .pt-home-band--clients .pt-home-wrap {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.pt-home-clients__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-align: center;
}

@media (min-width: 768px) {
  .pt-home-clients__title {
    font-size: 1.5rem;
  }
}

.pt-home-clients__sub {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 0.875rem;
  color: #525252;
}

.pt-home-clients__grid {
  --pt-client-cols: 2;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(var(--pt-client-cols), minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .pt-home-clients__grid {
    --pt-client-cols: 3;
  }
}

@media (min-width: 768px) {
  .pt-home-clients__grid {
    --pt-client-cols: 4;
  }
}

.pt-home-clients__viewport {
  margin-top: 2.5rem;
  overflow: hidden;
}

.pt-home-clients__track {
  display: flex;
  width: max-content;
  gap: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.pt-home-clients__set {
  display: flex;
  gap: 1rem;
  flex: 0 0 auto;
  width: max-content;
  padding-right: 1rem;
}

.pt-home-clients__set .pt-home-client-item {
  flex: 0 0 min(10.5rem, 40vw);
  max-width: 11rem;
}

@media (min-width: 640px) {
  .pt-home-clients__set .pt-home-client-item {
    flex-basis: min(11rem, 28vw);
  }
}

@media (min-width: 768px) {
  .pt-home-clients__set .pt-home-client-item {
    flex-basis: 11rem;
  }
}

.pt-home-clients__viewport.is-marquee-active .pt-home-clients__track {
  animation: pt-logo-marquee var(--pt-marquee-duration, 32s) linear infinite;
}

.pt-home-clients__viewport.is-marquee-active:hover .pt-home-clients__track {
  animation-play-state: paused;
}

@keyframes pt-logo-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pt-home-clients__viewport.is-marquee-active .pt-home-clients__track {
    animation: none;
  }
}

.pt-home-client-placeholder {
  display: flex;
  aspect-ratio: 5 / 2;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px dashed var(--brand-border);
  background: #fafafa;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #a3a3a3;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}

.pt-home-client-placeholder:hover {
  border-color: rgb(0 139 207 / 0.4);
  color: var(--brand-navy);
}

.pt-home-client-item {
  position: relative;
  overflow: hidden;
  border-style: solid;
  border-color: var(--brand-border);
  background: #fff;
  padding: 0.3rem;
}

.pt-home-client-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pt-home-client-hover-title {
  position: absolute;
  inset: auto 0 0 0;
  background: rgb(27 54 93 / 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.pt-home-client-item:hover .pt-home-client-hover-title {
  opacity: 1;
  transform: translateY(0);
}

/* Inner pages — About, Management, Contact, Blog, Services */
.pt-front {
  flex: 1;
}

.pt-page-main {
  position: relative;
  flex: 1;
  background: #fff;
}

.pt-page-main--decor {
  overflow: hidden;
}

.pt-page-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pt-page-decor__blob,
.pt-page-decor__ring {
  position: absolute;
  border-radius: 9999px;
}

.pt-page-decor__blob--one {
  width: clamp(180px, 28vw, 340px);
  height: clamp(180px, 28vw, 340px);
  top: 6rem;
  right: -120px;
  background: radial-gradient(circle, rgb(0 139 207 / 0.14) 0%, rgb(0 139 207 / 0) 72%);
}

.pt-page-decor__blob--two {
  width: clamp(180px, 24vw, 300px);
  height: clamp(180px, 24vw, 300px);
  bottom: 7%;
  left: -110px;
  background: radial-gradient(circle, rgb(27 54 93 / 0.11) 0%, rgb(27 54 93 / 0) 72%);
}

.pt-page-decor__ring {
  width: clamp(140px, 18vw, 220px);
  height: clamp(140px, 18vw, 220px);
  top: 34%;
  right: 4%;
  border: 2px dashed rgb(27 54 93 / 0.12);
}

.pt-page-decor__logo {
  position: absolute;
  right: -1.5rem;
  top: 42%;
  width: clamp(140px, 18vw, 220px);
  opacity: 0.08;
  filter: grayscale(100%);
  transform: rotate(-8deg);
}

.pt-inner {
  position: relative;
  z-index: 1;
}

.pt-inner__body {
  padding-top: var(--pt-section-y);
  padding-bottom: var(--pt-section-y);
}

@media (min-width: 768px) {
  .pt-inner__body {
    padding-top: var(--pt-section-y-md);
    padding-bottom: var(--pt-section-y-md);
  }
}

.pt-page-hero--muted {
  border-bottom: 0;
  background: transparent;
}

.pt-page-hero--muted .pt-home-wrap {
  padding-top: 2.25rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .pt-page-hero--muted .pt-home-wrap {
    padding-top: 3rem;
    padding-bottom: 1.25rem;
  }
}

.pt-page-title {
  margin: 0;
  max-width: 48rem;
  text-wrap: balance;
  font-size: var(--page-title-size);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: var(--lh-tight);
  color: var(--brand-navy);
}

@media (min-width: 768px) {
  .pt-page-title {
    font-size: var(--page-title-size);
  }
}

.pt-page-lead {
  margin: 1.5rem 0 0;
  max-width: 48rem;
  font-size: var(--text-lead);
  line-height: var(--lh-body);
  color: #404040;
}

.pt-page-lead--narrow {
  max-width: 42rem;
}

.pt-page-lead + .pt-page-lead {
  margin-top: 1.25rem;
}

.pt-page-h2 {
  margin: 0;
  font-size: var(--page-subtitle-size);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--brand-navy);
}

.pt-page-h2-lg {
  margin: 0;
  font-size: var(--page-subtitle-size);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--brand-navy);
}

.pt-page-prose {
  margin: 1rem 0 0;
  line-height: var(--lh-body);
  color: #404040;
}

.font-serif,
.pt-mgmt-body {
  font-family: var(--font-serif);
}

.pt-mgmt-body p {
  margin: 0 0 1.25rem;
}

.pt-mgmt-body p:last-child {
  margin-bottom: 0;
}

.pt-about-grid {
  display: grid;
  gap: 3rem;
}

.pt-page-main--about {
  background: #fff;
}

.pt-about-hero-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .pt-about-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    align-items: start;
    gap: 2rem;
  }
}

.pt-about-hero-copy .pt-page-lead {
  max-width: 100%;
}

.pt-about-hero-media {
  position: relative;
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .pt-about-hero-media {
    display: flex;
  }
}

@media (max-width: 1100px) {
  .pt-about-hero-frame {
    width: min(100%, 360px);
  }

  .pt-about-hero-badge {
    left: 0.5rem;
  }
}

.pt-about-hero-media::before {
  content: "";
  position: absolute;
  right: -4%;
  bottom: -5%;
  width: clamp(200px, 22vw, 320px);
  height: clamp(200px, 22vw, 320px);
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgb(27 54 93 / 0.2), rgb(0 139 207 / 0.16));
  transform: rotate(-8deg);
}

.pt-about-hero-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
}

.pt-about-hero-cutout {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 1.4rem 4.5rem 1.4rem 4.5rem;
  border: 1px solid rgb(27 54 93 / 0.12);
  box-shadow:
    0 24px 36px rgb(0 0 0 / 0.14),
    0 2px 5px rgb(0 0 0 / 0.06);
}

.pt-about-hero-badge {
  position: absolute;
  left: -1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 9999px;
  background: #fff;
  color: var(--brand-navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--brand-border);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.12);
}

.pt-about-hero-badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-accent);
}

.pt-about-col--card {
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: linear-gradient(180deg, #fff 0%, rgb(248 250 252 / 0.85) 100%);
  padding: 1.5rem;
}

.pt-about-col__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pt-about-col__icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  color: var(--brand-accent);
  background: rgb(0 139 207 / 0.14);
}

@media (min-width: 768px) {
  .pt-about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}

.pt-about-values {
  margin-top: 4rem;
  border-top: 1px solid var(--brand-border);
  padding-top: 4rem;
}

.pt-about-values__grid {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pt-about-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pt-about-value-card {
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: rgb(250 250 250 / 0.8);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-about-value-card:hover {
  transform: translateY(-2px);
  border-color: rgb(0 139 207 / 0.3);
  box-shadow: 0 8px 18px rgb(0 0 0 / 0.08);
}

.pt-about-value-card__icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgb(27 54 93 / 0.1);
  color: var(--brand-navy);
}

.pt-about-value-card__icon .pt-home-ico__svg {
  width: 1.2rem;
  height: 1.2rem;
}

.pt-about-value-card__title {
  margin: 0.75rem 0 0;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-about-value-card__body {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #404040;
}

/* Management — space after CEO message before navy “Why” band */
.pt-mgmt-article {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .pt-mgmt-article {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
  }
}

.pt-mgmt-profile {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pt-mgmt-profile {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
  }
}

.pt-mgmt-profile--second {
  margin-top: 5rem;
}

.pt-mgmt-img {
  width: 100%;
  max-width: 220px;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  object-fit: cover;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.pt-mgmt-img--placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.pt-mgmt-header {
  border: 0;
  padding: 0;
}

.pt-mgmt-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

.pt-mgmt-name {
  margin: 0.5rem 0 0;
  font-size: var(--page-subtitle-size);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--brand-navy);
}

.pt-mgmt-role {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #525252;
}

.pt-mgmt-body {
  margin-top: 2rem;
  max-width: 48rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #262626;
}

.pt-mgmt-why {
  margin-top: 0;
  border-top: 1px solid rgb(27 54 93 / 0.1);
  background: #fff;
  color: #171717;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .pt-mgmt-why {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.pt-mgmt-why__title {
  margin: 0;
  text-align: left;
  font-size: var(--page-subtitle-size);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--brand-navy);
}

@media (min-width: 768px) {
  .pt-mgmt-why__title {
    font-size: var(--page-subtitle-size);
  }
}

.pt-mgmt-why__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pt-mgmt-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pt-mgmt-why-card {
  border: 0;
  border-bottom: 1px solid rgb(27 54 93 / 0.12);
  border-radius: 0;
  background: transparent;
  padding: 0 0 1.25rem;
}

.pt-mgmt-why-ico {
  display: flex;
  color: var(--brand-navy);
  opacity: 0.75;
}

.pt-mgmt-why-ico .pt-home-ico__svg {
  width: 2rem;
  height: 2rem;
}

.pt-mgmt-why-card__title {
  margin: 0.75rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-mgmt-why-card__body {
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
  line-height: var(--lh-body);
  color: #404040;
}

/* Contact */
.pt-contact-grid {
  display: grid;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .pt-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.pt-contact-h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-contact-h2--plain {
  display: block;
}

.pt-contact-h2__icon {
  flex-shrink: 0;
  color: var(--brand-accent);
}

.pt-contact-address {
  margin: 1rem 0 0;
  font-style: normal;
  color: #404040;
}

.pt-contact-address p {
  margin: 0.25rem 0 0;
}

.pt-contact-address p:first-child {
  margin-top: 0;
}

.pt-contact-ig {
  margin-top: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: #fafafa;
  padding: 1rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.pt-contact-ig__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-contact-ig__note {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: #525252;
}

.pt-contact-ig__img {
  margin-top: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--brand-border);
  background: #fff;
}

.pt-contact-people {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pt-contact-person {
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: rgb(250 250 250 / 0.8);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.pt-contact-person__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 640px) {
  .pt-contact-person__grid {
    grid-template-columns: 96px minmax(0, 1fr) auto;
  }
}

.pt-contact-person__photo {
  width: 6rem;
  height: 6rem;
  border-radius: 0.75rem;
  border: 1px solid var(--brand-border);
  object-fit: cover;
}

.pt-contact-person__photo--ph {
  background: #e5e7eb;
}

.pt-contact-person__name {
  margin: 0;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-contact-person__role {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #525252;
}

.pt-contact-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-accent);
  text-decoration: none;
}

.pt-contact-link:hover {
  color: var(--brand-navy);
  text-decoration: none;
}

.pt-contact-wa {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f9d58;
  text-decoration: none;
}

.pt-contact-wa:hover {
  color: #0b7a45;
  text-decoration: none;
}

.pt-contact-person__qr {
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
  border: 1px solid var(--brand-border);
  background: #fff;
}

.pt-contact-social {
  margin-top: 2.5rem;
}

.pt-contact-social__label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

.pt-contact-social__link {
  margin-top: 0.75rem;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pt-contact-social__link:hover {
  text-decoration: underline;
}

/* Blog / Insights */
.pt-blog-wrap {
  padding-top: 0;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .pt-blog-wrap {
    padding-top: 0;
    padding-bottom: 6rem;
  }
}

.pt-blog-soon {
  margin: 2rem 0 0;
  border-radius: 0.75rem;
  border: 1px dashed var(--brand-border);
  background: #fafafa;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #525252;
}

.pt-insights-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
  grid-auto-rows: 1fr;
}

@media (min-width: 768px) {
  .pt-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .pt-insights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pt-insight-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pt-insight-card__media-link {
  display: block;
}

.pt-insight-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f3f4f6;
  display: block;
}

.pt-insight-card__img--placeholder {
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.pt-insight-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 260px;
}

.pt-insight-card__meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

.pt-insight-card__title {
  margin: 0.5rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pt-insight-card__title a {
  color: var(--brand-navy);
  text-decoration: none;
}

.pt-insight-card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pt-insight-card__excerpt {
  margin: 0.9rem 0 0;
  font-size: 0.9375rem;
  color: #404040;
  line-height: 1.55;
  min-height: calc(1.55em * 4);
  line-clamp: 4;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pt-insight-card__cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
  align-self: flex-start;
}

.pt-insight-card__cta:hover {
  background: #0077b1;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgb(0 139 207 / 0.3);
}

.pt-insights-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.pt-insights-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.pt-insights-pagination .page-numbers li {
  margin: 0;
}

.pt-insights-pagination .page-numbers a,
.pt-insights-pagination .page-numbers span {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--brand-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--brand-navy);
  background: #fff;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.pt-insights-pagination .page-numbers a:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.pt-insights-pagination .page-numbers .current {
  border-color: var(--brand-accent);
  background: var(--brand-accent);
  color: #fff;
}

/* Single post */
.pt-post-wrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .pt-post-wrap {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.pt-post__meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

.pt-post__back {
  margin: 0 0 1.25rem;
}

.pt-post__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-accent);
  text-decoration: none;
}

.pt-post__back-link:hover {
  color: var(--brand-navy);
  text-decoration: underline;
}

.pt-post__header .pt-page-title {
  margin: 0.5rem 0 0;
}

.pt-post__hero {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .pt-post__hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 1.75rem;
  }
}

.pt-post__img {
  width: 100%;
  height: 260px;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  object-fit: cover;
  display: block;
}

.pt-post__img--placeholder {
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

@media (min-width: 900px) {
  .pt-post__img {
    height: 320px;
  }
}

.pt-post__figure {
  margin: 0;
}

.pt-post__summary {
  margin: 1rem 0 0;
  color: #404040;
  line-height: 1.625;
}

.pt-post__content {
  margin-top: 2rem;
  max-width: none;
}

/* Service detail — align with inner pages; decor may extend slightly horizontally */
.pt-page-main--service.pt-page-main--decor {
  overflow: visible;
}

.pt-page-main--service .pt-inner__body {
  padding-top: 2.5rem;
  padding-bottom: calc(var(--pt-section-y) + 0.5rem);
}

@media (min-width: 768px) {
  .pt-page-main--service .pt-inner__body {
    padding-top: 3rem;
    padding-bottom: calc(var(--pt-section-y-md) + 0.5rem);
  }
}

.pt-service-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}

/* Title row — same structure as Contact / Management hero */
.pt-service-hero-title-block .pt-page-title {
  margin: 0;
}

.pt-service-hero-title-block {
  padding-bottom: 0.25rem;
}

/* Split: copy + bullets + actions | image */
.pt-service-hero-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .pt-service-hero-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
    gap: 2rem;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .pt-service-hero-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  }
}

.pt-service-hero-copy .pt-page-lead:first-of-type {
  margin-top: 0;
}

.pt-service-hero-meta {
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgb(64 64 64 / 0.95);
  padding-left: 0.85rem;
  border-left: 3px solid rgb(0 139 207 / 0.45);
}

.pt-service-hero-detail {
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #404040;
}

.pt-service-hero-bullets--cols2,
.pt-service-hero-bullets--cols3 {
  max-width: none;
  width: 100%;
}

.pt-service-hero-bullets--cols2 {
  column-count: 2;
  column-gap: 1.5rem;
}

.pt-service-hero-bullets--cols3 {
  column-count: 3;
  column-gap: 1.5rem;
}

.pt-service-hero-bullets--cols2 li,
.pt-service-hero-bullets--cols3 li {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

@media (max-width: 767px) {
  .pt-service-hero-bullets--cols2,
  .pt-service-hero-bullets--cols3 {
    column-count: 1;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pt-service-hero-bullets--cols3 {
    column-count: 2;
    column-gap: 1.5rem;
  }
}

.pt-service-hero-bullets-label {
  margin: 1.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-navy);
}

.pt-service-hero-bullets {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
}

.pt-service-hero-bullets li {
  position: relative;
  margin-top: 0.45rem;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #404040;
}

.pt-service-hero-bullets li:first-child {
  margin-top: 0;
}

.pt-service-hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: var(--brand-accent);
  box-shadow: 0 0 0 3px rgb(0 139 207 / 0.15);
}

.pt-service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pt-service-hero-btn.pt-home-btn-navy {
  margin-top: 0;
}

.pt-service-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.pt-service-hero-actions .pt-home-btn-navy {
  text-decoration: none;
}

.pt-service-hero-ghost.pt-service-hero-btn {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  border-radius: 9999px;
  color: var(--brand-navy);
  border: 1px solid rgb(27 54 93 / 0.22);
  background: rgb(255 255 255 / 0.92);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-service-hero-ghost.pt-service-hero-btn:hover {
  border-color: var(--brand-accent);
  background: #fff;
  box-shadow: 0 4px 14px rgb(0 139 207 / 0.12);
  color: var(--brand-navy);
}

.pt-service-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 420px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .pt-service-hero-media {
    justify-content: flex-end;
    margin-inline: 0;
    max-width: none;
  }
}

.pt-service-hero-media::before {
  content: "";
  position: absolute;
  right: -3%;
  bottom: -6%;
  width: clamp(160px, 38%, 280px);
  height: clamp(160px, 38%, 280px);
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgb(27 54 93 / 0.18), rgb(0 139 207 / 0.14));
  transform: rotate(-8deg);
  z-index: 0;
}

.pt-service-hero-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
}

.pt-service-hero-img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 1.4rem 4.5rem 1.4rem 4.5rem;
  border: 1px solid rgb(27 54 93 / 0.12);
  box-shadow:
    0 24px 36px rgb(0 0 0 / 0.12),
    0 2px 5px rgb(0 0 0 / 0.05);
}

.pt-service-hero-badge {
  position: absolute;
  left: 0.5rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 9999px;
  background: #fff;
  color: var(--brand-navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--brand-border);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.1);
}

@media (min-width: 768px) {
  .pt-service-hero-badge {
    left: -0.75rem;
  }
}

.pt-service-hero-badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-accent);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .pt-service-hero-img {
    aspect-ratio: 16 / 11;
    max-height: 220px;
    object-fit: cover;
  }

  .pt-service-hero-frame {
    width: min(100%, 100%);
  }
}

.pt-service-items-head {
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.pt-service-items-head__title {
  margin: 0;
  font-size: var(--page-subtitle-size);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--brand-navy);
}

.pt-service-items-head__lead {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #404040;
}

/* Service cards grid */
.pt-service-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pt-service-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (min-width: 1100px) {
  .pt-service-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pt-service-item {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid var(--brand-border);
  background: linear-gradient(165deg, #fff 0%, rgb(248 250 252 / 0.92) 100%);
  padding: 1.35rem 1.35rem 1.45rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.pt-service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0 139 207 / 0.06), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.pt-service-item:hover {
  border-color: rgb(0 139 207 / 0.35);
  box-shadow:
    0 12px 28px rgb(27 54 93 / 0.08),
    0 2px 6px rgb(0 0 0 / 0.04);
  transform: translateY(-2px);
}

.pt-service-item:hover::before {
  opacity: 1;
}

.pt-service-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pt-service-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: rgb(0 139 207 / 0.1);
  color: var(--brand-accent);
  border: 1px solid rgb(0 139 207 / 0.18);
}

.pt-service-item__icon .pt-home-ico__svg {
  width: 22px;
  height: 22px;
}

.pt-service-item__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgb(27 54 93 / 0.35);
  font-variant-numeric: tabular-nums;
}

.pt-service-item__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-navy);
}

.pt-service-item__body {
  position: relative;
  z-index: 1;
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #404040;
}

/* Service bottom CTA */
.pt-service-cta {
  position: relative;
  margin-top: 3rem;
  padding: 2.25rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(125deg, var(--brand-navy) 0%, #0f2744 55%, rgb(0 83 124) 100%);
  color: #fff;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow: 0 16px 40px rgb(27 54 93 / 0.2);
}

@media (min-width: 768px) {
  .pt-service-cta {
    margin-top: 3.5rem;
    padding: 2.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.pt-service-cta__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgb(0 139 207 / 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.pt-service-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.pt-service-cta__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pt-service-cta__text {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.88);
}

.pt-service-cta__btn {
  display: inline-flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-navy);
  background: #fff;
  border: 1px solid rgb(255 255 255 / 0.35);
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-service-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgb(0 0 0 / 0.18);
  color: var(--brand-navy);
}

@media (prefers-reduced-motion: reduce) {
  .pt-service-item,
  .pt-service-item::before,
  .pt-service-cta__btn {
    transition: none;
  }

  .pt-service-item:hover {
    transform: none;
  }

  .pt-service-cta__btn:hover {
    transform: none;
  }
}

.pt-page-entry {
  max-width: 48rem;
}

.pt-page-entry > *:first-child {
  margin-top: 0;
}

/* ------------------------------------------------
   Top bar email link
   ------------------------------------------------ */
.pt-topbar__link--email {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .pt-topbar__link--email {
    display: none;
  }
}

/* ------------------------------------------------
   Consultation modal popup
   ------------------------------------------------ */
.pt-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.pt-modal[hidden] {
  display: none;
}

.pt-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.pt-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  animation: pt-modal-in 0.3s ease;
}

@keyframes pt-modal-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pt-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: background 0.2s;
}

.pt-modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.pt-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pt-modal__image {
  position: relative;
  border-radius: 1rem 0 0 1rem;
  overflow: hidden;
  min-height: 24rem;
}

.pt-modal__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.pt-modal__form-side {
  padding: 2.5rem 2rem;
}

.pt-consult-form__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.pt-consult-form__subtitle {
  color: #555;
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.pt-consult-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pt-consult-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pt-consult-form__field--full {
  grid-column: 1 / -1;
}

.pt-consult-form__field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-consult-form__field label span {
  color: #e53e3e;
}

.pt-consult-form__field input,
.pt-consult-form__field select {
  padding: 0.6rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #fafbfc;
  transition: border-color 0.2s;
}

.pt-consult-form__field input:focus,
.pt-consult-form__field select:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(0, 139, 207, 0.12);
}

.pt-consult-form__submit {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--brand-navy);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.pt-consult-form__submit:hover {
  background: #14284a;
}

.pt-consult-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pt-consult-form__msg {
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  min-height: 1.1rem;
}

.pt-consult-form__msg--ok {
  color: #16a34a;
}

.pt-consult-form__msg--err {
  color: #dc2626;
}

.pt-consult-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  animation: pt-success-in 0.5s ease;
}

@keyframes pt-success-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.pt-consult-success__icon {
  margin-bottom: 1.5rem;
}

.pt-check-circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: pt-circle-draw 0.6s ease forwards;
}

@keyframes pt-circle-draw {
  to { stroke-dashoffset: 0; }
}

.pt-check-mark {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: pt-check-draw 0.4s 0.5s ease forwards;
}

@keyframes pt-check-draw {
  to { stroke-dashoffset: 0; }
}

.pt-consult-success__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.pt-consult-success__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .pt-modal__body {
    grid-template-columns: 1fr;
  }
  .pt-modal__image {
    display: none;
  }
  .pt-modal__form-side {
    padding: 2rem 1.25rem;
  }
  .pt-consult-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------
   Service cards grid (homepage services section)
   ------------------------------------------------ */
.pt-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pt-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem 1.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  min-height: 10rem;
}

.pt-svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  color: var(--brand-accent);
}

.pt-svc-card__icon .pt-home-ico__svg {
  width: 2.85rem;
  height: 2.85rem;
}

.pt-svc-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.pt-svc-card__title-link {
  color: var(--brand-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pt-svc-card__title-link:hover,
.pt-svc-card__title-link:focus-visible {
  color: var(--brand-accent);
  text-decoration: underline;
}

.pt-home-band__lead {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  max-width: 36rem;
}

.pt-home-band--muted .pt-home-band__head {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.pt-home-band--muted .pt-home-band__lead {
  margin: 0 auto;
}

.pt-svc-grid__footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .pt-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pt-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pt-svc-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------
   Pricing cards (homepage packages section)
   ------------------------------------------------ */
.pt-home-band--pricing {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0d1f3c 100%);
}

.pt-home-band--pricing .pt-home-eyebrow,
.pt-home-band--pricing .pt-home-h2,
.pt-home-band--pricing .pt-home-lead {
  color: #fff;
}

.pt-home-band--pricing .pt-home-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.pt-home-band--pricing .pt-home-lead {
  color: rgba(255, 255, 255, 0.7);
}

.pt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pt-pricing-grid--carousel {
  display: flex;
  align-items: stretch;
  margin-top: 0;
}

.pt-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: auto;
  min-height: 0;
  background: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pt-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.pt-pricing-grid--carousel .pt-pricing-card:hover {
  transform: none;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
}

.pt-pricing-card--featured {
  border: 2px solid var(--brand-accent);
  box-shadow: 0 8px 32px rgba(0, 139, 207, 0.2);
}

.pt-pricing-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgb(0 139 207 / 0.35);
}

.pt-pricing-card--has-badge {
  padding-top: 2.65rem;
}

.pt-pricing-card--has-badge .pt-pricing-card__title {
  margin-top: 0;
}

.pt-pricing-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.3;
}

.pt-pricing-card__sub {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: #666;
}

.pt-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex: 1 1 auto;
}

.pt-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #333;
  margin-bottom: 0.5rem;
}

.pt-pricing-card__features li:last-child {
  margin-bottom: 0;
}

.pt-pricing-card__features li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--brand-navy);
}

.pt-pricing-card--syndicate {
  overflow: visible;
}

.pt-pricing-card--syndicate .pt-pricing-card__title {
  padding-right: 1.25rem;
}

/* Corner seal: centered on top-right vertex, half on card / half outside (see reference) */
.pt-pricing-card__syndicate-corner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding: 0.4rem;
  line-height: 0;
  transform: translate(50%, -50%);
  transform-origin: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  box-shadow:
    0 0 0 1px rgb(27 54 93 / 0.1),
    0 8px 22px rgb(27 54 93 / 0.28);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-pricing-card__syndicate-corner:hover {
  transform: translate(50%, -50%) scale(1.04);
  box-shadow:
    0 0 0 1px rgb(27 54 93 / 0.12),
    0 10px 26px rgb(27 54 93 / 0.34);
}

.pt-pricing-card__syndicate-corner .pt-pricing-card__syndicate-logo,
.pt-pricing-card__syndicate-corner img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  border-radius: 50%;
}

.pt-pricing-card__syndicate-corner .pt-pricing-card__syndicate-logo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pt-pricing-card__syndicate-corner .pt-pricing-card__syndicate-logo--placeholder svg {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 50%;
}

.pt-pricing-card--has-badge.pt-pricing-card--syndicate .pt-pricing-card__syndicate-corner {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.pt-pricing-card__syndicate-text {
  color: inherit;
  text-decoration: none;
}

.pt-pricing-card__syndicate-text:hover {
  color: var(--brand-accent);
  text-decoration: underline;
}

.pt-pricing-card__bottom {
  border-top: 1px solid #e8e8e8;
  margin-top: auto;
  padding-top: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.pt-pricing-card__price {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--brand-navy);
}

.pt-pricing-card__note {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  color: #999;
}

.pt-pricing-card__cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.75rem;
  border: 2px solid var(--brand-navy);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--brand-navy);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

a.pt-pricing-card__cta:visited {
  color: var(--brand-navy);
}

.pt-pricing-card__cta:hover {
  background: var(--brand-navy);
  color: #fff;
}

.pt-pricing-card--featured .pt-pricing-card__cta {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
}

.pt-pricing-card--featured .pt-pricing-card__cta:hover {
  background: #0077b0;
  border-color: #0077b0;
}

.pt-pricing-viewport {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
}

.pt-home-band--pricing .pt-home-wrap {
  overflow: visible;
}

.pt-pricing-nav {
  position: absolute;
  top: -3.25rem;
  z-index: 5;
  pointer-events: auto;
}

.pt-pricing-nav--prev {
  right: 3.25rem;
}

.pt-pricing-nav--next {
  right: 0;
}

.pt-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pt-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.pt-pricing-viewport .pt-pricing-grid--carousel {
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2.75rem 0 0.75rem;
}

.pt-pricing-grid--carousel::-webkit-scrollbar {
  display: none;
}

.pt-pricing-grid--carousel .pt-pricing-card {
  flex: 0 0 calc((100% - 3.75rem) / 4);
  width: calc((100% - 3.75rem) / 4);
  max-width: none;
  min-width: 0;
  align-self: stretch;
  scroll-snap-align: start;
}

.pt-pricing-grid--carousel .pt-pricing-card--syndicate {
  margin-top: 0;
}

@media (max-width: 991px) and (min-width: 640px) {
  .pt-pricing-grid--carousel .pt-pricing-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    width: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 639px) {
  .pt-pricing-grid--carousel .pt-pricing-card {
    flex: 0 0 86%;
    width: 86%;
  }
}

.pt-pricing-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pt-pricing-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.pt-pricing-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* ------------------------------------------------
   Video embed (homepage merged section + reuse)
   ------------------------------------------------ */
.pt-video-embed {
  margin: 0;
  max-width: none;
}

.pt-video-embed__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.65rem;
  box-shadow: inset 0 0 0 1px rgb(27 54 93 / 0.06);
  background: #0f172a;
}

.pt-video-embed__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* YouTube Shorts — vertical 9:16 (aspect-ratio box; iframe fills inside) */
.pt-video-embed__frame--short {
  position: relative;
  height: auto;
  padding-bottom: 0;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0f172a;
}

.pt-video-embed__frame--short iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pt-video-embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1.25rem;
  border: 2px dashed rgb(27 54 93 / 0.18);
  border-radius: 0.65rem;
  color: #64748b;
  text-align: center;
  background: rgb(248 250 252 / 0.8);
}

/* ------------------------------------------------
   Flip Tile cards (Services & Packages)
   ------------------------------------------------ */
.pt-home-band--tiles {
  padding: 3.5rem 0;
  background: var(--bg-muted);
}

.pt-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Tax grid layout extended in .pt-tax-services block below */

.pt-flip-tile {
  perspective: 1000px;
  min-height: 24rem;
  cursor: pointer;
  outline: none;
}

.pt-flip-grid--tax .pt-flip-tile {
  min-height: 13.5rem;
}

.pt-flip-tile__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.pt-flip-grid--tax .pt-flip-tile__inner {
  min-height: 13.5rem;
}

.pt-flip-tile.is-flipped .pt-flip-tile__inner {
  transform: rotateY(180deg);
}

@media (hover: hover) {
  .pt-flip-tile:hover .pt-flip-tile__inner {
    transform: rotateY(180deg);
  }
}

.pt-flip-tile__front,
.pt-flip-tile__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.pt-flip-tile__front {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(27, 54, 93, 0.06);
}

.pt-flip-tile__back {
  background: var(--brand-navy);
  color: #fff;
  transform: rotateY(180deg);
}

.pt-flip-tile__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 0.5rem;
}

.pt-flip-tile__back .pt-flip-tile__title {
  color: #fff;
}

.pt-flip-tile__sub {
  font-size: 0.85rem;
  color: var(--brand-accent);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.pt-flip-tile__back .pt-flip-tile__sub {
  color: rgba(255, 255, 255, 0.8);
}

.pt-flip-tile__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.pt-flip-tile__list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.pt-flip-tile__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-weight: 700;
}

.pt-flip-tile__back .pt-flip-tile__list li::before {
  color: rgba(255, 255, 255, 0.6);
}

.pt-flip-tile__list--check li::before {
  content: "\2713";
  color: #22c55e;
}

.pt-flip-tile__prices {
  margin: 0.5rem 0 0.5rem;
}

.pt-flip-tile__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin: 0.2rem 0;
}

.pt-flip-tile__note {
  font-size: 0.72rem;
  color: #6b7280;
  font-style: italic;
  margin: 0.25rem 0 0;
}

.pt-flip-tile__body {
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.pt-flip-tile__footer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.75rem;
  margin-top: auto;
}

.pt-flip-tile__hint {
  margin-top: auto;
  font-size: 0.72rem;
  color: #9ca3af;
  text-align: center;
  padding-top: 0.5rem;
}

.pt-flip-tile__back .pt-flip-tile__hint {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
  .pt-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pt-flip-grid {
    grid-template-columns: 1fr;
  }
  .pt-flip-tile {
    min-height: 20rem;
  }
  .pt-flip-tile__inner {
    min-height: 20rem;
  }
}

/* ------------------------------------------------
   Contact page — Indian office & timings
   ------------------------------------------------ */
.pt-contact-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
}

.pt-contact-office-block {
  padding: 0;
}

.pt-contact-hours {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #404040;
}

@media (max-width: 768px) {
  .pt-contact-extra {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------
   All services index (/services/)
   ------------------------------------------------ */
.pt-page-main--services-index .pt-services-index__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.pt-page-main--services-index .pt-services-index__hero-actions .pt-home-btn-navy {
  margin-top: 0;
}

.pt-services-index__hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  border: 1px solid rgb(27 54 93 / 0.22);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-services-index__hero-ghost:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 4px 14px rgb(0 139 207 / 0.12);
}

.pt-services-index__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pt-services-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pt-services-index__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.pt-services-index__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid var(--brand-border);
  background: linear-gradient(165deg, #fff 0%, rgb(248 250 252 / 0.92) 100%);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.pt-services-index__card:hover {
  border-color: rgb(0 139 207 / 0.35);
  box-shadow:
    0 12px 28px rgb(27 54 93 / 0.08),
    0 2px 6px rgb(0 0 0 / 0.04);
  transform: translateY(-3px);
}

.pt-services-index__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: rgb(0 139 207 / 0.1);
  color: var(--brand-accent);
  border: 1px solid rgb(0 139 207 / 0.18);
  margin-bottom: 1rem;
}

.pt-services-index__card-icon .pt-home-ico__svg {
  width: 22px;
  height: 22px;
}

.pt-services-index__card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-navy);
}

.pt-services-index__card-intro {
  margin: 0.55rem 0 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #404040;
}

.pt-services-index__card-more {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-accent);
}

.pt-mobile-nav__sublink--featured {
  font-weight: 600;
  color: var(--brand-navy);
  border-left: 3px solid var(--brand-accent);
  padding-left: 0.75rem;
}

/* ------------------------------------------------
   Floating WhatsApp + consultation (site-wide)
   ------------------------------------------------ */
.pt-float-actions {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.pt-float-actions__btn {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 10px 22px rgb(0 0 0 / 0.18),
    0 2px 6px rgb(0 0 0 / 0.08);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-float-actions__btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 12px 26px rgb(0 0 0 / 0.22),
    0 2px 8px rgb(0 0 0 / 0.1);
}

.pt-float-actions__btn--msg {
  background: var(--brand-navy);
  color: #fff;
}

.pt-float-actions__btn--wa {
  background: #25d366;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .pt-float-actions__btn,
  .pt-float-actions__btn:hover,
  .pt-services-index__card,
  .pt-services-index__card:hover {
    transition: none;
    transform: none;
  }
}

/* ------------------------------------------------
   About — highlight band, split section, decor
   ------------------------------------------------ */
.pt-page-main--about.pt-page-main--decor {
  overflow: visible;
}

.pt-page-main--about .pt-inner__body {
  padding-top: 2.5rem;
}

.pt-about-highlight {
  background: linear-gradient(120deg, rgb(27 54 93 / 0.06) 0%, rgb(0 139 207 / 0.08) 45%, rgb(248 250 252) 100%);
  border-top: 1px solid rgb(27 54 93 / 0.08);
  border-bottom: 1px solid rgb(27 54 93 / 0.08);
}

.pt-about-highlight__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-about-highlight__text {
  margin: 0;
  flex: 1 1 16rem;
  max-width: 46rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--brand-navy);
  font-weight: 500;
}

.pt-about-highlight__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--brand-navy);
  color: #fff;
  border: 1px solid rgb(27 54 93 / 0.2);
  white-space: nowrap;
  transition: background 0.15s ease;
}

.pt-about-highlight__cta:hover {
  background: rgb(27 54 93 / 0.92);
  color: #fff;
}

.pt-about-split {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-radius: 1.1rem;
  border: 1px solid var(--brand-border);
  background: linear-gradient(165deg, #fff 0%, rgb(248 250 252 / 0.95) 100%);
  box-shadow: 0 8px 24px rgb(27 54 93 / 0.06);
}

@media (min-width: 900px) {
  .pt-about-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 2.5rem;
    padding: 2.25rem 2rem;
  }
}

.pt-about-split__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.85rem;
  object-fit: cover;
  aspect-ratio: 16 / 11;
  border: 1px solid rgb(27 54 93 / 0.1);
}

.pt-about-split__title {
  margin: 0;
  font-size: var(--page-subtitle-size);
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-about-split__list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: #404040;
  line-height: 1.65;
  font-size: 0.95rem;
}

.pt-about-split__list li {
  margin-top: 0.65rem;
}

.pt-about-split__list li:first-child {
  margin-top: 0;
}

.pt-about-values {
  margin-top: 3rem;
}

/* ------------------------------------------------
   Management — embedded “What you can expect from us” band
   ------------------------------------------------ */
.pt-mgmt-why--embedded {
  margin-top: 2.5rem;
  padding: 1.75rem 1.25rem 2rem;
  border-radius: 1rem;
  border: 1px solid var(--brand-border);
  background: linear-gradient(180deg, rgb(248 250 252 / 0.9) 0%, #fff 100%);
}

@media (min-width: 768px) {
  .pt-mgmt-why--embedded {
    padding: 2rem 1.75rem 2.25rem;
  }
}

.pt-mgmt-why--embedded .pt-mgmt-why__title {
  margin: 0;
  text-align: left;
  font-size: var(--page-subtitle-size);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--brand-navy);
}

.pt-mgmt-why--embedded .pt-mgmt-why__grid {
  margin-top: 1.35rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pt-mgmt-why--embedded .pt-mgmt-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pt-mgmt-why--embedded .pt-mgmt-why-card {
  border: 0;
  border-bottom: 1px solid rgb(27 54 93 / 0.1);
  border-radius: 0;
  background: transparent;
  padding: 0 0 1.15rem;
}

.pt-mgmt-why--embedded .pt-mgmt-why-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* ------------------------------------------------
   Contact — single layout card, two columns on desktop
   ------------------------------------------------ */
.pt-page-main--contact {
  background: linear-gradient(180deg, #fff 0%, rgb(248 250 252 / 0.65) 40%, #fff 100%);
}

.pt-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.pt-contact-hero__actions .pt-home-btn-navy {
  margin-top: 0;
}

.pt-contact-hero__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.55rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  border: 1px solid rgb(27 54 93 / 0.22);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-contact-hero__ghost:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 4px 14px rgb(0 139 207 / 0.12);
}

.pt-contact-shell {
  padding-bottom: 3rem;
}

.pt-contact-layout {
  display: grid;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 1rem;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 4px 20px rgb(27 54 93 / 0.06);
}

@media (min-width: 768px) {
  .pt-contact-layout {
    padding: 2rem 1.75rem;
  }
}

@media (min-width: 960px) {
  .pt-contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 0;
    align-items: stretch;
  }

  .pt-contact-layout__main {
    padding-right: 2rem;
    border-right: 1px solid rgb(27 54 93 / 0.08);
  }

  .pt-contact-layout__aside {
    padding-left: 2rem;
  }
}

.pt-contact-block + .pt-contact-block {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgb(27 54 93 / 0.08);
}

.pt-contact-block__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-contact-block__title--aside {
  margin-bottom: 0.35rem;
}

.pt-contact-block__icon {
  display: inline-flex;
  color: var(--brand-accent);
}

.pt-contact-block__subtitle {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.pt-page-main--contact .pt-contact-address {
  margin: 0;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #404040;
}

.pt-page-main--contact .pt-contact-address p {
  margin: 0.2rem 0 0;
}

.pt-contact-office-row {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 640px) {
  .pt-contact-office-row {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 220px);
    gap: 1.5rem;
  }
}

.pt-contact-office-row__address {
  margin: 0;
}

.pt-contact-office-map {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pt-contact-office-map__card {
  overflow: hidden;
  border: 1px solid rgb(27 54 93 / 0.12);
  border-radius: 0.65rem;
  background: #f8fafc;
  box-shadow: 0 2px 12px rgb(27 54 93 / 0.08);
}

.pt-contact-office-map__frame {
  display: block;
  width: 100%;
  height: 168px;
  border: 0;
}

@media (min-width: 640px) {
  .pt-contact-office-map__frame {
    height: 180px;
  }
}

.pt-contact-office-map__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-accent);
  text-decoration: none;
}

.pt-contact-office-map__link:hover {
  color: var(--brand-navy);
  text-decoration: underline;
}

.pt-contact-connect {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
}

.pt-contact-connect__qr-wrap {
  flex-shrink: 0;
  text-align: center;
}

.pt-contact-connect__qr-link {
  display: block;
  border-radius: 0.5rem;
  transition:
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.pt-contact-connect__qr-link:hover {
  box-shadow: 0 6px 18px rgb(0 139 207 / 0.18);
  transform: translateY(-1px);
}

.pt-contact-connect__qr-link:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
}

.pt-contact-connect__qr {
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  object-fit: contain;
}

.pt-contact-connect__qr-caption {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #737373;
}

.pt-contact-connect__body {
  flex: 1;
  min-width: 12rem;
}

.pt-contact-connect__note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #525252;
}

.pt-contact-connect__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.pt-contact-connect__icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 4.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--brand-navy);
  cursor: pointer;
  transition: color 0.15s ease;
}

.pt-contact-connect__icon-btn:hover {
  color: var(--brand-accent);
  text-decoration: none;
}

.pt-contact-connect__icon-btn:hover .pt-contact-connect__icon-ring {
  border-color: var(--brand-accent);
  background: rgb(0 139 207 / 0.06);
  box-shadow: 0 4px 14px rgb(0 139 207 / 0.12);
}

.pt-contact-connect__icon-btn:focus-visible {
  outline: none;
}

.pt-contact-connect__icon-btn:focus-visible .pt-contact-connect__icon-ring {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

.pt-contact-connect__icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgb(27 54 93 / 0.18);
  background: #fff;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.pt-contact-connect__icon-btn .pt-contact-connect__icon {
  width: 1.35rem;
  height: 1.35rem;
}

.pt-contact-connect__icon--stroke {
  stroke: currentColor;
  fill: none;
}

.pt-contact-connect__icon--stroke circle[fill] {
  fill: currentColor;
  stroke: none;
}

.pt-contact-connect__icon-label {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: inherit;
  max-width: 5.5rem;
}

.pt-contact-meta {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pt-contact-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.pt-contact-meta__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-contact-meta__title svg {
  flex-shrink: 0;
  color: var(--brand-accent);
}

.pt-page-main--contact .pt-contact-hours p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #404040;
}

.pt-contact-aside__lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #525252;
}

.pt-contact-team {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pt-contact-team__item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
}

.pt-contact-team__item:first-child {
  padding-top: 0;
}

.pt-contact-team__item + .pt-contact-team__item {
  border-top: 1px solid rgb(27 54 93 / 0.08);
}

.pt-contact-team__photo {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.65rem;
  border: 1px solid var(--brand-border);
  object-fit: cover;
}

.pt-contact-team__photo--ph {
  background: #e8edf2;
}

.pt-contact-team__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pt-contact-team__role {
  margin: 0.15rem 0 0.65rem;
  font-size: 0.82rem;
  color: #525252;
}

.pt-contact-team__actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pt-page-main--contact .pt-contact-link {
  margin-top: 0;
  font-size: 0.82rem;
}

.pt-page-main--contact .pt-contact-wa {
  margin-top: 0;
  font-size: 0.82rem;
}

.pt-contact-team__qr {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  object-fit: contain;
}

@media (max-width: 639px) {
  .pt-contact-team__item {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .pt-contact-team__qr {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.25rem;
  }
}

/* Team Primetax — founder message + grid */
.pt-team-founder {
  display: grid;
  gap: 1.75rem;
  margin: 2.5rem 0 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .pt-team-founder {
    grid-template-columns: minmax(0, 11.5rem) minmax(0, 1fr);
    gap: 2.25rem;
  }
}

.pt-team-founder__media {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .pt-team-founder__media {
    justify-content: flex-start;
  }
}

.pt-team-founder__photo-frame {
  margin-bottom: 0;
}

.pt-team-founder__header {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--brand-accent);
}

.pt-team-founder__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.pt-team-founder__name {
  margin: 0.5rem 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.25;
}

.pt-team-founder__role {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #525252;
}

.pt-team-founder__role--sub {
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: #666;
}

.pt-team-founder__thoughts {
  margin: 1.5rem 0 0;
  padding: 0;
  border: 0;
}

.pt-team-founder__thoughts .pt-page-prose {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.pt-team-grid-section {
  margin-bottom: 3rem;
}

.pt-team-grid-section__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.pt-team-grid-section__icon {
  color: var(--brand-accent);
}

.pt-team-grid-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--brand-navy);
}

.pt-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pt-team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.pt-team-grid .pt-team-card {
  flex: none;
  width: 100%;
  max-width: none;
}

/* Team Primetax carousel (legacy — unused on Team page) */
.pt-team-carousel {
  margin-bottom: 3rem;
}

.pt-team-carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.pt-team-carousel__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pt-team-carousel__icon {
  color: var(--brand-accent);
}

.pt-team-carousel__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--brand-navy);
}

.pt-team-carousel__nav {
  display: flex;
  gap: 0.5rem;
}

.pt-page-main--team .pt-carousel-btn {
  border-color: #d5dde8;
  background: #fff;
  color: var(--brand-navy);
}

.pt-page-main--team .pt-carousel-btn:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.pt-team-carousel__viewport {
  overflow: hidden;
}

.pt-team-carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.pt-team-carousel__track::-webkit-scrollbar {
  display: none;
}

.pt-team-card {
  flex: 0 0 min(172px, 54vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem 0.75rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  box-shadow: 0 6px 18px rgb(27 54 93 / 0.07);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.pt-team-card:hover {
  transform: translateY(-2px);
  border-color: rgb(0 139 207 / 0.3);
  box-shadow: 0 10px 24px rgb(27 54 93 / 0.1);
}

.pt-team-card__photo-frame {
  width: 100%;
  max-width: 9.5rem;
  margin: 0 auto 0.7rem;
  padding: 0.35rem;
  border-radius: 0.65rem;
  background: rgb(248 250 252);
  border: 1px solid rgb(27 54 93 / 0.1);
  box-sizing: border-box;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.pt-team-card__photo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.45rem;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.08);
}

.pt-team-card__photo--placeholder {
  min-height: 100%;
  background: linear-gradient(145deg, #e8edf2 0%, #f4f6f8 100%);
  transform: none;
}

.pt-team-card__copy {
  width: 100%;
}

.pt-team-card__name {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
}

.pt-team-card__role {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #525252;
}

.pt-team-card__role--sub {
  margin-top: 0.12rem;
  font-size: 0.74rem;
  color: #666;
}

.pt-tax-services {
  width: 100%;
}

.pt-service-items-head--center {
  text-align: center;
  margin-bottom: 1.75rem;
}

.pt-service-items-head--center .pt-service-items-head__lead {
  display: none;
}

.pt-flip-grid--tax {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-content: center;
  gap: 1.25rem;
  margin: 0 auto;
  max-width: 100%;
}

.pt-flip-grid--tax .pt-flip-tile {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.pt-flip-grid--tax .pt-flip-tile__front,
.pt-flip-grid--tax .pt-flip-tile__back {
  padding: 1.25rem 1.1rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.pt-flip-grid--tax .pt-flip-tile__front {
  gap: 0.65rem;
}

.pt-flip-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: rgb(0 139 207 / 0.12);
  color: var(--brand-accent);
}

.pt-flip-tile__icon .pt-home-ico__svg {
  width: 1.35rem;
  height: 1.35rem;
}

.pt-flip-grid--tax .pt-flip-tile__title {
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
  width: 100%;
  line-height: 1.35;
}

.pt-flip-grid--tax .pt-flip-tile__back .pt-flip-tile__title {
  margin-bottom: 0.65rem;
  text-align: center;
}

.pt-flip-grid--tax .pt-flip-tile__front .pt-flip-tile__body {
  display: none;
}

.pt-flip-grid--tax .pt-flip-tile__body {
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
}

.pt-flip-grid--tax .pt-flip-tile__list {
  text-align: left;
  width: 100%;
}

.pt-flip-grid--tax .pt-flip-tile__list li {
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  text-align: left;
}

.pt-flip-grid--tax .pt-flip-tile__hint {
  display: none;
}

.pt-about-purpose,
.pt-about-why {
  margin-top: 2.5rem;
}

.pt-about-purpose .pt-page-prose + .pt-page-prose {
  margin-top: 1rem;
}

.pt-page-main--team .pt-page-hero--muted .pt-home-wrap {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pt-page-main--team .pt-page-hero--muted .pt-home-wrap {
    padding-top: 2.25rem;
    padding-bottom: 0.65rem;
  }
}

.pt-page-main--team .pt-team-article.pt-inner__body {
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .pt-page-main--team .pt-team-article.pt-inner__body {
    padding-top: 1.25rem;
  }
}

.pt-team-purpose {
  margin: 0 0 2rem;
}

.pt-team-purpose__title {
  margin: 0 0 1rem;
}

.pt-team-purpose .pt-page-prose + .pt-page-prose {
  margin-top: 1rem;
}

.pt-home-band--partners {
  border-bottom: none;
}

.pt-home-band--partners .pt-home-partners__title {
  margin-bottom: 2rem;
  text-align: center;
}

.pt-home-band--partners .pt-home-client-placeholder {
  background: rgb(255 255 255 / 0.96);
  border-color: rgb(255 255 255 / 0.25);
}

.pt-home-band--partners .pt-home-client-hover-title {
  background: rgb(27 54 93 / 0.92);
  color: #fff;
}

/* ------------------------------------------------
   Careers page
   ------------------------------------------------ */
.pt-page-main--careers .pt-page-hero--muted .pt-home-wrap {
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pt-page-main--careers .pt-page-hero--muted .pt-home-wrap {
    padding-bottom: 0.65rem;
  }
}

.pt-page-main--careers .pt-page-lead {
  margin-top: 1rem;
}

.pt-page-main--careers .pt-careers-article {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .pt-page-main--careers .pt-careers-article {
    padding-top: 1.25rem;
  }
}

.pt-careers-office + .pt-careers-office {
  margin-top: 2.75rem;
}

.pt-careers-office__title {
  margin: 0 0 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--brand-accent);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--brand-navy);
}

.pt-careers-office__jobs {
  display: grid;
  gap: 1.25rem;
}

.pt-career-job {
  padding: 1.35rem 1.25rem 1.25rem;
  border: 1px solid var(--brand-border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 4px 18px rgb(27 54 93 / 0.06);
}

.pt-career-job__title {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.35;
}

.pt-career-job__intro {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #404040;
}

.pt-career-job__block + .pt-career-job__block {
  margin-top: 1rem;
}

.pt-career-job__label {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.pt-career-job__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #404040;
}

.pt-career-job__list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #404040;
}

.pt-career-job__list li + li {
  margin-top: 0.35rem;
}

.pt-career-job__apply {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgb(27 54 93 / 0.1);
}

.pt-career-job__btn {
  display: inline-flex;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.pt-career-job__email-hint {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: #666;
}

