/* ============ PERFORMANCE MARKETING AGENCY — PAGE FONTS ============ */
@import url('wix-fonts.css');

.page-pma-site {
  --pma-font-nuckle-regular: var(--wix-font-nuckle-regular);
  --pma-font-nuckle-bold: var(--wix-font-nuckle-bold);
  --pma-font-body: var(--wix-font-body);
  font-family: var(--pma-font-body);
  font-weight: 400;
}

/* Navigation — Helvetica / Arial (Wix menu) */
.page-pma-site .main-nav a {
  font-family: Arial, Helvetica, var(--pma-font-body), sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Override global Oswald heading defaults inside this page */
.page-pma-site .page-pma h1,
.page-pma-site .page-pma h2,
.page-pma-site .page-pma h3,
.page-pma-site .page-pma h4 {
  font-family: var(--pma-font-nuckle-regular);
  font-weight: 400;
}

.page-pma-site .pma-hero h1,
.page-pma-site .pma-pillar-card h4,
.page-pma-site .pma-service-card h4,
.page-pma-site .pma-industry-card h4,
.page-pma-site .pma-onboard-card h4 {
  font-family: var(--pma-font-nuckle-bold);
}

.page-pma-site .page-pma p,
.page-pma-site .page-pma li,
.page-pma-site .page-pma .cs-article-inner p,
.page-pma-site .page-pma .cs-article-inner li {
  font-family: var(--pma-font-body);
}

/* ============ PERFORMANCE MARKETING AGENCY PAGE ============ */
.page-pma {
  background: #fff;
}

/* ============ HERO ============ */
.pma-hero {
  background: var(--black) url("../images/wix-970284_5b2397a9662440658cf6ec90ebc7a37b-mv2.png") center/cover no-repeat;
  color: #fff;
  padding: 135px 0 125px;
  position: relative;
}

.pma-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.2) 100%);
}

.pma-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
}

.pma-hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.5;
}
.pma-hero .container h1 {
    max-width: 800px;
}

/* ============ INTRO / ARTICLE ============ */
.pma-intro {
  padding: 70px 0 40px;
  background: #fff;
}

.pma-intro .cs-article-inner {
  max-width: 900px;
}

.pma-intro .cs-article-inner > p:first-child {
  font-size: 20px;
  line-height: normal;
  text-align: center;
}

.pma-intro .cs-article-inner h2 {
  font-family: var(--pma-font-nuckle-regular);
  font-size: 26px;
  line-height: 1.38;
  font-weight: 400;
  margin: 50px 0 18px;
}

.pma-intro .cs-article-inner p {
  font-size: 18px;
  line-height: 1.75;
}

/* ============ PILLAR CARDS (2x2) ============ */
.pma-pillars {
  padding: 20px 0 80px;
  background: #fff;
}

.pma-pillars .section-title {
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--pma-font-nuckle-regular);
  font-size: clamp(32px, 4.5vw, 45px);
  line-height: 1.38;
  font-weight: 400;
}

.pma-pillar-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 50px;
  margin-top: 40px;
}

.pma-pillar-card {
    background: linear-gradient(135deg, #C93629 0%, #621C15 100%);
    color: #fff;
    border-radius: 12px;
    padding: 30px 15px;
}

/* 1st = 65%, 2nd = 35% */
.pma-pillar-card:nth-child(1) {
  grid-column: span 13;
}

.pma-pillar-card:nth-child(2) {
  grid-column: span 7;
}

/* 3rd = 35%, 4th = 65% */
.pma-pillar-card:nth-child(3) {
  grid-column: span 7;
}

.pma-pillar-card:nth-child(4) {
  grid-column: span 13;
}

.pma-pillar-card h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.pma-pillar-card p {
  font-size: 15px;
  line-height: 1.875;
  opacity: 0.95;
}

/* ============ B2B SERVICES (red band + white cards) ============ */
.pma-services {
  background: linear-gradient(90deg, #C93629 0%, #621C15 100%);
  padding: 80px 0 90px;
  color: #fff;
}

.pma-services .section-title {
  color: #fff;
  text-align: left;
  font-family: var(--pma-font-nuckle-regular);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.38;
  font-weight: 400;
  margin-bottom: 40px;
}

.pma-service-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pma-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  color: var(--text);
}

.pma-service-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--black);
  line-height: 1.25;
}

.pma-service-card p {
  font-size: 16px;
  line-height: 1.875;
  color: var(--text);
  margin-bottom: 14px;
}

.pma-service-card p:last-child {
  margin-bottom: 0;
}

.pma-service-card a {
  color: var(--red);
  text-decoration: underline;
}

/* ============ INDUSTRY CARDS (3-col) ============ */
.pma-industries {
  padding: 90px 0;
  background: #fff;
}

.pma-industries .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--pma-font-nuckle-regular);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.38;
  font-weight: 400;
}

.pma-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pma-industry-card {
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.pma-industry-card.red {
  background: linear-gradient(160deg, #C93629 0%, #621C15 100%);
}

.pma-industry-card.dark {
  background: var(--black);
}

.pma-industry-card h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
  line-height: 1.25;
}

.pma-industry-card p {
  font-size: 16px;
  line-height: 1.875;
  opacity: 0.95;
  flex: 1;
}

.pma-industry-card .explore-link {
  display: inline-block;
  margin-top: 24px;
  color: #fff;
  text-decoration: underline;
  font-size: 15px;
}

/* ============ RESULTS ============ */
.pma-results {
    padding: 20px 0 80px;
    background: transparent;
}

.pma-results .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--pma-font-nuckle-regular);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.38;
  font-weight: 400;
}

.pma-case-block {
  margin-bottom: 40px;
}

.pma-case-block:last-child {
  margin-bottom: 0;
}

.pma-case-block h3 {
  font-family: var(--pma-font-body);
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.75;
}

.pma-case-block p,
.pma-case-block li {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}

.pma-case-block ul {
  margin: 16px 0;
  padding-left: 22px;
}

.pma-case-block li {
  margin-bottom: 8px;
}

.pma-case-result {
  font-family: var(--pma-font-body);
  font-weight: 700;
  color: var(--black);
  margin-top: 12px;
}

/* ============ ONBOARDING (red + white cards) ============ */
.pma-onboarding {
  background: linear-gradient(90deg, #C93629 0%, #621C15 100%);
  padding: 80px 0 90px;
}

.pma-onboarding .section-title {
  color: #fff;
  text-align: left;
  font-family: var(--pma-font-nuckle-bold) !important;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.38;
  font-weight: 400;
  margin-bottom: 40px;
}

.pma-onboard-grid {
  column-count: 2;
  column-gap: 24px;
}

.pma-onboard-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 15px;
    margin-bottom: 24px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

@media (max-width: 767px) {
  .pma-onboard-grid {
    column-count: 1;
  }
}

.pma-onboard-card h4 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--black);
  line-height: 1.3;
}

.pma-onboard-card p {
  font-size: 15px;
  line-height: 1.875;
  color: var(--text);
}

/* ============ FAQ ============ */
.pma-faq {
  padding: 50px 0;
  background: #fff;
}

.pma-faq .section-title {
  margin-bottom: 36px;
  font-family: var(--pma-font-nuckle-regular);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.38;
  font-weight: 400;
}

.pma-faq-item {
  margin-bottom: 28px;
}

.pma-faq-item:last-child {
  margin-bottom: 0;
}

.pma-faq-q {
  color: var(--red);
  font-family: var(--pma-font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.75;
}

.pma-faq-a {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
}

/* ============ CTA override ============ */
.page-pma-site .pma-cta .btn {
  font-family: var(--pma-font-nuckle-regular);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.pma-cta h2 {
  font-family: var(--pma-font-nuckle-regular);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.38;
  font-weight: 400;
}

.pma-book-cta {
  padding-bottom: 20px;
}

.pma-book-cta .cs-article-inner {
  text-align: center;
}

.page-pma-site .pma-book-cta .btn-primary {
  font-family: var(--pma-font-nuckle-regular);
  margin-top: 8px;
}

.pma-cyber-enterprise h2 {
    font-size: 48px !important;
    font-weight: 700 !important;
    font-family: 'Nuckle Bold' !important;
}

.pma-cyber-channels h2.pma-cyber-channels-title {
    font-weight: 700;
}

.page-pma .pma-cyber-intro-center p {
    font-size: 20px !important;
    line-height: 30px !important;
    margin-bottom: 30px !important;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 767px) {
  .pma-pillar-grid {
    grid-template-columns: 1fr;
  }

  .pma-pillar-card:nth-child(1),
  .pma-pillar-card:nth-child(2),
  .pma-pillar-card:nth-child(3),
  .pma-pillar-card:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .pma-hero {
    padding: 80px 0 70px;
  }

  .pma-pillar-grid,
  .pma-onboard-grid {
    grid-template-columns: 1fr;
  }

  .pma-industry-grid {
    grid-template-columns: 1fr;
  }

  .pma-industry-card {
    min-height: auto;
  }

  .pma-service-card {
    padding: 28px 24px;
  }
}
