/* ============================================================
   HRDelivered — Promotions Page
   template-promotions.php
   Mobile-first. Base = mobile, expands via min-width breakpoints.
   ============================================================ */

/* ── Shared section defaults ─────────────────────────────── */
.promo-section {
  padding: 3.5rem 1.25rem;
  background: #ffffff;
}
.promo-container {
  max-width: 1140px;
  margin: 0 auto;
}
.promo-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* ── Typography helpers ──────────────────────────────────── */
.promo-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-blue, #1e4db7);
  margin-bottom: 0.55rem;
}
.promo-heading {
  font-size: clamp(1.65rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--color-navy, #001342);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.promo-subtext {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.65;
}


/* ══ HERO + FORM ════════════════════════════════════════════ */
.promo-hero {
  position: relative;
  background: var(--color-navy, #001342);
  overflow: hidden;
  /* padding-top accounts for the fixed nav (5rem) + breathing room */
  padding: calc(var(--nav-height) + 2.5rem) 1.25rem 4rem;
}
.promo-hero-glow1,
.promo-hero-glow2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.18;
}
.promo-hero-glow1 {
  width: 700px; height: 400px;
  background: rgba(9,79,254,0.25);
  top: 4rem; left: 50%;
  transform: translateX(-50%);
  filter: blur(120px);
  opacity: 1;
}
.promo-hero-glow2 {
  width: 400px; height: 300px;
  background: rgba(215,1,63,0.20);
  top: 4rem; left: 33%;
  transform: translateX(-50%);
  filter: blur(120px);
  opacity: 1;
}

/* Hero inner layout */
.promo-hero-layout {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── Hero badge (matches homepage .hero-badge) ───────────── */
.promo-hero-copy .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(91,140,255,0.40);
  border-radius: var(--radius-full, 9999px);
  background-color: rgba(91,140,255,0.15);
  margin-bottom: 1.25rem;
}
.promo-hero-copy .hero-badge-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
}

/* ── Hero Left: copy ─────────────────────────────────────── */
.promo-hero-copy {
  color: #ffffff;
}
.promo-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
}
.promo-hero-h1-accent {
  background: linear-gradient(90deg, #5b8cff, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.promo-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.promo-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.promo-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.promo-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.promo-hero-bullets li svg {
  color: #4ade80;
  flex-shrink: 0;
}
.promo-hero-testimonial {
  border-left: 3px solid rgba(255,255,255,0.2);
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.promo-hero-testimonial p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 0.35rem;
}
.promo-hero-testimonial cite {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  font-weight: 600;
}

/* ── Hero Right: form card ───────────────────────────────── */
.promo-hero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.promo-hero-card-header {
  margin-bottom: 1.25rem;
}
.promo-hero-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-navy, #001342);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.promo-hero-card-sub {
  font-size: 0.87rem;
  color: #6b7280;
  margin: 0;
}
.promo-required {
  color: #dc2626;
}


/* ── Form ────────────────────────────────────────────────── */
.promo-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.promo-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.promo-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.promo-field label {
  font-size: 0.825rem;
  font-weight: 600;
  color: #374151;
}
.promo-optional {
  font-weight: 400;
  color: #9ca3af;
}
.promo-field input,
.promo-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 1rem; /* 16px prevents iOS zoom */
  font-family: inherit;
  color: #111827;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.promo-field input:focus,
.promo-field textarea:focus {
  border-color: var(--color-blue, #1e4db7);
  box-shadow: 0 0 0 3px rgba(30,77,183,0.12);
}
.promo-field input.is-error,
.promo-field textarea.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.promo-field textarea {
  resize: vertical;
  min-height: 80px;
}
.promo-field-error {
  display: none;
  font-size: 0.75rem;
  color: #dc2626;
  font-weight: 500;
}
.promo-field-error.show { display: block; }

/* ── Custom Select ───────────────────────────────────────── */
.promo-select-wrap {
  position: relative;
}
.promo-select-wrap select {
  width: 100%;
  padding: 0.7rem 2.25rem 0.7rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  color: #111827;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.promo-select-wrap select:focus {
  border-color: var(--color-blue, #1e4db7);
  box-shadow: 0 0 0 3px rgba(30,77,183,0.12);
}
.promo-select-wrap select.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}
.promo-select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
}

/* ── Submit Button ───────────────────────────────────────── */
.promo-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--color-blue, #1e4db7);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.15rem;
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
}
.promo-submit-btn:hover:not(:disabled) {
  background: #1a41a0;
  transform: translateY(-1px);
}
.promo-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ── Privacy note ────────────────────────────────────────── */
.promo-privacy-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  justify-content: center;
  margin: 0;
}

/* ── Success State ───────────────────────────────────────── */
.promo-success[hidden] { display: none !important; }
.promo-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.5rem;
  gap: 0.75rem;
}
.promo-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}
.promo-success-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy, #001342);
  margin: 0;
}
.promo-success-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.promo-success-alt {
  font-size: 0.88rem;
  color: #6b7280;
  margin: 0;
}
.promo-success-link {
  color: var(--color-blue, #1e4db7);
  font-weight: 600;
  text-decoration: none;
}
.promo-success-link:hover { text-decoration: underline; }


/* ── Partner Logo Marquee (from about page) ──────────────── */
.promo-partners {
  background: var(--color-cream, #F6F3E8);
  padding: 3rem 1.25rem;
}
.promo-partners-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.promo-partners-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.promo-partners-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin-bottom: 0.5rem;
}
.promo-partners-header p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.65;
}
@keyframes ab-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ab-marquee-outer {
  overflow: hidden;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ab-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ab-marquee 28s linear infinite;
}
.ab-marquee-outer:hover .ab-marquee-track { animation-play-state: paused; }
.ab-marquee-logo {
  flex-shrink: 0;
  padding: 0.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-marquee-logo img {
  max-width: 160px;
  height: auto;
  width: auto;
  max-height: 48px;
  filter: grayscale(0%);
  opacity: 1;
  transition: opacity 0.2s;
}
.ab-marquee-logo img:hover { opacity: 0.85; }
@media (prefers-reduced-motion: reduce) { .ab-marquee-track { animation: none; } }

/* ── Mission section ─────────────────────────────────────── */
.promo-mission {
  background: var(--color-cream, #F6F3E8);
  padding: 4rem 1.25rem;
}
.promo-mission .promo-container { max-width: 1140px; margin: 0 auto; }
.promo-mission .pt-split-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.promo-mission .pt-split-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}
/* pt-split variants needed for mission */
@media (min-width: 900px) {
  .pt-split--reverse .pt-split-text { order: 2; }
  .pt-split--reverse .pt-split-image { order: 1; }
  .pt-split--40-60 { grid-template-columns: 2fr 3fr; }
}
.pt-split-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}
@media (min-width: 768px) {
  .promo-mission { padding: 5rem 1.5rem; }
}

/* ── Industry grid section ───────────────────────────────── */
.promo-industries {
  background: #ffffff;
  padding: 4rem 1.25rem;
}
.promo-industries .promo-container { max-width: 1140px; margin: 0 auto; }
.promo-industries .ind-section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.promo-industries .ind-section-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
}
.promo-industries .ind-section-intro p {
  color: #4b5563;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0.75rem 0 0;
}
.promo-industries .ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) {
  .promo-industries .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .promo-industries .ind-grid { grid-template-columns: 1fr; }
}
.promo-industries .ind-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.promo-industries .ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(9,79,254,0.10);
  border-color: rgba(9,79,254,0.25);
}
.promo-industries .ind-card-bar { height: 4px; }
.promo-industries .ind-card--education .ind-card-bar   { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.promo-industries .ind-card--healthcare .ind-card-bar  { background: linear-gradient(90deg, #10b981, #34d399); }
.promo-industries .ind-card--construction .ind-card-bar{ background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.promo-industries .ind-card--hospitality .ind-card-bar { background: linear-gradient(90deg, #d7013f, #f43f5e); }
.promo-industries .ind-card--retail .ind-card-bar      { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.promo-industries .ind-card--financial .ind-card-bar   { background: linear-gradient(90deg, #094ffe, #5b8cff); }
.promo-industries .ind-card-body {
  flex: 1;
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
}
.promo-industries .ind-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.promo-industries .ind-card--education .ind-card-icon   { background: rgba(14,165,233,0.10); color: #0ea5e9; }
.promo-industries .ind-card--healthcare .ind-card-icon  { background: rgba(16,185,129,0.10); color: #10b981; }
.promo-industries .ind-card--construction .ind-card-icon{ background: rgba(245,158,11,0.10); color: #f59e0b; }
.promo-industries .ind-card--hospitality .ind-card-icon { background: rgba(215,1,63,0.10);   color: #d7013f; }
.promo-industries .ind-card--retail .ind-card-icon      { background: rgba(139,92,246,0.10); color: #8b5cf6; }
.promo-industries .ind-card--financial .ind-card-icon   { background: rgba(9,79,254,0.10);   color: #094ffe; }
.promo-industries .ind-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #001342;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.promo-industries .ind-card-desc {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.promo-industries .ind-card-footer {
  padding: 0.85rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #094ffe;
  margin-top: 1rem;
  transition: gap 0.18s ease;
}
.promo-industries .ind-card:hover .ind-card-footer { gap: 0.55rem; }
.promo-industries .ind-card-footer svg { transition: transform 0.18s ease; }
.promo-industries .ind-card:hover .ind-card-footer svg { transform: translateX(3px); }
.promo-industries .ind-not-listed {
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: #6b7280;
  text-align: center;
}
.promo-industries .ind-not-listed a {
  color: #094ffe;
  text-decoration: none;
  font-weight: 500;
}
.promo-industries .ind-not-listed a:hover { text-decoration: underline; }
@media (min-width: 768px) {
  .promo-industries { padding: 5rem 1.5rem; }
}

/* ── Calendly Section ────────────────────────────────────── */
.promo-section--cream {
  background: var(--color-cream, #F6F3E8);
}

/* Two-column layout: copy left, widget right */
.promo-calendly-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .promo-calendly-layout {
    grid-template-columns: 1fr 520px;
    gap: 4rem;
  }
}

/* Left: CTA copy */
.promo-calendly-copy {
  color: var(--color-navy, #001342);
}
.promo-calendly-copy .promo-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue, #1e4db7);
  margin-bottom: 0.75rem;
}
.promo-calendly-copy .promo-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.promo-calendly-copy .promo-subtext {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.promo-calendly-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.promo-calendly-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
}
/* Team profile cards */
.promo-team-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
}
.promo-team-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  box-shadow: 0 1px 4px rgba(0,19,66,0.05);
}
.promo-team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e5e7eb;
}
.promo-team-info { min-width: 0; }
.promo-team-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin: 0 0 0.15rem;
  line-height: 1.3;
}
.promo-team-title {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0 0 0.2rem;
  line-height: 1.4;
}
.promo-team-email {
  font-size: 0.8125rem;
  color: var(--color-blue, #1e4db7);
  text-decoration: none;
  font-weight: 500;
}
.promo-team-email:hover { text-decoration: underline; }

/* Right: widget card */
.promo-calendly-wrap {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,19,66,0.08);
  overflow: hidden;
}
.promo-calendly-wrap .calendly-inline-widget {
  overflow: hidden !important;
  scrollbar-width: none !important;
}
.promo-calendly-wrap .calendly-inline-widget::-webkit-scrollbar {
  display: none !important;
}
.promo-calendly-wrap .calendly-inline-widget iframe {
  display: block;
}

/* ── About HRDelivered split section ─────────────────────── */
.promo-about {
  background: #ffffff;
  padding: 4rem 1.25rem;
}
.promo-about .promo-container {
  max-width: 1140px;
  margin: 0 auto;
}
.pt-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .pt-split { grid-template-columns: 1fr 1fr; }
}
.ab-story-split { align-items: start; }
.pt-split-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.pt-split-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ab-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue, #1e4db7);
  margin-bottom: 0.6rem;
}
/* 2x3 credential card grid */
.ab-cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 479px) {
  .ab-cred-grid { grid-template-columns: 1fr; }
}
.ab-cred-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: box-shadow 0.2s;
}
.ab-cred-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.ab-cred-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #eff4ff;
  border-radius: 8px;
  flex-shrink: 0;
}
.ab-cred-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy, #001342);
  margin: 0;
  line-height: 1.3;
}
.ab-cred-card p {
  font-size: 0.8125rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .promo-about { padding: 5rem 1.5rem; }
}

/* ── Stands Out feature cards (from about page) ──────────── */
.promo-stands-out {
  background: #ffffff;
  padding: 3.5rem 1.25rem;
}
.promo-stands-out-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.promo-stands-out-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.promo-stands-out-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-navy, #001342);
  margin-bottom: 0.6rem;
}
.promo-stands-out-header p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.65;
}
.pt-features-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .pt-features-3col { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pt-features-3col { grid-template-columns: repeat(3, 1fr); }
}
.pt-feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  transition: box-shadow 0.2s;
}
.pt-feature-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.pt-feature-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #eff4ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy, #001342);
  margin-bottom: 0.3rem;
}
.pt-feature-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}
@media (min-width: 768px) {
  .promo-stands-out { padding: 5rem 1.5rem; }
}

/* ── Shared Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  background: var(--color-blue, #1e4db7);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: #1a41a0; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  border: 1.5px solid var(--color-navy, #001342);
  color: var(--color-navy, #001342);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--color-navy, #001342);
  color: #ffffff;
}


/* ── Tablet (768px+) ─────────────────────────────────────── */
@media (min-width: 768px) {
  .promo-hero {
    padding: calc(var(--nav-height) + 2.75rem) 1.5rem 5rem;
  }
  .promo-section {
    padding: 5rem 1.5rem;
  }
  .promo-hero-card {
    padding: 2.25rem 2rem;
  }
  .promo-hero-card-title {
    font-size: 1.45rem;
  }
}

/* ── Desktop (1024px+) ───────────────────────────────────── */
@media (min-width: 1024px) {
  .promo-hero {
    padding: calc(var(--nav-height) + 3rem) 2rem 6rem;
  }
  .promo-hero-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 4rem;
    align-items: start;
  }
  .promo-hero-title {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
  }
  .promo-hero-card {
    padding: 2.5rem 2.25rem;
  }
}
