/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */

:root {
  --surface: #121933;
  --surface2: #141c38;
  --surface3: #1c264d;
  --surface4: #222d57;
  --text: #e1e3e4;
  --muted: #c6c5d0;
  --primary: #b8c4fb;
  --gold: #efc04c;
  --gold-dark: #3f2e00;
  --gold-bg: #1e2b58;
  --border: rgba(255, 255, 255, 0.1);
  --max: 1200px;
  --gutter: 24px;
  --section: 80px;
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: 'Hanken Grotesk', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ==========================================================================
   Layout Containers & Utilities
   ========================================================================== */

.pl-container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.pl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.pl-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pl-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pl-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pl-mini-grid > div {
  padding-top: 8px;
}

.pl-mini-grid .material-symbols-outlined {
  color: var(--gold);
}

.center,
.pl-center {
  align-items: center;
}

.center {
  text-align: center;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.pl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 25, 51, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.pl-nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pl-brand,
.pl-brand-text {
  font: 800 22px/1 'Manrope', sans-serif;
  letter-spacing: -0.04em;
}

.custom-logo {
  max-height: 60px;
  width: auto;
}

.pl-desktop-nav ul,
.pl-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-desktop-nav > ul {
  display: flex;
  gap: 32px;
}

.pl-desktop-nav a,
.pl-mobile-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.pl-desktop-nav .current-menu-item > a,
.pl-desktop-nav a:hover,
.pl-mobile-nav a:hover {
  color: var(--gold);
}

.pl-menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

.pl-mobile-nav {
  display: none;
}


/* =========================================
   TABLET & MOBILE
========================================= */

@media (max-width: 768px) {

  /* Hide desktop navigation */
  .pl-desktop-nav {
    display: none;
  }

  /* Show mobile menu button */
  .pl-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }

  /* Mobile navigation container */
  .pl-mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.3s ease,
      opacity 0.2s ease;
  }

  /* Open mobile navigation */
  .pl-mobile-nav.is-open {
    max-height: 500px;
    opacity: 1;
  }

  /* Mobile menu */
  .pl-mobile-nav ul {
    padding: 10px 0 20px;
  }

  .pl-mobile-nav li {
    margin: 0;
  }

  .pl-mobile-nav a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
  }

}



.pl-mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.pl-mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


/* Mobile menu visual styling */
@media (max-width: 768px) {

  .pl-mobile-nav {
    border-top: 1px solid var(--border);
  }

  .pl-mobile-nav ul {
    padding: 8px 0 16px;
  }

  .pl-mobile-nav li {
    border-bottom: 1px solid var(--border);
  }

  .pl-mobile-nav li:last-child {
    border-bottom: none;
  }

  .pl-mobile-nav a {
    display: block;
    padding: 16px 0;
    transition: color 0.2s ease;
  }

}



/* ==========================================================================
   Hero & Page Header
   ========================================================================== */

.pl-hero,
.pl-page-hero {
  padding: var(--section) 0;
  overflow: hidden;
}

.pl-page-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
}

.pl-hero-copy h1,
.pl-page-hero h1 {
  font: 800 clamp(32px, 5vw, 48px)/1.1 'Manrope', sans-serif;
  letter-spacing: -0.04em;
  margin: 12px 0 24px;
}

.pl-hero-copy p,
.pl-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.pl-kicker {
  display: block;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.pl-hero-image img {
  width: min(560px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.05);
  margin-inline: auto;
}

.pl-image-placeholder {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  background: var(--surface3);
  color: var(--muted);
}

.pl-hero-shape {
  min-height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(239, 192, 76, 0.35), transparent 30%), 
              linear-gradient(135deg, var(--surface3), var(--surface));
  border: 1px solid var(--border);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--gold);
  color: var(--gold-dark);
  border: 0;
  border-radius: 5px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.25s;
}

.pl-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ==========================================================================
   Sections & Content Blocks
   ========================================================================== */

.pl-section {
  padding: var(--section) 0;
}

.pl-section-muted {
  background: var(--surface2);
}

.pl-section h2 {
  font: 700 clamp(30px, 4vw, 36px)/1.2 'Manrope', sans-serif;
  margin: 0 0 18px;
}

.pl-section h3,
.pl-service-card h3,
.pl-team-card h3 {
  font: 700 22px/1.3 'Manrope', sans-serif;
}

.pl-lead {
  margin: 0 auto 48px;
}

.pl-rounded-image {
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.pl-panel {
  background: rgba(30, 43, 88, 0.3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 70px 40px;
}

.pl-page {
  padding: 80px 0;
}

.pl-page h1 {
  font: 800 clamp(34px, 5vw, 52px)/1.1 'Manrope', sans-serif;
}

.pl-content {
  max-width: 800px;
  color: var(--muted);
}

.pl-feature-image {
  border-radius: 14px;
  margin: 30px 0;
}

/* ==========================================================================
   Cards & Components
   ========================================================================== */

/* Icon Cards */
.pl-icon-card {
  padding: 22px;
  text-align: center;
  transition: 0.3s;
}

.pl-icon-card:hover {
  transform: translateY(-4px);
}

.pl-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 6px;
  background: var(--gold-bg);
  color: var(--gold);
  display: grid;
  place-items: center;
}

.pl-icon.small {
  width: 48px;
  height: 48px;
  margin: 0 0 18px;
}

/* Material Icons Integration */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 28;
}

/* Service Cards */
.pl-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.pl-service-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: 0.3s;
}

.pl-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pl-service-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pl-service-body {
  padding: 26px;
}

.pl-service-body p {
  color: var(--muted);
  min-height: 70px;
}

.pl-service-body > a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* Quotes */
.pl-quote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface2);
  text-align: left;
}

.pl-quote p {
  font-size: 18px;
  color: var(--muted);
}

/* Team Cards */
.pl-team-card {
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
}

.pl-team-card:hover {
  background: var(--surface3);
}

.pl-team-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 22px;
  border: 4px solid var(--gold-bg);
}

/* Call to Action (CTA) */
.pl-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--gold-bg), var(--surface));
}

.pl-cta h2 {
  font: 800 clamp(34px, 5vw, 52px)/1.1 'Manrope', sans-serif;
  margin: 14px 0;
}

/* Contact Component */
.pl-contact-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  gap: 24px;
}

.pl-contact-card div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pl-contact-card .material-symbols-outlined {
  color: var(--gold);
}

/* Form Styles */
.pl-form {
  max-width: 850px;
  margin: 35px auto 0;
}

.pl-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pl-form label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 20px;
}

.pl-form input,
.pl-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  font: inherit;
}

.pl-form input:focus,
.pl-form textarea:focus {
  outline: 1px solid var(--gold);
}

.pl-form-message {
  margin-top: 15px;
  color: var(--gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.pl-footer {
  border-top: 1px solid var(--border);
  padding-top: 60px;
  background: var(--surface);
}

.pl-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.pl-footer p,
.pl-footer li {
  color: var(--muted);
}

.pl-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pl-footer h4 {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.pl-footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 26px;
  color: var(--muted);
  font-size: 13px;
}

/* =========================================
   SOCIAL MEDIA ICONS
   ========================================= */

.pl-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.pl-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

/* Facebook */
.pl-social a:nth-child(1) {
    color: #1877F2;
}

/* LinkedIn */
.pl-social a:nth-child(2) {
    color: #0A66C2;
}

/* Instagram */
.pl-social a:nth-child(3) {
    color: #E4405F;
}

/* WhatsApp */
.pl-social a:nth-child(4) {
    color: #25D366;
}


/* Icon sizing */
.pl-social svg {
    width: 18px;
    height: 18px;
    display: block;
}


/* SVG icons that use fills */
.pl-social a:nth-child(1) svg,
.pl-social a:nth-child(2) svg,
.pl-social a:nth-child(4) svg {
    fill: currentColor;
}


/* Instagram uses strokes */
.pl-social a:nth-child(3) svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}


/* Instagram camera dot */
.pl-social a:nth-child(3) svg circle:last-child {
    fill: currentColor;
    stroke: none;
}


/* Hover effect */
.pl-social a:hover {
    transform: translateY(-3px);
    border-color: currentColor;
    background-color: rgba(255, 255, 255, 0.06);
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.pl-page-hero {
    padding: 70px 0 80px;
}

.pl-page-hero .pl-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Contact intro */
.pl-page-hero h1 {
    margin: 10px 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.pl-page-hero .pl-lead {
    max-width: 560px;
    margin-bottom: 30px;
}

/* Contact information card */
.pl-contact-card {
    padding: 32px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.02);
}

.pl-contact-card > div {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 60px;
}

.pl-contact-card > div + div {
    margin-top: 10px;
}

.pl-contact-card .material-symbols-outlined {
    width: 28px;
    color: #f6c344;
    font-size: 27px;
    flex-shrink: 0;
}

.pl-contact-card strong {
    color: #f1f3f7;
    font-size: 15px;
    font-weight: 600;
    word-break: break-word;
}


/* =========================================================
   CONSULTATION SECTION
   ========================================================= */

.pl-section-muted {
    background: rgba(255,255,255,.025);
}

.pl-section-muted > .pl-container {
    padding-top: 75px;
    padding-bottom: 80px;
}

.pl-section-muted .center {
    text-align: center;
    margin-bottom: 42px;
}

.pl-section-muted h2 {
    margin-bottom: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
}

.pl-section-muted .pl-lead {
    margin: 0 auto;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.pl-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.pl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-bottom: 18px;
}

.pl-form label {
    display: block;
    color: #e8ebf2;
    font-size: 14px;
    font-weight: 600;
}

.pl-form input,
.pl-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    background: #182347;
    color: #ffffff;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.pl-form input {
    height: 52px;
}

.pl-form textarea {
    min-height: 145px;
    resize: vertical;
}

.pl-form input::placeholder,
.pl-form textarea::placeholder {
    color: rgba(255,255,255,.55);
}

.pl-form input:focus,
.pl-form textarea:focus {
    border-color: #f6c344;
    box-shadow: 0 0 0 2px rgba(246,195,68,.10);
    background: #1b274e;
}


/* Date input */
.pl-form input[type="date"] {
    color-scheme: dark;
}


/* Submit button */
.pl-form .pl-btn {
    margin-top: 28px;
    padding: 15px 28px;
    border: none;
    border-radius: 5px;
    background: #f6c344;
    color: #111827;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    cursor: pointer;
    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.pl-form .pl-btn:hover {
    background: #ffd15d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246,195,68,.15);
}


/* Form response message */
.pl-form-message {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .pl-page-hero {
        padding: 55px 0 65px;
    }

    .pl-page-hero .pl-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pl-page-hero h1 {
        font-size: 48px;
    }

    .pl-contact-card {
        max-width: 650px;
    }

    .pl-section-muted > .pl-container {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .pl-section-muted h2 {
        font-size: 34px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .pl-page-hero {
        padding: 45px 0 55px;
    }

    .pl-page-hero .pl-two-col {
        gap: 30px;
    }

    .pl-page-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .pl-page-hero .pl-lead {
        font-size: 16px;
        line-height: 1.65;
    }

    .pl-contact-card {
        padding: 22px;
        border-radius: 12px;
    }

    .pl-contact-card > div {
        align-items: flex-start;
        gap: 14px;
    }

    .pl-contact-card strong {
        font-size: 14px;
    }

    .pl-section-muted > .pl-container {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .pl-section-muted .center {
        margin-bottom: 32px;
    }

    .pl-section-muted h2 {
        font-size: 30px;
    }

    .pl-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pl-form input {
        height: 50px;
    }

    .pl-form textarea {
        min-height: 130px;
    }

    .pl-form .pl-btn {
        width: 100%;
        margin-top: 24px;
    }

}

/******************************************************************************/



/* =========================================================
   CONTACT PAGE — FORM, FAQ & ENGAGEMENT
   ========================================================= */


/* =========================================================
   1. CONSULTATION / FORM SECTION
   ========================================================= */

#consultation {
    padding: 105px 0 115px;
    background: #101a3a;
}

#consultation > .pl-container {
    max-width: 1120px;
    margin: 0 auto;
}

#consultation .center {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

#consultation .center h2 {
    margin: 0 0 18px;
    font-family: "Manrope", sans-serif;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
}

#consultation .center .pl-lead {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.75;
}


/* FORM CARD */

#consultation .pl-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: #172344;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}


/* TWO COLUMN FORM */

#consultation .pl-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 22px;
    margin-bottom: 25px;
}


/* LABELS */

#consultation .pl-form label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}


/* INPUTS */

#consultation .pl-form input,
#consultation .pl-form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 7px;
    outline: none;
    background: #101a3a;
    color: #ffffff;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

#consultation .pl-form input {
    height: 54px;
    padding: 0 16px;
}

#consultation .pl-form textarea {
    min-height: 165px;
    padding: 15px 16px;
    resize: vertical;
}


/* INPUT FOCUS */

#consultation .pl-form input:focus,
#consultation .pl-form textarea:focus {
    border-color: #d9ad42;
    box-shadow: 0 0 0 3px rgba(217,173,66,.09);
}


/* DATE FIELD */

#consultation .pl-form input[type="date"] {
    color-scheme: dark;
}


/* SUBMIT BUTTON */

#consultation .pl-form .pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 28px;
    padding: 0 28px;
    border: 0;
    border-radius: 5px;
    background: #d9ad42;
    color: #111a35;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    cursor: pointer;
    transition: all .2s ease;
}

#consultation .pl-form .pl-btn:hover {
    background: #e9c15a;
    transform: translateY(-1px);
}


/* FORM MESSAGE */

#consultation .pl-form-message {
    margin-top: 18px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   2. FAQ SECTION
   ========================================================= */

.pl-section:has(.pl-faq) {
    padding: 110px 0;
    background: #0d1633;
}

.pl-section:has(.pl-faq) > .pl-container {
    max-width: 1120px;
    margin: 0 auto;
}


/* LEFT SIDE */

.pl-section:has(.pl-faq) .pl-two-col {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 95px;
    align-items: start;
}


/* FAQ ICON */

.pl-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(217,173,66,.12);
    color: #d9ad42;
    font-size: 27px;
}


/* FAQ TITLE */

.pl-section:has(.pl-faq) h2 {
    max-width: 470px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 35px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.6px;
    color: #ffffff;
}


/* FAQ LIST */

.pl-faq {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.12);
}


/* INDIVIDUAL FAQ */

.pl-faq details {
    border-bottom: 1px solid rgba(255,255,255,.12);
}


/* QUESTION */

.pl-faq summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 0 55px 0 0;
    color: #ffffff;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
}


/* REMOVE DEFAULT MARKER */

.pl-faq summary::-webkit-details-marker {
    display: none;
}

.pl-faq summary::marker {
    display: none;
}


/* PLUS / MINUS ICON */

.pl-faq summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #d9ad42;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
}

.pl-faq details[open] summary::after {
    content: "−";
}


/* ANSWER */

.pl-faq-answer {
    max-width: 680px;
    padding: 0 45px 28px 0;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   3. ENGAGEMENT / LET'S GET STARTED
   ========================================================= */

.pl-engagement-section {
    padding: 110px 0 120px;
    background: #101a3a;
}

.pl-engagement-section > .pl-container {
    max-width: 1120px;
    margin: 0 auto;
}


/* HEADING */

.pl-engagement-section .center {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.pl-engagement-section .pl-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #d9ad42;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pl-engagement-section h2 {
    margin: 0 0 18px;
    font-family: "Manrope", sans-serif;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
}

.pl-engagement-section .pl-lead {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,.67);
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   ENGAGEMENT CARDS
   ========================================================= */

.pl-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


.pl-engagement-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 32px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    background: #172344;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}


.pl-engagement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217,173,66,.35);
    box-shadow: 0 18px 45px rgba(0,0,0,.20);
}


/* CARD ICON */

.pl-engagement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 25px;
    border-radius: 9px;
    background: rgba(217,173,66,.11);
}

.pl-engagement-icon .material-symbols-outlined {
    color: #d9ad42;
    font-size: 27px;
}


/* CARD DESCRIPTION */

.pl-engagement-card p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 15px;
    line-height: 1.7;
}


/* CARD LINK */

.pl-engagement-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 28px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    text-decoration: none;
    transition: color .2s ease;
}

.pl-engagement-card a:hover {
    color: #d9ad42;
}

.pl-engagement-card a .material-symbols-outlined {
    font-size: 18px;
    transition: transform .2s ease;
}

.pl-engagement-card a:hover .material-symbols-outlined {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    #consultation {
        padding: 80px 0 90px;
    }

    #consultation .center h2,
    .pl-engagement-section h2 {
        font-size: 40px;
    }

    .pl-section:has(.pl-faq) {
        padding: 85px 0;
    }

    .pl-section:has(.pl-faq) .pl-two-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pl-section:has(.pl-faq) h2 {
        max-width: 650px;
    }

    .pl-engagement-section {
        padding: 85px 0 95px;
    }

    .pl-engagement-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    #consultation {
        padding: 65px 0 75px;
    }

    #consultation .center {
        margin-bottom: 35px;
    }

    #consultation .center h2,
    .pl-engagement-section h2 {
        font-size: 32px;
        letter-spacing: -.5px;
    }

    #consultation .center .pl-lead,
    .pl-engagement-section .pl-lead {
        font-size: 15px;
    }

    #consultation .pl-form {
        padding: 25px 20px;
        border-radius: 12px;
    }

    #consultation .pl-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    #consultation .pl-form input {
        height: 51px;
    }

    #consultation .pl-form textarea {
        min-height: 130px;
    }

    #consultation .pl-form .pl-btn {
        width: 100%;
    }


    /* FAQ */

    .pl-section:has(.pl-faq) {
        padding: 70px 0;
    }

    .pl-section:has(.pl-faq) .pl-two-col {
        gap: 38px;
    }

    .pl-faq-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 20px;
    }

    .pl-section:has(.pl-faq) h2 {
        font-size: 28px;
    }

    .pl-faq summary {
        min-height: 70px;
        font-size: 15px;
    }

    .pl-faq-answer {
        padding-bottom: 23px;
        font-size: 14px;
    }


    /* ENGAGEMENT */

    .pl-engagement-section {
        padding: 70px 0 80px;
    }

    .pl-engagement-section .center {
        margin-bottom: 38px;
    }

    .pl-engagement-grid {
        gap: 16px;
    }

    .pl-engagement-card {
        min-height: 240px;
        padding: 25px;
    }

}


/* =========================================================
   CONTACT PAGE — FINAL VISUAL REFINEMENT
   HERO IMAGE
   ========================================================= */

.pl-contact-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 18px;
    background: #172344;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .22);
}

.pl-contact-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   HERO IMAGE OVERLAY
   ========================================================= */

.pl-contact-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(13, 22, 51, 0) 55%,
        rgba(13, 22, 51, .20) 100%
    );
}


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

.pl-page-hero .pl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 27px;
    border-radius: 5px;
    background: #d9ad42;
    color: #111a35;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-decoration: none;
    transition: all .2s ease;
}

.pl-page-hero .pl-btn:hover {
    background: #e9c15a;
    transform: translateY(-2px);
}


/* =========================================================
   CONTACT HERO TEXT REFINEMENT
   ========================================================= */

.pl-page-hero .pl-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #d9ad42;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pl-page-hero h1 {
    max-width: 650px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.pl-page-hero .pl-lead {
    max-width: 570px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT HERO RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .pl-page-hero .pl-two-col {
        gap: 50px;
    }

    .pl-contact-hero-image {
        height: 440px;
    }

    .pl-page-hero h1 {
        font-size: 50px;
    }

}


@media (max-width: 900px) {

    .pl-page-hero .pl-two-col {
        grid-template-columns: 1fr;
    }

    .pl-contact-hero-image {
        height: 430px;
        max-width: 700px;
    }

}


@media (max-width: 600px) {

    .pl-contact-hero-image {
        height: 300px;
        border-radius: 13px;
    }

    .pl-page-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .pl-page-hero .pl-lead {
        font-size: 15px;
        line-height: 1.65;
    }

}


/* =========================================
   CONTACT PAGE HERO IMAGE
   ========================================= */

.pl-page-hero .pl-two-col {
    align-items: center;
}

.pl-page-hero .pl-two-col > div:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.pl-page-hero .pl-two-col > div:last-child img {
    display: block;
    width: 100%;
    max-width: 550px;
    height: 460px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}


/* Contact page hero-image */
.pl-contact-hero-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.pl-contact-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

/* Zoom on hover */
.pl-contact-hero-image:hover img {
    transform: scale(1.10);
}



/*****************************************************************************/

/* =========================================
   CONTACT FORM
   ========================================= */

.pl-form {
    max-width: 900px;
    margin: 40px auto 0;
}

/* Two-column layout */
.pl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* =========================================
   INPUT WRAPPERS
   ========================================= */

.pl-input-wrap,
.pl-textarea-wrap {
    position: relative;
    display: block;
    margin: 0;
}

/* Material icons inside fields */

.pl-input-wrap .material-symbols-outlined,
.pl-textarea-wrap .material-symbols-outlined {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 19px;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

/* =========================================
   INPUTS
   ========================================= */

.pl-input-wrap input {
    width: 100%;
    height: 52px;
    box-sizing: border-box;

    padding: 0 16px 0 43px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.025);

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

/* Placeholder */

.pl-input-wrap input::placeholder,
.pl-textarea-wrap textarea::placeholder {
    opacity: 1;
}

/* Focus */

.pl-input-wrap input:focus,
.pl-textarea-wrap textarea:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.025);
}

/* =========================================
   TEXTAREA
   ========================================= */

.pl-textarea-wrap {
    margin-top: 14px;
}

.pl-textarea-wrap .material-symbols-outlined {
    top: 20px;
    transform: none;
}

.pl-textarea-wrap textarea {
    width: 100%;
    min-height: 130px;
    box-sizing: border-box;

    padding: 15px 16px 15px 43px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.025);

    font-family: inherit;
    font-size: 14px;

    resize: vertical;
    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

/* =========================================
   BUTTON
   ========================================= */

.pl-form .pl-btn {
    margin-top: 22px;
}

/* =========================================
   FORM MESSAGE
   ========================================= */

.pl-form-message {
    margin-top: 15px;
    font-size: 14px;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .pl-form-grid {
        grid-template-columns: 1fr;
    }

    .pl-contact-hero-image {
        height: 360px;
    }
}

/*************************Corrected form styling***************************/

/* =========================================================
   CONTACT FORM - REFERENCE DESIGN
   ========================================================= */

.pl-form {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
}

/* ---------------------------------------------------------
   TWO COLUMN INPUT GRID
   --------------------------------------------------------- */

.pl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

/* ---------------------------------------------------------
   INPUT WRAPPER
   --------------------------------------------------------- */

.pl-input-wrap {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ---------------------------------------------------------
   ICONS INSIDE INPUTS
   --------------------------------------------------------- */

.pl-input-wrap .material-symbols-outlined {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 22px;
    line-height: 1;

    color: #c9ccda;

    pointer-events: none;
    z-index: 2;
    padding-right: 30px;
}

/* ---------------------------------------------------------
   TEXT INPUTS
   --------------------------------------------------------- */

.pl-input-wrap input {
    width: 100%;
    height: 58px;
    box-sizing: border-box;

    margin: 0;
    padding: 0 18px 0 48px;

    border: 1px solid #30395e;
    border-radius: 8px;

    background: #171f43;

    color: #c9ccda;

    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 58px;

    outline: none;

    box-shadow: none;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease;
}

/* ---------------------------------------------------------
   PLACEHOLDER TEXT
   --------------------------------------------------------- */

.pl-input-wrap input::placeholder {
    color: #c9ccda;
    opacity: 1;

    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* ---------------------------------------------------------
   INPUT FOCUS
   --------------------------------------------------------- */

.pl-input-wrap input:focus {
    border-color: #465078;
    background: #192247;
    box-shadow: none;
}

/* ---------------------------------------------------------
   TEXTAREA
   --------------------------------------------------------- */

.pl-textarea-wrap {
    position: relative;
    display: block;

    width: 100%;

    margin: 16px 0 0;
    padding: 0;
}

/* Textarea icon */

.pl-textarea-wrap .material-symbols-outlined {
    position: absolute;

    left: 17px;
    top: 18px;

    font-size: 21px;
    line-height: 1;

    color: #c9ccda;

    pointer-events: none;
    z-index: 2;
}

/* Textarea itself */

.pl-textarea-wrap textarea {
    width: 100%;
    min-height: 154px;

    box-sizing: border-box;

    margin: 0;

    padding: 17px 18px 17px 48px;

    border: 1px solid #30395e;
    border-radius: 8px;

    background: #171f43;

    color: #c9ccda;

    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.5;

    resize: vertical;

    outline: none;

    box-shadow: none;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease;
}

/* Textarea placeholder */

.pl-textarea-wrap textarea::placeholder {
    color: #c9ccda;
    opacity: 1;

    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Textarea focus */

.pl-textarea-wrap textarea:focus {
    border-color: #465078;
    background: #192247;
    box-shadow: none;
}

/* ---------------------------------------------------------
   DATE INPUT
   --------------------------------------------------------- */

.pl-input-wrap input[type="date"] {
    padding-left: 48px;
    padding-right: 42px;
}

/* Keep calendar icon on the right */

.pl-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.9;
}

/* ---------------------------------------------------------
   BOOK APPOINTMENT BUTTON
   --------------------------------------------------------- */

.pl-form .pl-btn {
    display: block;

    width: 255px;
    height: 46px;

    margin: 39px auto 0;

    padding: 0 25px;

    border: none;
    border-radius: 6px;

    background: #f5c343;
    color: #171717;

    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.4px;

    text-align: center;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        transform 0.2s ease;
}

.pl-form .pl-btn:hover {
    background: #ffd05a;
    transform: translateY(-1px);
}

.pl-form .pl-btn:active {
    transform: translateY(0);
}

/* ---------------------------------------------------------
   FORM RESPONSE MESSAGE
   --------------------------------------------------------- */

.pl-form-message {
    margin-top: 16px;

    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;

    text-align: center;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .pl-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pl-input-wrap input {
        height: 56px;
    }

    .pl-textarea-wrap {
        margin-top: 14px;
    }

    .pl-form .pl-btn {
        width: 100%;
        max-width: 255px;
    }
}

/************************************************************************/

/* =========================================================
   CONTACT FORM - EXACT ICON / PLACEHOLDER POSITIONING
   ========================================================= */

/* Input wrapper */
.pl-form .pl-input-wrap {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Icon position */
.pl-form .pl-input-wrap > .material-symbols-outlined {
    position: absolute !important;

    left: 18px !important;
    top: 50% !important;

    width: 22px !important;
    height: 22px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateY(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 21px !important;
    line-height: 1 !important;

    color: #c9ccda !important;

    pointer-events: none !important;
    z-index: 10 !important;
}

/* Input itself */
.pl-form .pl-input-wrap > input {
    width: 100% !important;
    height: 58px !important;

    box-sizing: border-box !important;

    /* THIS controls where the cursor and placeholder begin */
    padding-top: 0 !important;
    padding-right: 18px !important;
    padding-bottom: 0 !important;
    padding-left: 48px !important;

    margin: 0 !important;

    border: 1px solid #30395e !important;
    border-radius: 8px !important;

    background: #171f43 !important;

    color: #c9ccda !important;

    font-family: "Hanken Grotesk", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;

    line-height: 58px !important;

    outline: none !important;
}

/* Placeholder position */
.pl-form .pl-input-wrap > input::placeholder {
    color: #c9ccda !important;
    opacity: 1 !important;

    font-family: "Hanken Grotesk", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

/* Focused input */
.pl-form .pl-input-wrap > input:focus {
    border-color: #f5c343 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* =========================================================
   DATE FIELD
   ========================================================= */

.pl-form .pl-input-wrap > input[type="date"] {
    padding-left: 48px !important;
    padding-right: 42px !important;
}

/* Calendar button remains on the far right */
.pl-form .pl-input-wrap > input[type="date"]::-webkit-calendar-picker-indicator {
    margin-right: 0 !important;
    cursor: pointer !important;
}

/* =========================================================
   TEXTAREA
   ========================================================= */

.pl-form .pl-textarea-wrap {
    width: 100% !important;
    margin-top: 16px !important;
}

.pl-form .pl-textarea-wrap > textarea {
    width: 100% !important;
    min-height: 154px !important;

    box-sizing: border-box !important;

    /* No icon in the textarea, so text starts normally */
    padding: 17px 16px !important;

    margin: 0 !important;

    border: 1px solid #30395e !important;
    border-radius: 8px !important;

    background: #171f43 !important;

    color: #c9ccda !important;

    font-family: "Hanken Grotesk", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;

    line-height: 1.5 !important;

    outline: none !important;
}

.pl-form .pl-textarea-wrap > textarea::placeholder {
    color: #c9ccda !important;
    opacity: 1 !important;

    font-family: "Hanken Grotesk", sans-serif !important;
    font-size: 16px !important;
}

/* =========================================================
   FORM GRID
   ========================================================= */

.pl-form .pl-form-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 16px !important;
    row-gap: 16px !important;
}

/* =========================================================
   BUTTON
   ========================================================= */

.pl-form .pl-btn {
    display: block !important;

    width: 255px !important;
    height: 46px !important;

    margin: 39px auto 0 !important;

    border: none !important;
    border-radius: 6px !important;

    background: #f5c343 !important;
    color: #171717 !important;

    font-family: "Hanken Grotesk", sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 1.4px !important;

    cursor: pointer !important;
}

/************************About-Us*******************************************/

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.pl-about-page {
    overflow: hidden;
}


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

.pl-about-hero {
    padding: 70px 0 72px;
    background: #111936;
}

.pl-about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.pl-about-hero-content {
    max-width: 520px;
}

.pl-about-hero-content h1 {
    margin: 10px 0 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
}

.pl-about-hero-content .pl-lead {
    max-width: 500px;
    margin-bottom: 28px;
}


/* Hero image */

.pl-about-hero-image {
    width: 100%;
}

.pl-about-image-frame {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 14px;
}

.pl-about-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

/* Zoom on hover */

.pl-about-image-frame:hover img {
    transform: scale(1.06);
}


/* Placeholder */

.pl-about-image-placeholder {
    width: 100%;
    height: 350px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px dashed #3a456d;
    border-radius: 14px;

    color: #aeb5ca;

    text-align: center;
}

.pl-about-image-placeholder .material-symbols-outlined {
    font-size: 42px;
    color: #f5c343;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.pl-about-section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.pl-about-section-heading h2 {
    margin: 0 0 12px;

    font-family: "Manrope", sans-serif;
    font-size: 38px;
    font-weight: 700;
}

.pl-about-section-heading p {
    margin: 0;
}


/* =========================================================
   TEAM
   ========================================================= */

.pl-about-team {
    background: #151e3d;
    padding-top: 75px;
    padding-bottom: 80px;
}

.pl-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.pl-team-card {
    text-align: center;
}

.pl-team-photo {
    width: 142px;
    height: 142px;

    margin: 0 auto 20px;

    overflow: hidden;

    border: 2px solid #263d76;
    border-radius: 50%;

    background: #1b2549;
}

.pl-team-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.pl-team-photo-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-team-photo-placeholder .material-symbols-outlined {
    font-size: 55px;
    color: #aeb5ca;
}

.pl-team-card h3 {
    margin: 0 0 3px;

    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.pl-team-role {
    display: block;

    margin-bottom: 12px;

    color: #f5c343;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pl-team-description {
    max-width: 220px;

    margin: 0 auto;

    color: #b9bfd1;

    font-size: 13px;
    line-height: 1.7;
}

.pl-team-description p {
    margin: 0;
}

.pl-team-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 17px;
}

.pl-team-links a,
.pl-team-links button {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    background: transparent;

    color: #c6cad8;

    cursor: pointer;

    text-decoration: none;
}

.pl-team-links .material-symbols-outlined {
    font-size: 18px;
}

.pl-team-links a:hover,
.pl-team-links button:hover {
    color: #f5c343;
}


/* =========================================================
   CORE COMPETENCIES
   ========================================================= */

.pl-about-competencies {
    background: #111936;
    padding-top: 70px;
    padding-bottom: 70px;
}

.pl-competencies-box {
    padding: 52px 55px;

    border: 1px solid #29355c;
    border-radius: 12px;

    background: #171f43;
}

.pl-competencies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    margin-top: 20px;
}

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

.pl-competency-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border: 1px solid #33416d;
    border-radius: 50%;

    color: #f5c343;
}

.pl-competency-icon .material-symbols-outlined {
    font-size: 20px;
}

.pl-competency h3 {
    margin: 0;

    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   ENGAGEMENT
   ========================================================= */

.pl-about-engagement {
    background: #111936;

    padding-top: 75px;
    padding-bottom: 80px;
}

.pl-about-engagement .pl-about-section-heading {
    margin-bottom: 45px;
}

.pl-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pl-engagement-card {
    min-height: 235px;

    padding: 28px 25px;

    border: 1px solid #29355c;
    border-radius: 7px;

    background: #222f62;

    display: flex;
    flex-direction: column;
}

.pl-engagement-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #111936;

    color: #dce0eb;
}

.pl-engagement-icon .material-symbols-outlined {
    font-size: 18px;
}

.pl-engagement-card h3 {
    margin: 0 0 12px;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
}

.pl-engagement-card p {
    margin: 0;

    color: #c1c6d5;

    font-size: 13px;
    line-height: 1.7;
}

.pl-engagement-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    margin-top: auto;
    padding-top: 22px;

    color: #f5c343;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;
}

.pl-engagement-card a:hover {
    color: #ffd766;
}

.pl-engagement-card a .material-symbols-outlined {
    font-size: 17px;
}


/* =========================================================
   EMPTY TEAM MESSAGE
   ========================================================= */

.pl-empty-message {
    grid-column: 1 / -1;

    text-align: center;

    color: #aeb5ca;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .pl-about-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .pl-team-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .pl-competencies-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .pl-engagement-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .pl-about-hero {
        padding: 55px 0;
    }

    .pl-about-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pl-about-hero-content {
        max-width: none;
    }

    .pl-about-image-frame,
    .pl-about-image-placeholder {
        height: 280px;
    }

    .pl-about-section-heading h2 {
        font-size: 30px;
    }

    .pl-team-grid {
        grid-template-columns: 1fr;
        row-gap: 45px;
    }

    .pl-competencies-box {
        padding: 40px 20px;
    }

    .pl-competencies-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 15px;
    }

    .pl-engagement-grid {
        grid-template-columns: 1fr;
    }

}

/*******************NEW CSS RULE ADDED 13:48 31-08-2026***********************/

/* =========================================================
   ABOUT US — FINAL VISUAL OVERRIDES
   Added after all existing theme styles so these rules
   take priority without disturbing other pages.
   ========================================================= */


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

.pl-about-hero {
    padding: 72px 0 78px;
    overflow: hidden;
}

.pl-about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 64px;
}

.pl-about-hero-content {
    max-width: 540px;
}

.pl-about-hero-content .pl-kicker {
    margin-bottom: 14px;
}

.pl-about-hero-content h1 {
    margin: 0 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.pl-about-hero-content .pl-lead {
    max-width: 510px;
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.68);
}


/* =========================================================
   ABOUT HERO IMAGE
   ========================================================= */

.pl-about-hero-image {
    width: 100%;
    overflow: hidden;
}

.pl-about-image-frame {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: #182347;
}

.pl-about-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s cubic-bezier(.2,.65,.25,1);
    will-change: transform;
}


/* Image zoom when mouse hovers */

.pl-about-image-frame:hover img {
    transform: scale(1.07);
}


/* Image placeholder */

.pl-about-image-placeholder {
    width: 100%;
    height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px;
    border: 1px dashed #3a456d;
    border-radius: 12px;
    background: #182347;
    color: #aeb5ca;
    text-align: center;
}

.pl-about-image-placeholder .material-symbols-outlined {
    font-size: 42px;
    color: #f5c343;
}


/* =========================================================
   ABOUT SECTION HEADINGS
   ========================================================= */

.pl-about-section-heading {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pl-about-section-heading h2 {
    margin: 0 0 14px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.pl-about-section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   TEAM SECTION
   ========================================================= */

.pl-about-team {
    padding: 82px 0 88px;
}

.pl-about-team .pl-about-section-heading {
    margin-bottom: 52px;
}

.pl-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.pl-team-card {
    padding: 24px 16px;
    text-align: center;
    border-radius: 12px;
    transition:
        transform .25s ease,
        background-color .25s ease;
}

.pl-team-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.025);
}

.pl-team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #293967;
    border-radius: 50%;
    background: #1b2549;
}

.pl-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.pl-team-card:hover .pl-team-photo img {
    transform: scale(1.05);
}

.pl-team-card h3 {
    margin: 0 0 5px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.pl-team-role {
    margin-bottom: 13px;
    color: #f5c343;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pl-team-description {
    max-width: 235px;
    margin: 0 auto;
    color: #b9bfd1;
    font-size: 13px;
    line-height: 1.7;
}

.pl-team-description p {
    margin: 0;
}

.pl-team-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 17px;
}

.pl-team-links a,
.pl-team-links button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    background: transparent;
    color: #c6cad8;
    cursor: pointer;
    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease;
}

.pl-team-links a:hover,
.pl-team-links button:hover {
    color: #f5c343;
    border-color: rgba(245,195,67,.45);
    background: rgba(245,195,67,.06);
}

.pl-team-links .material-symbols-outlined {
    font-size: 16px;
}


/* =========================================================
   CORE COMPETENCIES
   ========================================================= */

.pl-about-competencies {
    padding: 78px 0;
}

.pl-competencies-box {
    padding: 58px 50px;
    border: 1px solid #29355c;
    border-radius: 14px;
    background: #171f43;
}

.pl-competencies-box .pl-about-section-heading {
    margin-bottom: 48px;
}

.pl-competencies-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    margin-top: 0;
}

.pl-competency {
    min-width: 0;
    padding: 10px;
    text-align: center;
}

.pl-competency-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    border: 1px solid #394875;
    border-radius: 50%;
    background: rgba(245,195,67,.04);
    color: #f5c343;
    transition:
        transform .25s ease,
        background-color .25s ease;
}

.pl-competency:hover .pl-competency-icon {
    transform: translateY(-3px);
    background: rgba(245,195,67,.1);
}

.pl-competency-icon .material-symbols-outlined {
    font-size: 23px;
}

.pl-competency h3 {
    margin: 0;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================================================
   ENGAGEMENT SECTION
   ========================================================= */

.pl-about-engagement {
    padding: 82px 0 90px;
}

.pl-about-engagement .pl-about-section-heading {
    margin-bottom: 48px;
}

.pl-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pl-engagement-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    background: #172344;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.pl-engagement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245,195,67,.35);
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

.pl-engagement-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border-radius: 9px;
    background: rgba(245,195,67,.1);
    color: #f5c343;
}

.pl-engagement-icon .material-symbols-outlined {
    font-size: 26px;
}

.pl-engagement-card h3 {
    margin: 0 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.pl-engagement-card p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.7;
}

.pl-engagement-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 25px;
    color: #f5c343;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color .2s ease;
}

.pl-engagement-card a:hover {
    color: #ffd766;
}

.pl-engagement-card a .material-symbols-outlined {
    font-size: 17px;
    transition: transform .2s ease;
}

.pl-engagement-card a:hover .material-symbols-outlined {
    transform: translateX(4px);
}


/* =========================================================
   ABOUT PAGE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .pl-about-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .pl-about-hero-content h1 {
        font-size: 46px;
    }

    .pl-about-image-frame,
    .pl-about-image-placeholder {
        height: 330px;
    }

    .pl-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 25px;
    }

    .pl-competencies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 20px;
    }

    .pl-engagement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pl-engagement-card:last-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   ABOUT PAGE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .pl-about-hero {
        padding: 55px 0 65px;
    }

    .pl-about-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .pl-about-hero-content {
        max-width: none;
    }

    .pl-about-hero-content h1 {
        font-size: 40px;
    }

    .pl-about-hero-content .pl-lead {
        font-size: 16px;
    }

    .pl-about-image-frame,
    .pl-about-image-placeholder {
        height: 280px;
    }

    .pl-about-team {
        padding: 65px 0 70px;
    }

    .pl-about-section-heading {
        margin-bottom: 38px;
    }

    .pl-about-section-heading h2 {
        font-size: 30px;
    }

    .pl-about-section-heading p {
        font-size: 15px;
    }

    .pl-team-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .pl-team-photo {
        width: 140px;
        height: 140px;
    }

    .pl-about-competencies {
        padding: 60px 0;
    }

    .pl-competencies-box {
        padding: 42px 18px;
    }

    .pl-competencies-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 12px;
    }

    .pl-about-engagement {
        padding: 65px 0 70px;
    }

    .pl-engagement-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pl-engagement-card:last-child {
        grid-column: auto;
    }

    .pl-engagement-card {
        min-height: 245px;
        padding: 27px 24px;
    }

}


/* =========================================================
   ABOUT PAGE — SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .pl-container {
        width: min(var(--max), calc(100% - 32px));
    }

    .pl-about-hero-content h1 {
        font-size: 36px;
    }

    .pl-about-image-frame,
    .pl-about-image-placeholder {
        height: 240px;
    }

    .pl-competencies-grid {
        gap: 30px 8px;
    }

    .pl-competency h3 {
        font-size: 14px;
    }

}

/* =========================================================
   CONTACT FORM — MOBILE RESPONSIVE FIX
   ========================================================= */

@media (max-width: 600px) {

    /* Keep the form inside the phone viewport */
    .pl-form {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* One field per row */
    .pl-form-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        width: 100%;
        margin: 0 0 16px;
    }

    /* Prevent labels from creating overflow */
    .pl-form label {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Input wrapper */
    .pl-form .pl-input-wrap {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Inputs */
    .pl-form .pl-input-wrap > input {
        width: 100% !important;
        max-width: 100% !important;
        height: 54px !important;

        box-sizing: border-box !important;

        padding-left: 48px !important;
        padding-right: 14px !important;

        font-size: 15px !important;
    }

    /* Keep icon correctly positioned */
    .pl-form .pl-input-wrap > .material-symbols-outlined {
        left: 16px !important;
        width: 21px !important;
        height: 21px !important;
        font-size: 20px !important;
    }

    /* Placeholder */
    .pl-form .pl-input-wrap > input::placeholder {
        font-size: 15px !important;
    }

    /* Textarea wrapper */
    .pl-form .pl-textarea-wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 16px !important;
        box-sizing: border-box !important;
    }

    /* Textarea */
    .pl-form .pl-textarea-wrap textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 150px !important;

        box-sizing: border-box !important;

        padding: 16px 14px 16px 48px !important;

        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    /* Textarea icon */
    .pl-form .pl-textarea-wrap .material-symbols-outlined {
        left: 16px !important;
        top: 17px !important;
        font-size: 20px !important;
    }

    /* Date field */
    .pl-form .pl-input-wrap > input[type="date"] {
        padding-left: 48px !important;
        padding-right: 38px !important;
    }

    /* Submit button */
    .pl-form .pl-btn {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        height: 50px;

        margin: 30px 0 0;

        box-sizing: border-box;

        padding: 0 18px;

        font-size: 12px;
        letter-spacing: 1px;
    }

    /* Response message */
    .pl-form-message {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;

        margin-top: 15px;
        padding: 0 5px;

        font-size: 13px;
        line-height: 1.5;
        text-align: center;
        overflow-wrap: anywhere;
    }

}

/* =========================================================
   CONTACT FORM — FINAL MOBILE FIX
   ========================================================= */

@media (max-width: 600px) {

    /* Form container */
    .pl-form {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* FORCE ONE COLUMN ON MOBILE */
    .pl-form .pl-form-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        column-gap: 0 !important;
        row-gap: 16px !important;
        box-sizing: border-box !important;
    }

    /* Each form field */
    .pl-form .pl-form-grid > label {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    /* Input wrapper */
    .pl-form .pl-input-wrap {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    /* Inputs */
    .pl-form .pl-input-wrap > input {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 54px !important;

        box-sizing: border-box !important;

        padding-left: 48px !important;
        padding-right: 14px !important;

        font-size: 15px !important;
        line-height: normal !important;
    }

    /* Input icons */
    .pl-form .pl-input-wrap > .material-symbols-outlined {
        left: 16px !important;
        width: 21px !important;
        height: 21px !important;
        font-size: 20px !important;
    }

    /* Date field */
    .pl-form .pl-input-wrap > input[type="date"] {
        padding-left: 48px !important;
        padding-right: 38px !important;
    }

    /* Textarea */
    .pl-form .pl-textarea-wrap {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-top: 16px !important;
    }

    .pl-form .pl-textarea-wrap > textarea {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 150px !important;

        box-sizing: border-box !important;

        padding: 16px !important;

        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    /* Button */
    .pl-form .pl-btn {
        display: block !important;
        width: 100% !important;
        max-width: 255px !important;
        height: 50px !important;

        margin: 30px auto 0 !important;

        box-sizing: border-box !important;
    }

    /* Response message */
    .pl-form-message {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: anywhere !important;
        text-align: center !important;
    }

}

/* Prevent accidental horizontal overflow on small screens */
@media (max-width: 600px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
}


/******************************************************************************/

/* =========================================================
   SERVICES PAGE
   ========================================================= */

/* ---------------------------------------------------------
   SERVICES HERO
   --------------------------------------------------------- */

.pl-services-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111a38;
}

.pl-services-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.7s ease;
}

/* Subtle zoom when hovering the hero */
.pl-services-hero:hover .pl-services-hero-bg {
    transform: scale(1.04);
}

.pl-services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 19, 45, 0.72);
    z-index: 1;
}

.pl-services-hero .pl-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pl-services-hero-content {
    max-width: 560px;
    padding: 80px 0;
}

.pl-services-hero-content h1 {
    margin: 12px 0 18px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
}

.pl-services-hero-content .pl-lead {
    max-width: 520px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}


/* ---------------------------------------------------------
   SERVICES SECTION
   --------------------------------------------------------- */

.pl-services-section {
    background: #111a38;
}

.pl-services-heading {
    max-width: 720px;
    margin: 0 auto 50px;
}

.pl-services-heading h2 {
    margin: 8px 0 15px;
}

.pl-services-heading .pl-lead {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}


/* ---------------------------------------------------------
   SERVICE GRID
   --------------------------------------------------------- */

.pl-services-section .pl-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 40px;
    max-width: 930px;
    margin: 0 auto;
}

.pl-services-section .pl-service-card {
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.pl-services-section .pl-service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background: #182346;
}

.pl-services-section .pl-service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.pl-services-section .pl-service-card:hover .pl-service-image img {
    transform: scale(1.06);
}

.pl-service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e7b83e;
    background: #182346;
}

.pl-service-image-placeholder .material-symbols-outlined {
    font-size: 42px;
}

.pl-services-section .pl-service-body {
    padding: 20px 8px 0;
    text-align: center;
}

.pl-services-section .pl-service-body .pl-icon {
    display: none;
}

.pl-services-section .pl-service-body h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.25;
}

.pl-services-section .pl-service-body p {
    max-width: 390px;
    margin: 0 auto 16px;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.65;
}

.pl-services-section .pl-service-body a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 5px;
    background: #202f62;
    color: #dce4ff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pl-services-section .pl-service-body a:hover {
    background: #e8b93f;
    color: #111a38;
}


/* ---------------------------------------------------------
   FAQ SECTION
   --------------------------------------------------------- */

.pl-services-faq {
    background: #121c3b;
}

.pl-services-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.pl-services-faq-intro {
    max-width: 430px;
}

.pl-faq-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    color: #e9ba3f;
}

.pl-faq-icon .material-symbols-outlined {
    font-size: 20px;
}

.pl-services-faq-intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 3.5vw, 42px);
    line-height: 1.15;
}

.pl-faq {
    width: 100%;
}

.pl-faq-item {
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    background: #182344;
    overflow: hidden;
}

.pl-faq-item summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.pl-faq-item summary::-webkit-details-marker {
    display: none;
}

.pl-faq-item summary .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 20px;
    transition: transform 0.25s ease;
}

.pl-faq-item[open] summary .material-symbols-outlined {
    transform: rotate(180deg);
}

.pl-faq-answer {
    padding: 0 20px 20px;
}

.pl-faq-answer p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   ENGAGEMENT SECTION
   --------------------------------------------------------- */

.pl-engagement-section {
    background: #111a38;
}

.pl-engagement-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.pl-engagement-heading h2 {
    margin: 8px 0 15px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 48px);
}

.pl-engagement-heading .pl-lead {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.pl-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1050px;
    margin: 0 auto;
}

.pl-engagement-card {
    min-height: 280px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 7px;
    background: #182448;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.pl-engagement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232,185,63,0.45);
}

.pl-engagement-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #ffffff;
}

.pl-engagement-icon .material-symbols-outlined {
    font-size: 21px;
}

.pl-engagement-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 20px;
}

.pl-engagement-card p {
    margin: 0 0 22px;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    line-height: 1.65;
}

.pl-engagement-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e9ba3f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
}

.pl-engagement-link:hover {
    color: #ffffff;
}

.pl-engagement-link span {
    font-size: 18px;
}


/* ---------------------------------------------------------
   NO SERVICES MESSAGE
   --------------------------------------------------------- */

.pl-no-services {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    color: rgba(255,255,255,0.65);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .pl-services-hero {
        min-height: 400px;
    }

    .pl-services-hero-content {
        padding: 70px 0;
    }

    .pl-services-section .pl-service-grid {
        gap: 35px 25px;
    }

    .pl-services-faq-grid {
        gap: 45px;
    }

    .pl-engagement-grid {
        gap: 15px;
    }

    .pl-engagement-card {
        padding: 25px 20px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pl-services-hero {
        min-height: 420px;
    }

    .pl-services-hero-content {
        max-width: 100%;
        padding: 65px 0;
    }

    .pl-services-hero-content h1 {
        font-size: 42px;
    }

    .pl-services-hero-content .pl-lead {
        font-size: 15px;
    }


    /* SERVICES */

    .pl-services-heading {
        margin-bottom: 35px;
    }

    .pl-services-section .pl-service-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .pl-services-section .pl-service-image {
        height: 230px;
    }

    .pl-services-section .pl-service-body {
        padding-top: 17px;
    }

    .pl-services-section .pl-service-body h3 {
        font-size: 21px;
    }


    /* FAQ */

    .pl-services-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pl-services-faq-intro {
        max-width: 100%;
    }

    .pl-services-faq-intro h2 {
        font-size: 32px;
    }

    .pl-faq-item summary {
        padding: 16px;
        font-size: 13px;
    }


    /* ENGAGEMENT */

    .pl-engagement-heading {
        margin-bottom: 35px;
    }

    .pl-engagement-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pl-engagement-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .pl-engagement-icon {
        margin-bottom: 20px;
    }

}


/* =========================================================
   SERVICES PAGE — FINAL VISUAL REFINEMENT
   Added after all existing Services styles.
   Services-page only. Does not affect About/Contact.
   ========================================================= */


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

.pl-services-page .pl-services-hero {
    min-height: 470px;
    position: relative;
    overflow: hidden;
}

.pl-services-page .pl-services-hero-bg {
    background-position: center center;
    transition: transform .8s cubic-bezier(.2,.65,.25,1);
}

.pl-services-page .pl-services-hero:hover .pl-services-hero-bg {
    transform: scale(1.035);
}

.pl-services-page .pl-services-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 15, 38, .86) 0%,
            rgba(7, 15, 38, .70) 48%,
            rgba(7, 15, 38, .48) 100%
        );
}

.pl-services-page .pl-services-hero-content {
    max-width: 610px;
    padding: 90px 0;
}

.pl-services-page .pl-services-hero-content .pl-kicker {
    margin-bottom: 16px;
    color: #f5c343;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pl-services-page .pl-services-hero-content h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 64px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.pl-services-page .pl-services-hero-content .pl-lead {
    max-width: 560px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.74);
    font-size: 17px;
    line-height: 1.75;
}

.pl-services-page .pl-services-hero-content .pl-btn {
    min-height: 50px;
    margin-top: 0;
    padding: 0 28px;
    border-radius: 6px;
    background: #f5c343;
    color: #171717;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition:
        transform .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.pl-services-page .pl-services-hero-content .pl-btn:hover {
    background: #ffd05a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.20);
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.pl-services-page .pl-services-section {
    padding-top: 90px;
    padding-bottom: 100px;
    background: #111a38;
}

.pl-services-page .pl-services-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.pl-services-page .pl-services-heading .pl-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: #f5c343;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pl-services-page .pl-services-heading h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.pl-services-page .pl-services-heading .pl-lead {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.pl-services-page .pl-services-section .pl-service-grid {
    max-width: 960px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px 38px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.pl-services-page .pl-services-section .pl-service-card {
    position: relative;
    transition: transform .25s ease;
}

.pl-services-page .pl-services-section .pl-service-card:hover {
    transform: translateY(-4px);
}


/* SERVICE IMAGE */

.pl-services-page .pl-service-image {
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
    background: #182346;
    border: 1px solid rgba(255,255,255,.06);
}

.pl-services-page .pl-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.65,.25,1);
}

.pl-services-page .pl-service-card:hover .pl-service-image img {
    transform: scale(1.055);
}


/* SERVICE PLACEHOLDER */

.pl-services-page .pl-service-image-placeholder {
    background:
        radial-gradient(
            circle at center,
            rgba(245,195,67,.08),
            transparent 65%
        ),
        #182346;
}

.pl-services-page .pl-service-image-placeholder .material-symbols-outlined {
    color: #f5c343;
    font-size: 40px;
}


/* SERVICE BODY */

.pl-services-page .pl-service-body {
    padding: 22px 10px 0;
    text-align: center;
}

.pl-services-page .pl-service-body h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.pl-services-page .pl-service-body p {
    max-width: 410px;
    min-height: 0;
    margin: 0 auto 18px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.7;
}


/* LEARN MORE BUTTON */

.pl-services-page .pl-service-body > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 17px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 5px;
    background: #202f62;
    color: #dce4ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.pl-services-page .pl-service-body > a:hover {
    background: #f5c343;
    color: #111a38;
    transform: translateY(-1px);
}


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

.pl-services-page .pl-services-faq {
    padding-top: 95px;
    padding-bottom: 100px;
    background: #121c3b;
}

.pl-services-page .pl-services-faq-grid {
    max-width: 1060px;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 80px;
}

.pl-services-page .pl-services-faq-intro {
    max-width: 440px;
}

.pl-services-page .pl-faq-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: rgba(245,195,67,.06);
    border: 1px solid rgba(245,195,67,.25);
    color: #f5c343;
}

.pl-services-page .pl-services-faq-intro h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}


/* FAQ ITEMS */

.pl-services-page .pl-faq-item {
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    background: #182344;
}

.pl-services-page .pl-faq-item summary {
    min-height: 62px;
    padding: 18px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.pl-services-page .pl-faq-item summary .material-symbols-outlined {
    color: #f5c343;
    font-size: 20px;
}

.pl-services-page .pl-faq-answer {
    padding: 0 20px 20px;
}

.pl-services-page .pl-faq-answer p {
    color: rgba(255,255,255,.64);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   ENGAGEMENT SECTION
   ========================================================= */

.pl-services-page .pl-engagement-section {
    padding-top: 95px;
    padding-bottom: 105px;
    background: #111a38;
}

.pl-services-page .pl-engagement-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.pl-services-page .pl-engagement-heading .pl-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: #f5c343;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pl-services-page .pl-engagement-heading h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
}

.pl-services-page .pl-engagement-heading .pl-lead {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   ENGAGEMENT CARDS
   ========================================================= */

.pl-services-page .pl-engagement-grid {
    max-width: 1060px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.pl-services-page .pl-engagement-card {
    min-height: 275px;
    padding: 30px 28px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;
    background: #182448;
    box-shadow: 0 12px 35px rgba(0,0,0,.10);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.pl-services-page .pl-engagement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245,195,67,.35);
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.pl-services-page .pl-engagement-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    border-radius: 9px;
    border: 1px solid rgba(245,195,67,.20);
    background: rgba(245,195,67,.07);
    color: #f5c343;
}

.pl-services-page .pl-engagement-icon .material-symbols-outlined {
    color: #f5c343;
    font-size: 24px;
}

.pl-services-page .pl-engagement-card h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.pl-services-page .pl-engagement-card p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.7;
}

.pl-services-page .pl-engagement-link {
    margin-top: auto;
    padding-top: 25px;
    color: #f5c343;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pl-services-page .pl-engagement-link:hover {
    color: #ffffff;
}

.pl-services-page .pl-engagement-link span {
    font-size: 18px;
}


/* =========================================================
   SERVICES — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .pl-services-page .pl-services-hero {
        min-height: 420px;
    }

    .pl-services-page .pl-services-hero-content {
        padding: 75px 0;
    }

    .pl-services-page .pl-services-section {
        padding-top: 75px;
        padding-bottom: 85px;
    }

    .pl-services-page .pl-services-section .pl-service-grid {
        gap: 40px 25px;
    }

    .pl-services-page .pl-service-image {
        height: 220px;
    }

    .pl-services-page .pl-services-faq {
        padding-top: 75px;
        padding-bottom: 85px;
    }

    .pl-services-page .pl-services-faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pl-services-page .pl-services-faq-intro {
        max-width: 650px;
    }

    .pl-services-page .pl-engagement-section {
        padding-top: 75px;
        padding-bottom: 85px;
    }

    .pl-services-page .pl-engagement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pl-services-page .pl-engagement-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 11px);
        width: 100%;
        justify-self: center;
    }
}


/* =========================================================
   SERVICES — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .pl-services-page .pl-services-hero {
        min-height: 400px;
    }

    .pl-services-page .pl-services-hero-overlay {
        background: rgba(7,15,38,.78);
    }

    .pl-services-page .pl-services-hero-content {
        padding: 65px 0;
    }

    .pl-services-page .pl-services-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .pl-services-page .pl-services-hero-content .pl-lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .pl-services-page .pl-services-section {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .pl-services-page .pl-services-heading {
        margin-bottom: 38px;
    }

    .pl-services-page .pl-services-heading h2 {
        font-size: 31px;
    }

    .pl-services-page .pl-services-heading .pl-lead {
        font-size: 15px;
    }

    .pl-services-page .pl-services-section .pl-service-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pl-services-page .pl-service-image {
        height: 230px;
    }

    .pl-services-page .pl-service-body {
        padding-top: 18px;
    }

    .pl-services-page .pl-service-body h3 {
        font-size: 21px;
    }

    .pl-services-page .pl-service-body p {
        font-size: 14px;
    }

    .pl-services-page .pl-services-faq {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .pl-services-page .pl-services-faq-grid {
        gap: 38px;
    }

    .pl-services-page .pl-services-faq-intro h2 {
        font-size: 30px;
    }

    .pl-services-page .pl-faq-item summary {
        min-height: 58px;
        padding: 16px;
        font-size: 13px;
    }

    .pl-services-page .pl-faq-answer {
        padding: 0 16px 18px;
    }

    .pl-services-page .pl-engagement-section {
        padding-top: 65px;
        padding-bottom: 75px;
    }

    .pl-services-page .pl-engagement-heading {
        margin-bottom: 38px;
    }

    .pl-services-page .pl-engagement-heading h2 {
        font-size: 31px;
    }

    .pl-services-page .pl-engagement-heading .pl-lead {
        font-size: 15px;
    }

    .pl-services-page .pl-engagement-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .pl-services-page .pl-engagement-card,
    .pl-services-page .pl-engagement-card:last-child {
        min-height: 245px;
        max-width: none;
        width: 100%;
        padding: 27px 24px;
        grid-column: auto;
    }
}


/* =========================================================
   SERVICES — SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .pl-services-page .pl-services-hero-content h1 {
        font-size: 36px;
    }

    .pl-services-page .pl-services-hero-content .pl-lead {
        font-size: 14px;
    }

    .pl-services-page .pl-service-image {
        height: 210px;
    }

    .pl-services-page .pl-service-body h3 {
        font-size: 20px;
    }

    .pl-services-page .pl-engagement-card {
        min-height: 230px;
    }
}


/* Align Services hero content with the site logo */
.pl-services-hero-content {
    max-width: 120px;
    margin-left: 150px;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.pl-services-hero-content > * {
    margin-left: 0;
}

/* Keep the alignment consistent on smaller screens */
@media (max-width: 767px) {
    .pl-services-hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* =========================================================
   FINAL MOBILE RESPONSIVENESS
   SERVICES + HOME PAGE
   ========================================================= */


/* =========================================================
   SERVICES HERO — MOBILE LEFT ALIGNMENT
   ========================================================= */

@media (max-width: 700px) {

    .pl-services-hero {
        min-height: 520px;
        padding: 80px 0 70px;
    }

    .pl-services-hero .pl-container {
        width: calc(100% - 48px);
        margin-left: auto;
        margin-right: auto;
    }

    .pl-services-hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        text-align: left !important;
        align-items: flex-start;
    }

    .pl-services-hero-content .pl-kicker,
    .pl-services-hero-content h1,
    .pl-services-hero-content .pl-lead {
        text-align: left !important;
        margin-left: 0;
        margin-right: 0;
    }

    .pl-services-hero-content .pl-kicker {
        display: block;
        margin-bottom: 14px;
    }

    .pl-services-hero-content h1 {
        font-size: 42px;
        line-height: 1.08;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .pl-services-hero-content .pl-lead {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 26px;
    }

    .pl-services-hero-content .pl-btn {
        margin-left: 0;
        margin-right: auto;
    }
}

/* =========================================================
   HOME PAGE — TABLET RESPONSIVENESS
   ========================================================= */

@media (max-width: 900px) {

    /* Main two-column areas */
    .pl-hero .pl-two-col,
    .pl-home-page .pl-two-col {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    /* Four-column sections */
    .pl-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    /* Two-column sections */
    .pl-grid-2 {
        grid-template-columns: 1fr;
    }

    /* Small information grids */
    .pl-mini-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Service cards */
    .pl-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Footer */
    .pl-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px;
    }

    /* Hero image */
    .pl-hero-image img {
        width: min(500px, 100%);
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   HOME PAGE — MOBILE RESPONSIVENESS
   ========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------------------
       GENERAL CONTAINER
       ----------------------------------------------------- */

    .pl-container {
        width: calc(100% - 48px);
        max-width: none;
    }


    /* -----------------------------------------------------
       SECTIONS
       ----------------------------------------------------- */

    .pl-section {
        padding: 60px 0;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .pl-hero {
        padding: 55px 0 65px;
    }

    .pl-hero .pl-two-col,
    .pl-home-page .pl-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pl-hero-copy {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .pl-hero-copy h1 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.08;
        margin: 12px 0 20px;
    }

    .pl-hero-copy p,
    .pl-hero-copy .pl-lead {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .pl-hero-copy .pl-btn {
        margin-left: 0;
    }

    .pl-hero-image {
        width: 100%;
    }

    .pl-hero-image img {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .pl-hero-shape {
        min-height: 280px;
    }


    /* -----------------------------------------------------
       HEADINGS
       ----------------------------------------------------- */

    .pl-section h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .pl-lead {
        font-size: 16px;
        line-height: 1.65;
    }


    /* -----------------------------------------------------
       FOUR-COLUMN SECTIONS
       ----------------------------------------------------- */

    .pl-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /* -----------------------------------------------------
       TWO-COLUMN SECTIONS
       ----------------------------------------------------- */

    .pl-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /* -----------------------------------------------------
       MINI GRID
       ----------------------------------------------------- */

    .pl-mini-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    /* -----------------------------------------------------
       ICON CARDS
       ----------------------------------------------------- */

    .pl-icon-card {
        padding: 18px 12px;
    }


    /* -----------------------------------------------------
       SERVICE CARDS
       ----------------------------------------------------- */

    .pl-service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pl-service-card {
        width: 100%;
    }

    .pl-service-body {
        padding: 22px;
    }

    .pl-service-body p {
        min-height: 0;
    }


    /* -----------------------------------------------------
       CTA
       ----------------------------------------------------- */

    .pl-cta {
        padding: 65px 0;
    }

    .pl-cta h2 {
        font-size: 34px;
        line-height: 1.12;
    }


    /* -----------------------------------------------------
       CONTACT CARD
       ----------------------------------------------------- */

    .pl-contact-card {
        width: 100%;
        padding: 24px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .pl-footer {
        padding-top: 45px;
    }

    .pl-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 45px;
    }

    .pl-footer-bottom {
        padding: 22px 16px;
        font-size: 12px;
        line-height: 1.5;
    }


    /* -----------------------------------------------------
       BUTTONS
       ----------------------------------------------------- */

    .pl-btn {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
}

/* =========================================================
   HOME PAGE - CEO SECTION MOBILE LAYOUT
   ========================================================= */

@media (max-width: 700px) {

    /* Stack the CEO section vertically */
    .pl-section .pl-container.pl-two-col {
        grid-template-columns: 1fr;
    }

    /* Target the CEO section specifically:
       the section containing the CEO image */
    .pl-section .pl-rounded-image {
        margin-bottom: 0;
    }

    /* CEO section columns */
    .pl-section .pl-rounded-image {
        display: block;
    }

    /* The CEO section's first column (image) */
    .pl-section .pl-rounded-image {
        order: 2;
    }

    /* The CEO section's second column (text) */
    .pl-section .pl-rounded-image + div {
        order: 1;
    }

    /* Put the image visually between the CEO heading
       and the Vision/Mission content */
    .pl-section .pl-rounded-image {
        margin-top: 24px;
    }

    .pl-section .pl-mini-grid {
        order: 3;
    }

    /* Stack Vision and Mission */
    .pl-section .pl-mini-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 30px;
    }
}

/* =========================================================
   FOOTER RESPONSIVE DESIGN
   ========================================================= */

/* Prevent long footer content from causing horizontal overflow */
.pl-footer {
    overflow-x: hidden;
}

.pl-footer-grid > div {
    min-width: 0;
}

.pl-footer p,
.pl-footer li,
.pl-footer a {
    overflow-wrap: anywhere;
    word-break: normal;
}


/* Social icons */
.pl-footer .pl-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pl-footer .pl-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

.pl-footer .pl-social svg {
    width: 20px;
    height: 20px;
    display: block;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .pl-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 32px;
    }

    .pl-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .pl-footer-grid > div {
        min-width: 0;
    }

    .pl-footer h4 {
        margin-bottom: 16px;
    }

    .pl-footer ul {
        margin: 0;
        padding: 0;
    }

    .pl-footer li {
        line-height: 1.6;
    }

    .pl-footer-bottom {
        text-align: center;
        line-height: 1.6;
        padding-left: 24px;
        padding-right: 24px;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .pl-footer {
        padding-top: 48px;
    }

    /*
     * One column layout.
     * Each footer section gets its own full-width row.
     */
    .pl-footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 36px;
        width: calc(100% - 48px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .pl-footer-grid > div {
        width: 100%;
        min-width: 0;
        grid-column: auto !important;
    }


    /* Company section */
    .pl-footer-grid > div:first-child {
        width: 100%;
    }

    .pl-footer .pl-brand-text {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .pl-footer p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }


    /* Social icons */
    .pl-footer .pl-social {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
    }

    .pl-footer .pl-social a {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .pl-footer .pl-social svg {
        width: 19px;
        height: 19px;
    }


    /* Footer headings */
    .pl-footer h4 {
        font-size: 14px;
        line-height: 1.3;
        margin-top: 0;
        margin-bottom: 14px;
    }


    /* Footer lists */
    .pl-footer ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .pl-footer li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .pl-footer li:last-child {
        margin-bottom: 0;
    }

    .pl-footer li a {
        display: inline-block;
        max-width: 100%;
    }


    /* Contact information */
    .pl-footer-grid > div:last-child li {
        max-width: 100%;
    }

    .pl-footer-grid > div:last-child a {
        display: inline-block;
        max-width: 100%;
    }


    /* Copyright */
    .pl-footer-bottom {
        width: calc(100% - 48px);
        margin-left: auto;
        margin-right: auto;
        padding: 22px 0 24px;
        text-align: center;
        font-size: 13px;
        line-height: 1.6;
    }
}


/* ---------------------------------------------------------
   SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 400px) {

    .pl-footer-grid {
        width: calc(100% - 36px);
        gap: 32px;
    }

    .pl-footer .pl-brand-text {
        font-size: 22px;
    }

    .pl-footer p,
    .pl-footer li {
        font-size: 14px;
    }

    .pl-footer .pl-social {
        gap: 8px;
    }

    .pl-footer .pl-social a {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .pl-footer-bottom {
        width: calc(100% - 36px);
        font-size: 12px;
    }
}

/* =========================================
   MOBILE MENU
========================================= */

.pl-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 6px;
    cursor: pointer;
    line-height: 1;
}

.pl-menu-toggle .material-symbols-outlined {
    font-size: 30px;
}

/* Mobile navigation is hidden by default */
.pl-mobile-nav {
    display: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    /* Hide desktop navigation */
    .pl-desktop-nav {
        display: none;
    }

    /* Show hamburger button */
    .pl-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile navigation */
    .pl-mobile-nav {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
            max-height 0.3s ease,
            opacity 0.2s ease;
    }

    /* Open mobile navigation */
    .pl-mobile-nav.is-open {
        max-height: 500px;
        opacity: 1;
    }

    /* Mobile menu list */
    .pl-mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 10px 0 20px;
    }

    /* Mobile menu items */
    .pl-mobile-nav li {
        margin: 0;
        padding: 0;
    }

    /* Mobile menu links */
    .pl-mobile-nav a {
        display: block;
        padding: 14px 0;
        text-decoration: none;
    }

}