/*
Theme Name: Prodigicleap
Theme URI: https://www.prodigicleap.com
Author: OpenAI Codex
Description: Custom WordPress theme scaffolded from the Prodigicleap Vite + Express site.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: prodigicleap
*/

:root {
  --pdl-primary: #0f2f45;
  --pdl-primary-soft: #1d4964;
  --pdl-secondary: #e4ac2f;
  --pdl-accent: #45b8c8;
  --pdl-text: #12202b;
  --pdl-muted: #5f6f7d;
  --pdl-border: rgba(15, 47, 69, 0.12);
  --pdl-surface: #ffffff;
  --pdl-surface-soft: #f5f8fb;
  --pdl-shadow: 0 24px 60px rgba(15, 47, 69, 0.12);
  --pdl-radius: 28px;
  --pdl-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pdl-text);
  background: #fff;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

body.admin-bar {
  margin-top: 0 !important;
}

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

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

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.pdl-page {
  min-height: 100vh;
}

.pdl-container {
  width: min(calc(100% - 32px), var(--pdl-width));
  margin: 0 auto;
}

.pdl-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: visible;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
}

.pdl-site-header.is-home:not(.is-scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.pdl-site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(15, 47, 69, 0.06);
  box-shadow: 0 12px 28px rgba(15, 47, 69, 0.06);
}

.pdl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px 0;
  gap: 24px;
  transition: min-height 0.28s ease, padding 0.28s ease;
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-header-inner {
  min-height: 92px;
  padding: 20px 0;
}

.pdl-site-header.is-scrolled .pdl-header-inner {
  padding: 10px 0;
}

.pdl-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-height: 48px;
}

.pdl-brand-logo-wrap {
  position: relative;
  width: 56px;
  height: 40px;
  flex-shrink: 0;
}

.pdl-brand-logo {
  position: absolute;
  inset: 0;
  height: 40px;
  width: 56px;
  object-fit: contain;
  transition: opacity 0.28s ease;
}

.pdl-brand-logo-light {
  opacity: 0;
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-brand-logo-light {
  opacity: 1;
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-brand-logo-dark {
  opacity: 0;
}

.pdl-site-header.is-scrolled .pdl-brand-logo-light {
  opacity: 0;
}

.pdl-site-header.is-scrolled .pdl-brand-logo-dark {
  opacity: 1;
}

.pdl-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2px;
}

.pdl-brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: color 0.28s ease;
}

.pdl-brand-name .accent {
  color: var(--pdl-secondary);
}

.pdl-brand-tagline {
  margin-top: 4px;
  color: rgba(18, 32, 43, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.25;
  transition: color 0.28s ease;
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-brand-name {
  color: #fff;
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-brand-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.pdl-header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pdl-nav-link,
.pdl-menu-toggle,
.pdl-submenu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.pdl-nav-link,
.pdl-nav-item > .pdl-submenu-toggle {
  color: var(--pdl-muted);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 12px 0;
  line-height: 1.2;
  border-radius: 0;
  transition: color 0.2s ease;
}

.pdl-nav-link:hover,
.pdl-nav-item:hover > .pdl-submenu-toggle,
.pdl-nav-item > .pdl-submenu-toggle[aria-expanded="true"] {
  background: transparent;
  color: var(--pdl-secondary);
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-nav-link,
.pdl-site-header.is-home:not(.is-scrolled) .pdl-nav-item > .pdl-submenu-toggle {
  color: rgba(255, 255, 255, 0.82);
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-nav-link:hover,
.pdl-site-header.is-home:not(.is-scrolled) .pdl-nav-item:hover > .pdl-submenu-toggle,
.pdl-site-header.is-home:not(.is-scrolled) .pdl-nav-item > .pdl-submenu-toggle[aria-expanded="true"] {
  color: #fff;
}

.pdl-nav-item {
  position: relative;
}

.pdl-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.pdl-nav-arrow {
  margin-left: 8px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.pdl-nav-item > .pdl-submenu-toggle[aria-expanded="true"] .pdl-nav-arrow {
  transform: rotate(225deg) translateY(1px);
}

.pdl-mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  transform: translateX(-50%);
  width: min(820px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid rgba(15, 47, 69, 0.08);
  border-radius: 24px;
  box-shadow: var(--pdl-shadow);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.pdl-nav-item:hover .pdl-mega-menu,
.pdl-nav-item:focus-within .pdl-mega-menu,
.pdl-nav-item.is-open .pdl-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.pdl-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pdl-mega-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(69, 184, 200, 0.025);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.pdl-mega-card:hover {
  border-color: rgba(228, 172, 47, 0.25);
  transform: translateY(-2px);
  background: rgba(228, 172, 47, 0.05);
}

.pdl-mega-card h3 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  line-height: 1.3;
}

.pdl-mega-card p {
  margin: 0;
  color: var(--pdl-muted);
  font-size: 0.76rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pdl-mega-points {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.pdl-mega-points li {
  position: relative;
  padding-left: 10px;
  margin-top: 4px;
  color: rgba(95, 111, 125, 0.9);
  font-size: 0.72rem;
  line-height: 1.35;
}

.pdl-mega-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(69, 184, 200, 0.55);
}

.pdl-mega-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--pdl-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pdl-mega-card:hover .pdl-mega-link {
  opacity: 1;
}

.pdl-mega-footer {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pdl-primary), var(--pdl-primary-soft));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pdl-mega-footer p {
  margin: 0;
}

.pdl-header-cta,
.pdl-button,
.pdl-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pdl-header-cta,
.pdl-button {
  color: var(--pdl-primary);
  background: var(--pdl-secondary);
  box-shadow: 0 10px 24px rgba(228, 172, 47, 0.24);
}

.pdl-header-cta:hover,
.pdl-button:hover {
  transform: translateY(-1px);
}

.pdl-button-outline {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.pdl-header-cta {
  padding: 12px 18px;
  font-size: 0.92rem;
  line-height: 1.1;
  min-height: 44px;
}

.pdl-button-sm {
  padding: 10px 16px;
  font-size: 0.78rem;
}

.pdl-cta-arrow {
  width: 7px;
  height: 7px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  display: inline-block;
}

.pdl-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(69, 184, 200, 0.1);
  color: var(--pdl-primary);
}

.pdl-menu-toggle span,
.pdl-menu-toggle span::before,
.pdl-menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--pdl-primary);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pdl-site-header.is-home:not(.is-scrolled) .pdl-menu-toggle span,
.pdl-site-header.is-home:not(.is-scrolled) .pdl-menu-toggle span::before,
.pdl-site-header.is-home:not(.is-scrolled) .pdl-menu-toggle span::after {
  background: #fff;
}

.pdl-menu-toggle span::before {
  top: -6px;
}

.pdl-menu-toggle span::after {
  top: 4px;
}

.pdl-hero,
.pdl-service-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.pdl-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 130px 0 96px;
}

.pdl-service-hero {
  padding: 138px 0 92px;
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.pdl-hero::before,
.pdl-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.pdl-hero::after,
.pdl-service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(15, 47, 69, 0.92), rgba(15, 47, 69, 0.78) 50%, rgba(15, 47, 69, 0.62)),
    radial-gradient(circle at top right, rgba(228, 172, 47, 0.14), transparent 40%);
  z-index: 0;
}

.pdl-hero .pdl-container,
.pdl-service-hero .pdl-container {
  position: relative;
  z-index: 1;
}

.pdl-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.pdl-service-hero .pdl-kicker {
  background: rgba(69, 184, 200, 0.18);
  color: #dff9ff;
}

.pdl-hero h1,
.pdl-service-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.pdl-hero h1 .gradient {
  color: var(--pdl-secondary);
}

.pdl-service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  max-width: 760px;
}

.pdl-hero p,
.pdl-service-hero p {
  margin: 0;
  max-width: 720px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.pdl-hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pdl-stat-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
}

.pdl-stat-box {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.pdl-stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.pdl-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.pdl-section {
  padding: 96px 0;
}

.pdl-section-soft {
  background: var(--pdl-surface-soft);
}

.pdl-section-dark {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.pdl-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.pdl-section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 47, 69, 0.9), rgba(15, 47, 69, 0.84));
  z-index: 0;
}

.pdl-section-dark > .pdl-container {
  position: relative;
  z-index: 1;
}

.pdl-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

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

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

.pdl-grid-5 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 28px;
}

.pdl-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--pdl-border);
  border-radius: var(--pdl-radius);
  padding: 28px;
  box-shadow: 0 16px 36px rgba(15, 47, 69, 0.06);
}

.pdl-card-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pdl-radius);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.pdl-section-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.pdl-section-copy,
.pdl-card p,
.pdl-card-dark p {
  color: var(--pdl-muted);
}

.pdl-section-dark .pdl-section-copy,
.pdl-section-dark .pdl-card-dark p,
.pdl-section-dark .pdl-card p {
  color: rgba(255, 255, 255, 0.72);
}

.pdl-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(228, 172, 47, 0.12);
  color: var(--pdl-secondary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.pdl-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.pdl-icon-svg svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pdl-card h3,
.pdl-card-dark h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.pdl-feature-list,
.pdl-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pdl-feature-list li,
.pdl-link-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 47, 69, 0.08);
}

.pdl-section-dark .pdl-feature-list li,
.pdl-section-dark .pdl-link-list li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pdl-feature-list li:last-child,
.pdl-link-list li:last-child {
  border-bottom: 0;
}

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

.pdl-service-grid .pdl-card p {
  margin-bottom: 0;
}

.pdl-subtitle {
  display: block;
  margin-bottom: 10px;
  color: var(--pdl-secondary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.pdl-contact-wrap {
  background: #fff;
  border-radius: 34px;
  border: 1px solid var(--pdl-border);
  box-shadow: var(--pdl-shadow);
  overflow: hidden;
}

.pdl-contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.pdl-contact-aside {
  padding: 36px;
  background: linear-gradient(180deg, var(--pdl-primary), var(--pdl-primary-soft));
  color: #fff;
}

.pdl-contact-aside p,
.pdl-contact-aside a {
  color: rgba(255, 255, 255, 0.76);
}

.pdl-contact-main {
  padding: 36px;
}

.pdl-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pdl-field {
  margin-bottom: 18px;
}

.pdl-field-full {
  grid-column: 1 / -1;
}

.pdl-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.pdl-field input,
.pdl-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 47, 69, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: var(--pdl-surface-soft);
}

.pdl-field textarea {
  min-height: 140px;
  resize: vertical;
}

.pdl-alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}

.pdl-alert-success {
  background: rgba(62, 170, 110, 0.12);
  color: #14633a;
}

.pdl-alert-error {
  background: rgba(193, 57, 57, 0.12);
  color: #8b2121;
}

.pdl-service-intro {
  margin-bottom: 36px;
}

.pdl-side-panel .pdl-card {
  background: linear-gradient(180deg, #fff, #f9fbfd);
}

.pdl-cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pdl-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pdl-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15, 47, 69, 0.92), rgba(15, 47, 69, 0.84));
}

.pdl-cta-band .pdl-container {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

.pdl-site-footer {
  background: var(--pdl-primary);
  color: #fff;
  padding: 78px 0 24px;
}

.pdl-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr;
  gap: 28px;
}

.pdl-site-footer p,
.pdl-site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.pdl-site-footer h4 {
  margin: 0 0 18px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdl-footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pdl-footer-bottom p {
  margin: 0;
}

.pdl-footer-legal {
  display: flex;
  gap: 20px;
}

@media (max-width: 1080px) {
  .pdl-header-cta {
    display: none;
  }

  .pdl-grid-4,
  .pdl-service-grid,
  .pdl-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pdl-grid-5,
  .pdl-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .pdl-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .pdl-header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(15, 47, 69, 0.08);
    gap: 0;
  }

  .pdl-site-header.is-open .pdl-header-nav {
    display: flex;
  }

  .pdl-nav-item {
    width: 100%;
  }

  .pdl-nav-link,
  .pdl-nav-item > .pdl-submenu-toggle {
    width: 100%;
    text-align: left;
    border-radius: 18px;
    padding: 14px 16px;
    line-height: 1.3;
    color: var(--pdl-text);
  }

  .pdl-mega-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border-radius: 18px;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .pdl-nav-item.is-open .pdl-mega-menu {
    display: block;
  }

  .pdl-mega-grid,
  .pdl-grid-2,
  .pdl-grid-3,
  .pdl-grid-4,
  .pdl-service-grid,
  .pdl-footer-grid,
  .pdl-form-grid,
  .pdl-stat-row {
    grid-template-columns: 1fr;
  }

  .pdl-mega-link {
    opacity: 1;
  }

  .pdl-mega-menu {
    width: 100%;
  }

  .pdl-mega-footer,
  .pdl-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .pdl-header-inner {
    min-height: 72px;
    padding: 10px 0;
  }

  .pdl-site-header.is-home:not(.is-scrolled) .pdl-header-inner {
    min-height: 78px;
    padding: 12px 0;
  }

  .pdl-brand-logo-wrap {
    width: 50px;
    height: 36px;
  }

  .pdl-brand-logo {
    width: 50px;
    height: 36px;
  }

  .pdl-hero,
  .pdl-service-hero {
    padding-top: 116px;
    padding-bottom: 72px;
  }

  .pdl-section,
  .pdl-cta-band .pdl-container {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .pdl-card,
  .pdl-card-dark,
  .pdl-contact-aside,
  .pdl-contact-main {
    padding: 22px;
  }
}
.pdl-hero-image-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 140px;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 72%, rgba(15, 47, 69, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(15, 47, 69, 0.92), rgba(15, 47, 69, 0.82));
}
