/* ============================================================
   Burns Construction – Utility Project Manager Landing Page
   ============================================================ */

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #121A24;
  color: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- COLORS ----------------------------------------------- */
:root {
  --color-dark-blue:   #121A24;
  --color-dark-blue-2: #1A2535;
  --color-mid-blue:    #273447;
  --color-light-blue:  #86A6C8;
  --color-yellow:      #EDCD1E;
  --color-white:       #ffffff;
  --color-f5:          #F5F5F5;
}

/* ---- UTILITY --------------------------------------------- */
.bg-color-darkblue   { background-color: var(--color-dark-blue); }
.bg-color-darkblue-2 { background-color: var(--color-dark-blue-2); }
.bg-color-white      { background-color: var(--color-white); color: var(--color-dark-blue); }
.bg-color-f5f5f5     { background-color: var(--color-f5); }

.text-color-secondary  { color: rgba(255,255,255,0.78); }
.text-color-lightblue  { color: var(--color-light-blue); }
.text-color-yellow     { color: var(--color-yellow); }

.text-weight-medium { font-weight: 500; }
.text-weight-bold   { font-weight: 700; }
.text-style-allcaps { text-transform: uppercase; letter-spacing: 0.05em; }
.text-align-center  { text-align: center; }

/* ---- TYPE SCALE ------------------------------------------- */
.text-size-14 { font-size: 15px; line-height: 1.55; }
.text-size-18 { font-size: 18px; line-height: 1.5; }
.text-size-20 { font-size: 17px; line-height: 1.75; }
.text-size-32 { font-size: 24px; font-weight: 600; line-height: 1.3; }
.text-size-52 { font-size: 48px; font-weight: 700; line-height: 1.05; letter-spacing: 0.02em; }

.opacity-72 { opacity: 0.78; }

/* ---- SPACING ---------------------------------------------- */
.margin-b-16  { margin-bottom: 16px !important; }
.margin-b-24  { margin-bottom: 24px !important; }
.margin-b-32  { margin-bottom: 32px !important; }
.margin-b-40  { margin-bottom: 40px !important; }
.margin-b-72  { margin-bottom: 72px !important; }
.margin-t-32  { margin-top: 32px !important; }

/* Image height containers */
.h-120 { height: 88px; }
.h-640 { height: 600px; border-radius: 12px; overflow: hidden; }
.h-624 { height: 560px; border-radius: 12px; overflow: hidden; }
.h-688 { height: 640px; border-radius: 12px; overflow: hidden; }

.mw-932 { max-width: 860px; }
.mw-670 { max-width: 620px; }
.mw-340 { max-width: 360px; }
.mw-334 { max-width: 360px; }

/* ---- LAYOUT HELPERS --------------------------------------- */
.padding-global {
  padding-left:  clamp(24px, 5vw, 96px);
  padding-right: clamp(24px, 5vw, 96px);
}

.padding-section-72     { padding-top: 80px;  padding-bottom: 80px;  }
.padding-section-148    { padding-top: 140px; padding-bottom: 140px; }
.padding-section-148-74 { padding-top: 140px; padding-bottom: 80px;  }
.padding-section-74-148 { padding-top: 80px;  padding-bottom: 140px; }
.padding-section-72-148 { padding-top: 80px;  padding-bottom: 140px; }

.vflex { display: flex; flex-direction: column; }
.hflex { display: flex; flex-direction: row;    }
.is-gap-4  { gap: 4px;  }
.is-gap-8  { gap: 8px;  }
.is-gap-12 { gap: 12px; }
.is-gap-16 { gap: 16px; }
.is-gap-24 { gap: 24px; }
.is-gap-32 { gap: 32px; }
.is-gap-64 { gap: 64px; }
.is-y-center  { align-items: center; }
.is-x-center  { justify-content: center; }
.is-x-space   { justify-content: space-between; }
.is-wrap      { flex-wrap: wrap; }

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

/* ---- IMAGES ----------------------------------------------- */
.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.image-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---- DOTS ------------------------------------------------- */
.dot-8 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-8.is-yellow { background-color: var(--color-yellow); }
.dot-8.is-white  { background-color: var(--color-white);  }

/* ---- ICON SIZES ------------------------------------------ */
.icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.is-24x24 { width: 24px;  height: 24px;  }
.is-36x36 { width: 36px;  height: 36px;  }
.is-48x48 { width: 48px;  height: 48px;  }
.is-56x56 { width: 56px;  height: 56px;  }
.is-64x64 { width: 64px;  height: 64px;  flex-shrink: 0; }
.icon svg, .icon img { width: 100%; height: 100%; }

/* ---- NAVBAR ---------------------------------------------- */
.pm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: var(--color-dark-blue);
  border-bottom: 1px solid rgba(134, 166, 200, 0.15);
}
.pm-nav_body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.pm-nav_logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.pm-nav_logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.pm-nav_cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
  border: 2px solid var(--color-yellow);
  padding: 11px 28px;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pm-nav_cta:hover {
  background-color: var(--color-yellow);
  color: var(--color-dark-blue);
}

/* ---- BUTTONS --------------------------------------------- */
.button-secondary-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-yellow);
  color: var(--color-dark-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.button-secondary-2:hover { opacity: 0.88; }

.apply-btn-wrap { margin-top: 32px; }

/* ---- HERO SECTION ---------------------------------------- */
.main-wrapper { min-height: 100vh; }

.pm-hero_body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
}

.pm-hero_left h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0 0 28px 0;
}

.pm-hero_left .text-size-20 {
  font-size: 17px;
  line-height: 1.8;
}

.pm-hero_right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 8px;
}

/* Hero right — metadata chips */
.pm-hero_right .text-style-allcaps {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-white);
  white-space: nowrap;
}
.pm-hero_right .text-size-14 {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* ---- HERO CAROUSEL ---------------------------------------- */
.hero-carousel-section {
  padding-top: 48px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--color-dark-blue-2);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.45);
  user-select: none;
}

.hero-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-carousel__slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

/* Arrows */
.hero-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: rgba(18, 26, 36, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-carousel__btn:hover {
  background-color: var(--color-yellow);
  color: var(--color-dark-blue);
  transform: translateY(-50%) scale(1.08);
}
.hero-carousel__btn--prev { left: 16px; }
.hero-carousel__btn--next { right: 16px; }

/* Dot indicators */
.hero-carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.hero-carousel__dot.is-active {
  background-color: var(--color-yellow);
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-carousel__btn { width: 38px; height: 38px; }
}
@media (max-width: 600px) {
  .hero-carousel { border-radius: 12px; }
  .hero-carousel__btn { width: 34px; height: 34px; }
  .hero-carousel__btn--prev { left: 10px; }
  .hero-carousel__btn--next { right: 10px; }
}

/* ---- SECTION HEADINGS ------------------------------------- */
section h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--color-white);
  margin: 0;
}

.bg-color-white h2,
.bg-color-white h3 {
  color: var(--color-dark-blue);
}

/* ---- WHY THIS ROLE --------------------------------------- */
.why-section { background-color: var(--color-dark-blue); }

/* — Top header row — */
.why-top {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-top-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}

.why-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin: 0;
}

.why-heading {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin: 0;
}

.why-intro {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin: 0;
}



/* — Image block — */
.why-images {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Large left image */
.why-img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 560px;
}
.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating pill label on main image */
.why-img-pill {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(18, 26, 36, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.why-img-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: why-pulse 2s ease-in-out infinite;
}
@keyframes why-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}

/* Right column */
.why-img-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Smaller image top-right */
.why-img-secondary {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-height: 280px;
}
.why-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stat card bottom-right */
.why-stat-card {
  background-color: var(--color-yellow);
  border-radius: 16px;
  padding: 28px 24px;
  flex-shrink: 0;
}
.why-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.why-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-blue);
  line-height: 1;
}
.why-stat-suffix {
  font-size: 16px;
  font-weight: 700;
}
.why-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(18,26,36,0.55);
  text-align: center;
}
.why-stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(18,26,36,0.15);
  flex-shrink: 0;
}

/* — Three pillars row — */
.why-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  background-color: var(--color-dark-blue-2);
  border: 1px solid rgba(134,166,200,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.why-pillar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  transition: background-color 0.2s ease;
}
.why-pillar:hover {
  background-color: var(--color-mid-blue);
}

.why-pillar-divider {
  width: 1px;
  background-color: rgba(134,166,200,0.1);
  align-self: stretch;
}

.why-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(237,205,30,0.1);
  border: 1px solid rgba(237,205,30,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-pillar-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-pillar-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
  line-height: 1.3;
}

.why-pillar-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Legacy classes kept for safety */
.col-2 {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.col-2 .text-size-20 {
  font-size: 17px;
  line-height: 1.8;
}

/* ---- RESPONSIBLE SECTION — wrapper atmosphere ----------- */
.resp-section-wrap {
  position: relative;
}
/* Radial glow behind the grid — adds depth to the dark bg */
.resp-section-wrap::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(237,205,30,0.04) 0%,
    rgba(20,32,54,0.0) 65%
  );
  top: -200px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

/* ---- RESPONSIBLE SECTION HEADER ------------------------- */
.resp-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.resp-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin: 0 0 14px 0;
  opacity: 0.85;
}
.resp-header h2 {
  line-height: 1.12;
  letter-spacing: -0.01em;
}
/* Count badge in header — 09 responsibilities */
.resp-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 20px;
}
.resp-count::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(237,205,30,0.5);
}
.resp-header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}
.resp-header-right .text-size-20 {
  font-size: 16.5px;
  line-height: 1.84;
  color: rgba(255,255,255,0.48);
}

/* ================================================================
   RESPONSIBILITIES — Premium bento card grid
   ================================================================
   Layout: 3 cols × 4 rows
   A1 = hero-tall (col 1, rows 1–2) | A2 standard | A3 standard
   B1 = yellow accent               | B2 standard | B3 standard
   C1 = standard                    | C2 standard | C3 = hero-tall (rows 3–4)
   D  = wide panoramic (col 1–2)    |
   ─────────────────────────────────────────────────────────────── */

/* ── Grid container ──────────────────────── */
.rc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ── Explicit cell placement ─────────────── */
.rc-grid > .rc-card:nth-child(1) { grid-column: 1;     grid-row: 1 / 3; }
.rc-grid > .rc-card:nth-child(2) { grid-column: 2;     grid-row: 1; }
.rc-grid > .rc-card:nth-child(3) { grid-column: 3;     grid-row: 1; }
.rc-grid > .rc-card:nth-child(4) { grid-column: 2;     grid-row: 2; }
.rc-grid > .rc-card:nth-child(5) { grid-column: 3;     grid-row: 2; }
.rc-grid > .rc-card:nth-child(6) { grid-column: 1;     grid-row: 3; }
.rc-grid > .rc-card:nth-child(7) { grid-column: 2;     grid-row: 3; }
.rc-grid > .rc-card:nth-child(8) { grid-column: 1 / 3; grid-row: 4; }
.rc-grid > .rc-card:nth-child(9) { grid-column: 3;     grid-row: 3 / 5; }

/* ════════════════════════════════════════════════════════════════
   BASE CARD
   ════════════════════════════════════════════════════════════════ */
.rc-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Layered background: noise texture + solid dark */
  background-color: #0f1724;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #17222f 0%, #0f1724 60%, #111c28 100%);
  border: 1px solid rgba(134,166,200,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  transition:
    transform    0.32s cubic-bezier(0.16,1,0.3,1),
    box-shadow   0.32s ease,
    border-color 0.32s ease;
  cursor: default;
  min-height: 200px;
}

/* Inset overlay — top highlight + optional bottom glow (shared pseudo) */
.rc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* Default: top highlight only */
  background: linear-gradient(180deg,
    rgba(255,255,255,0.045) 0%,
    transparent 28%
  );
  pointer-events: none;
  z-index: 3;
  transition: background 0.4s ease;
}
/* Standard cards: add faint yellow bottom glow on hover */
.rc-card:not(.rc-hero):not(.rc-accent):not(.rc-wide-card):hover::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055) 0%, transparent 24%),
    linear-gradient(0deg, rgba(237,205,30,0.05) 0%, transparent 38%);
}

/* Yellow left-edge accent bar */
.rc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20px; bottom: 20px;
  width: 2px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--color-yellow) 0%, rgba(237,205,30,0.4) 100%);
  opacity: 0;
  transform: scaleY(0.3);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  z-index: 6;
}
.rc-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.rc-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.12),
    0 8px 24px rgba(0,0,0,0.35),
    0 32px 72px rgba(0,0,0,0.45),
    0 0 0 1px rgba(237,205,30,0.10);
  border-color: rgba(134,166,200,0.16);
}

/* ── Content wrapper ─────────────────────── */
.rc-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  flex: 1;
}

/* ── Top row: icon + index number ─────────── */
.rc-horiz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

/* ── Icon container ──────────────────────── */
.rc-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-yellow);
  background: rgba(237,205,30,0.065);
  border: 1px solid rgba(237,205,30,0.14);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.rc-card:hover .rc-icon-box {
  background: rgba(237,205,30,0.12);
  border-color: rgba(237,205,30,0.28);
  box-shadow: 0 0 0 4px rgba(237,205,30,0.06), 0 0 20px rgba(237,205,30,0.10);
}

/* Dark icon variant (used on yellow accent card) */
.rc-icon-box--dark {
  color: rgba(18,26,36,0.8);
  background: rgba(18,26,36,0.12);
  border-color: rgba(18,26,36,0.20);
}
.rc-accent:hover .rc-icon-box--dark {
  background: rgba(18,26,36,0.20);
  border-color: rgba(18,26,36,0.35);
  box-shadow: none;
}

/* ── Index number ────────────────────────── */
.rc-index {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.16);
  font-variant-numeric: tabular-nums;
  transition: color 0.28s;
  line-height: 1;
}
.rc-card:hover .rc-index { color: rgba(237,205,30,0.85); }
.rc-index--dark { color: rgba(18,26,36,0.32); }
.rc-accent:hover .rc-index--dark { color: rgba(18,26,36,0.65); }

/* ── Title ───────────────────────────────── */
.rc-name {
  font-size: 16.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin: 0 0 9px 0;
  line-height: 1.24;
  letter-spacing: -0.015em;
  transition: color 0.28s;
}
.rc-card:hover .rc-name { color: #fff; }
.rc-name--dark { color: rgba(18,26,36,0.90); }

/* ── Description ─────────────────────────── */
.rc-blurb {
  font-size: 13px;
  line-height: 1.82;
  color: rgba(255,255,255,0.38);
  margin: 0;
  flex: 1;
  transition: color 0.28s;
}
.rc-card:hover .rc-blurb { color: rgba(255,255,255,0.52); }
.rc-blurb--dark { color: rgba(18,26,36,0.52); }

/* ── Tags ────────────────────────────────── */
.rc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}
.rc-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 99px;
  padding: 4px 11px;
  white-space: nowrap;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.rc-card:hover .rc-tag {
  color: rgba(237,205,30,0.80);
  background: rgba(237,205,30,0.07);
  border-color: rgba(237,205,30,0.18);
}
.rc-tag--dark {
  color: rgba(18,26,36,0.42);
  background: rgba(18,26,36,0.09);
  border-color: rgba(18,26,36,0.14);
}
.rc-accent:hover .rc-tag--dark {
  color: rgba(18,26,36,0.72);
  background: rgba(18,26,36,0.14);
  border-color: rgba(18,26,36,0.26);
}

/* ════════════════════════════════════════════════════════════════
   DECORATIVE BACKGROUND NUMBER
   ════════════════════════════════════════════════════════════════ */
.rc-bg-num {
  position: absolute;
  right: -14px;
  bottom: -24px;
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  color: rgba(255,255,255,0.022);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.rc-card:hover .rc-bg-num {
  color: rgba(237,205,30,0.048);
  transform: translateY(-8px) scale(1.04);
}

/* ════════════════════════════════════════════════════════════════
   HERO TALL CARD  (col 1 rows 1–2 · col 3 rows 3–4)
   ════════════════════════════════════════════════════════════════ */
.rc-hero {
  background-color: #142036;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
    linear-gradient(150deg, #1d3354 0%, #142036 45%, #0e1b2e 100%);
  border-color: rgba(134,166,200,0.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.055),
    inset 0 0 80px rgba(20,32,54,0.4);
}
.rc-hero:hover {
  border-color: rgba(237,205,30,0.18);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.15),
    0 12px 32px rgba(0,0,0,0.40),
    0 40px 80px rgba(0,0,0,0.50),
    0 0 0 1px rgba(237,205,30,0.14),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Ambient glow spot that drifts in on hover */
.rc-hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,205,30,0.07) 0%, transparent 65%);
  top: -100px; left: -80px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.rc-hero:hover .rc-hero-glow {
  opacity: 1;
  transform: scale(1);
}

/* Hero body wrapper — desktop: transparent flex column (inherits from .rc-content flow)
   Mobile: becomes the flex-filling right column in a row layout */
.rc-hero-body {
  display: contents; /* on desktop, children participate directly in .rc-content flex */
}

/* Hero icon — larger, standalone */
.rc-hero .rc-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: rgba(237,205,30,0.08);
  border-color: rgba(237,205,30,0.18);
  margin-bottom: 22px;
}
.rc-hero:hover .rc-icon-box {
  background: rgba(237,205,30,0.14);
  border-color: rgba(237,205,30,0.34);
  box-shadow: 0 0 0 5px rgba(237,205,30,0.05), 0 0 28px rgba(237,205,30,0.14);
}

/* Hero index — always yellow, sits below the icon */
.rc-hero .rc-index {
  font-size: 11px;
  color: var(--color-yellow);
  opacity: 0.50;
  margin-bottom: 12px;
  display: block;
  transition: opacity 0.28s;
}
.rc-hero:hover .rc-index { opacity: 1; }

/* Hero title — larger, tighter leading */
.rc-hero .rc-name {
  font-size: 26px;
  margin-bottom: 14px;
  letter-spacing: -0.028em;
  line-height: 1.16;
}
.rc-hero:hover .rc-name { color: #fff; }

/* Hero description — more visible */
.rc-hero .rc-blurb {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.85;
}
.rc-hero:hover .rc-blurb { color: rgba(255,255,255,0.62); }

/* Hero bg number — oversized for drama */
.rc-hero .rc-bg-num {
  font-size: 220px;
  right: -22px;
  bottom: -34px;
  color: rgba(255,255,255,0.018);
}
.rc-hero:hover .rc-bg-num {
  color: rgba(237,205,30,0.042);
  transform: translateY(-10px) scale(1.04);
}

/* Thin rule separating icon area from body in hero */
.rc-hero-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(134,166,200,0.14) 0%,
    rgba(134,166,200,0.04) 60%,
    transparent 100%
  );
  margin: 18px 0;
  flex-shrink: 0;
}

/* Eyebrow label (right hero — "Always On Standard") */
.rc-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-yellow);
  opacity: 0.60;
  margin-bottom: 10px;
  display: block;
  transition: opacity 0.28s;
}
.rc-hero:hover .rc-hero-eyebrow { opacity: 1; }

/* Stat row (optional — hero left only) */
.rc-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(134,166,200,0.10);
}
.rc-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rc-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-yellow);
  letter-spacing: -0.03em;
  line-height: 1;
}
.rc-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

/* ════════════════════════════════════════════════════════════════
   YELLOW ACCENT CARD  (Budget Management)
   ════════════════════════════════════════════════════════════════ */
.rc-accent {
  background: linear-gradient(148deg, #f5d520 0%, #edcd1e 55%, #dfc015 100%);
  border-color: rgba(237,205,30,0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}
.rc-accent::before { background: rgba(18,26,36,0.7); }
.rc-accent::after {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.22) 0%,
    transparent 40%
  );
}
.rc-accent:hover {
  background: linear-gradient(148deg, #f8d924 0%, #f2d01f 55%, #e4c418 100%);
  border-color: rgba(255,255,255,0.25);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.08),
    0 12px 32px rgba(237,205,30,0.30),
    0 40px 72px rgba(237,205,30,0.22),
    inset 0 1px 0 rgba(255,255,255,0.40);
}
.rc-accent .rc-bg-num {
  color: rgba(18,26,36,0.06);
}
.rc-accent:hover .rc-bg-num {
  color: rgba(18,26,36,0.09);
  transform: translateY(-8px) scale(1.04);
}

/* ════════════════════════════════════════════════════════════════
   WIDE PANORAMIC CARD  (col 1–2, row 4)
   ════════════════════════════════════════════════════════════════ */
.rc-wide-card {
  background-color: #111d2e;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
    linear-gradient(105deg, #1a2f48 0%, #111d2e 40%, #162438 100%);
  border-color: rgba(134,166,200,0.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.rc-wide-card:hover {
  border-color: rgba(237,205,30,0.16);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.12),
    0 12px 32px rgba(0,0,0,0.38),
    0 40px 72px rgba(0,0,0,0.42),
    0 0 0 1px rgba(237,205,30,0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
/* Wide card: horizontal three-part layout */
.rc-wide-card .rc-content {
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 30px 36px;
  min-height: 96px;
}
.rc-wide-card .rc-wide-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
  width: 80px;
}
.rc-wide-card .rc-wide-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 36px;
  border-left: 1px solid rgba(134,166,200,0.09);
  border-right: 1px solid rgba(134,166,200,0.09);
  margin: 0 4px;
}
/* Tags inside wide-body are desktop-hidden (shown only on mobile via @media) */
.rc-wide-card .rc-wide-body .rc-tags { display: none; }
.rc-wide-card .rc-wide-right {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.rc-wide-card .rc-tags {
  margin-top: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.rc-wide-card .rc-tag { text-align: right; }
.rc-wide-card .rc-name { font-size: 17px; margin: 0; }
.rc-wide-card .rc-blurb { margin: 0; }
.rc-wide-card .rc-bg-num {
  font-size: 140px;
  right: -10px;
  bottom: -22px;
}
/* Wide card divider lines glow on hover */
.rc-wide-card:hover .rc-wide-body {
  border-color: rgba(237,205,30,0.12);
}

/* ---- MOBILE-ONLY INJECTED ELEMENTS (hidden on desktop) -- */
/* JS only injects these on mobile; belt-and-suspenders hide on desktop */
.days-card-mobile-header { display: none; }
.days-card-chevron        { display: none; }
.rc-card-mobile-header    { display: none; }
.rc-card-mob-body         { display: none; }

/* ---- RESPONSIBLE SECTION label overrides (legacy) ------- */
.pm-responsible_card .text-style-allcaps {
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* ---- 90 DAYS SECTION ------------------------------------ */

/* Header */
.days-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.days-header-top { display: flex; flex-direction: column; gap: 12px; }
.days-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mid-blue);
  margin: 0;
}
.days-header h2 { color: var(--color-dark-blue); }
.days-header-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(18,26,36,0.6);
  margin: 0;
  align-self: end;
}

/* Progress track */
.days-track {
  position: relative;
  padding-bottom: 28px;
}
.days-track-bar {
  height: 4px;
  background-color: rgba(39,52,71,0.1);
  border-radius: 99px;
  overflow: hidden;
}
.days-track-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--color-mid-blue) 0%, var(--color-yellow) 100%);
  border-radius: 99px;
}
.days-track-labels {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.days-track-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(18,26,36,0.35);
}
.days-track-label--marker {
  position: absolute;
  transform: translateX(-50%);
}
.days-track-label--end {
  color: var(--color-dark-blue);
  font-weight: 700;
}

/* Card grid — 2 cols top, full-width bottom */
.days-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- Base card ------------------------------------------ */
.days-card {
  background-color: #f5f7fa;
  border: 1px solid rgba(39,52,71,0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.days-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(39,52,71,0.1);
}

/* Dark variant — Day 60 cards */
.days-card--dark {
  background-color: var(--color-dark-blue);
  border-color: transparent;
}
.days-card--dark .days-card-title { color: var(--color-white); }
.days-card--dark .days-card-desc  { color: rgba(255,255,255,0.55); }
.days-card--dark:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.25); }

/* Yellow variant — Day 90 full-width */
.days-card--yellow {
  background-color: var(--color-yellow);
  border-color: transparent;
}
.days-card--yellow:hover { box-shadow: 0 12px 32px rgba(237,205,30,0.3); }

/* Full-width card */
.days-card--full {
  grid-column: 1 / -1;
  padding: 36px 40px;
}

/* Card top row — badge + icon */
.days-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Day badge */
.days-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mid-blue);
  background-color: rgba(39,52,71,0.08);
  border-radius: 99px;
  padding: 5px 12px;
  white-space: nowrap;
}
.days-badge--yellow {
  background-color: var(--color-yellow);
  color: var(--color-dark-blue);
}
.days-badge--dark {
  background-color: var(--color-dark-blue);
  color: var(--color-yellow);
}

/* Icon container */
.days-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(39,52,71,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.days-icon--dark {
  background-color: rgba(255,255,255,0.07);
}

/* Card body */
.days-card-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.days-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-dark-blue);
  margin: 0;
}
.days-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(18,26,36,0.58);
  margin: 0;
}

/* Category tag at bottom */
.days-card-check {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(39,52,71,0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid-blue);
}
.days-card-check--light {
  border-top-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}

/* Full-width (Day 90) inner layout */
.days-card-full-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.days-card-full-left { display: flex; flex-direction: column; gap: 20px; }
.days-card-full-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

/* Final big icon */
.days-final-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background-color: rgba(18,26,36,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats row */
.days-final-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: rgba(18,26,36,0.08);
  border-radius: 12px;
  padding: 18px 24px;
  width: 100%;
}
.days-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  align-items: center;
}
.days-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark-blue);
  line-height: 1;
}
.days-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18,26,36,0.5);
}
.days-stat-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(18,26,36,0.15);
  flex-shrink: 0;
  margin: 0 4px;
}

/* ---- SKILLS / ACCORDION SECTION -------------------------- */
.skills-header {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.skills-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skills-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
  background: rgba(237, 205, 30, 0.1);
  border: 1px solid rgba(237, 205, 30, 0.25);
  padding: 5px 14px;
  border-radius: 100px;
  width: fit-content;
}

.skills-headline {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin: 0;
}

.skills-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0;
}

/* CTA card on the right */
.skills-header-right {
  position: sticky;
  top: 100px;
}

.skills-cta-card {
  background: var(--color-mid-blue);
  border: 1.5px solid rgba(134, 166, 200, 0.18);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.skills-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-yellow) 0%, rgba(237,205,30,0.3) 100%);
}

.skills-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.skills-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-yellow);
  margin: 0 0 2px;
  line-height: 1.1;
}

.skills-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 12px;
}

.skills-cta-btn {
  width: 100%;
  justify-content: center;
  gap: 0;
  padding: 15px 24px;
  border-radius: 8px;
  font-size: 13px;
}

.skills-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 4px 0 0;
}

.deiliver-item_wrapper {
  border: 1.5px solid rgba(134, 166, 200, 0.2);
  border-radius: 14px;
  overflow: hidden;
}

.deliver-item {
  border-bottom: 1.5px solid rgba(134, 166, 200, 0.15);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.deliver-item:last-child { border-bottom: none; }

.deliver-item.is-blue { background-color: var(--color-dark-blue-2); }
.deliver-item.is-blue.is-open { background-color: var(--color-mid-blue); }

.deliver-item_head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  user-select: none;
  transition: color 0.2s;
}
.deliver-item.is-open .deliver-item_head { color: var(--color-yellow); }

/* Accordion chevron arrow */
.accordion-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  color: rgba(255,255,255,0.45);
}
.deliver-item.is-open .accordion-chevron {
  transform: rotate(180deg);
  background: rgba(237,205,30,0.12);
  color: var(--color-yellow);
}

.is-deliver-item_head {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  font-weight: 700;
}

/* Accordion slide open/close */
.deliver-item_card-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.deliver-item.is-open .deliver-item_card-wrapper {
  max-height: 1200px;
}

.deliver-item_card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 40px 36px 56px 36px;
  align-items: start;
}

.deliver-item_card-head {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.deliver-item_card-head h3 {
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin: 0;
  line-height: 1.05;
}

/* Accordion body text */
.deliver-item_card .text-size-20,
.deliver-item_card p.opacity-72 {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.deliver-item_img {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}
.deliver-item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- DIVIDERS ------------------------------------------- */
.devider-horizontal {
  height: 1px;
  background-color: rgba(255,255,255,0.72);
}
.devider-horizontal.opacity-10 { opacity: 0.1; }

/* ---- ABOUT SECTION -------------------------------------- */
.about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-left h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  color: var(--color-white);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.about-left .text-size-20 {
  font-size: 17px;
  line-height: 1.8;
}
.about-left .text-size-20.opacity-72 {
  font-size: 17px;
}
.about-left .hflex .text-size-20 {
  font-size: 16px;
}

/* ---- FORM SECTION --------------------------------------- */
.pm-form-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
.ghl-section-header h2 {
  text-transform: uppercase;
}

/* ── FOOTER REDESIGN ─────────────────────────────────────── */
.footer-redesign {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  position: relative;
}

/* Yellow accent line at very top of footer */
.footer-accent-bar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-yellow) 0%, transparent 100%);
}

/* Three-column main body */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 0 48px;
  align-items: start;
  padding: 72px 0 56px;
}

/* Vertical divider */
.footer-v-divider {
  width: 1px;
  align-self: stretch;
  background-color: rgba(134, 166, 200, 0.15);
  margin-top: 4px;
}

/* ── Brand column ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
}

/* Social row */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(237, 205, 30, 0.1);
  border: 1px solid rgba(237, 205, 30, 0.25);
  color: var(--color-yellow);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.footer-social-btn:hover {
  background-color: rgba(237, 205, 30, 0.2);
  border-color: rgba(237, 205, 30, 0.5);
}

/* ── Contact column ── */
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-item:hover { color: var(--color-white); }

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background-color: rgba(134, 166, 200, 0.08);
  color: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA column ── */
.footer-cta-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-cta-role {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

.footer-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-yellow);
  background-color: rgba(237, 205, 30, 0.1);
  border: 1px solid rgba(237, 205, 30, 0.25);
  border-radius: 4px;
  padding: 4px 10px;
}

.footer-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: var(--color-yellow);
  color: var(--color-dark-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s ease;
  align-self: flex-start;
  margin-top: 4px;
}
.footer-apply-btn:hover { opacity: 0.88; }

/* ── Bottom bar ── */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(134,166,200,0.12);
  padding: 20px 0 32px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}
.footer-copy--muted { color: rgba(255,255,255,0.25); }

/* ── CrewForge powered-by strip ── */
.crewforge-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background-color: rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(134, 166, 200, 0.08);
  flex-wrap: wrap;
}

.crewforge-powered {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.crewforge-logo {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-yellow);
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.crewforge-logo:hover { opacity: 1; }

.crewforge-divider {
  color: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.crewforge-tagline {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .crewforge-strip {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .crewforge-divider { display: none; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px 0;
    padding: 48px 0 40px;
  }
  .footer-v-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
    margin: 0;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ---- HERO META CARD GRID -------------------------------- */
.hero-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Full-width card (spans both columns) */
.hero-meta-card--full {
  grid-column: 1 / -1;
}

.hero-meta-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: var(--color-dark-blue-2);
  border: 1px solid rgba(134, 166, 200, 0.12);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.hero-meta-card:hover {
  border-color: rgba(134, 166, 200, 0.28);
  background-color: var(--color-mid-blue);
}

/* Highlighted (salary) card */
.hero-meta-card--highlight {
  background-color: var(--color-yellow);
  border-color: transparent;
}
.hero-meta-card--highlight:hover {
  background-color: #f5d832;
  border-color: transparent;
}

.hero-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(134, 166, 200, 0.1);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-meta-card--highlight .hero-meta-icon {
  background-color: rgba(18, 26, 36, 0.12);
}

.hero-meta-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.hero-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-light-blue);
  line-height: 1;
}

.hero-meta-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}

.hero-meta-note {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* ---- HERO RIGHT metadata row overrides (legacy, kept for safety) -- */
.pm-hero_right .hflex.is-gap-16 {
  align-items: flex-start;
  flex-wrap: wrap;
}

/* ---- RESPONSIBLE SECTION label overrides --------------- */
.pm-responsible_card .text-style-allcaps {
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
  .pm-hero_body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pm-hero_left h1 { font-size: 52px; }
  .two-col-grid    { grid-template-columns: 1fr; gap: 40px; }

  .why-images         { grid-template-columns: 1fr; }
  .why-img-main       { min-height: 380px; }
  .why-img-secondary  { min-height: 220px; }
  .why-pillars        { grid-template-columns: 1fr; }
  .why-pillar-divider { width: auto; height: 1px; align-self: auto; }

  .resp-header { grid-template-columns: 1fr; gap: 20px; }

  /* ── Responsibilities — tablet: 2 columns ──────── */
  .rc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  /* Reset all explicit placements, then re-specify */
  .rc-grid > .rc-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  /* Hero tall cards span a full column of 2 rows */
  .rc-grid > .rc-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .rc-grid > .rc-card:nth-child(9) { grid-column: 2; grid-row: 3 / 5; }
  /* Wide panoramic: full width */
  .rc-grid > .rc-card:nth-child(8) { grid-column: 1 / 3; }
  /* Others: auto */
  .rc-grid > .rc-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .rc-grid > .rc-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .rc-grid > .rc-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .rc-grid > .rc-card:nth-child(5) { grid-column: 1; grid-row: 4; }
  .rc-grid > .rc-card:nth-child(6) { grid-column: 2; grid-row: 5; }
  .rc-grid > .rc-card:nth-child(7) { grid-column: 1; grid-row: 5; }
  .rc-content { padding: 24px 24px 20px; }
  .rc-hero .rc-name { font-size: 21px; }
  .rc-name { font-size: 15.5px; }
  .rc-bg-num { font-size: 110px; }
  .rc-hero .rc-bg-num { font-size: 170px; }
  .rc-stat-val { font-size: 19px; }
  .rc-stat-row { gap: 18px; margin-top: 20px; padding-top: 16px; }
  /* Wide card: compress on tablet */
  .rc-wide-card .rc-content { padding: 26px 28px; gap: 0; }
  .rc-wide-card .rc-wide-body { padding: 0 24px; }
  .rc-wide-card .rc-wide-right { width: 100px; }
  .deliver-item_card   { grid-template-columns: 1fr; gap: 36px; }
  .days-header         { grid-template-columns: 1fr; gap: 20px; }
  .skills-header        { grid-template-columns: 1fr; gap: 32px; }
  .skills-header-right  { position: static; }
  .skills-cta-card      { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; }
  .skills-cta-title     { font-size: 22px; }
  .skills-cta-btn       { width: auto; }
  .days-grid           { grid-template-columns: 1fr; }
  .days-card--full     { padding: 28px; }
  .days-card-full-inner { grid-template-columns: 1fr; gap: 28px; }
  .days-card-full-right { align-items: flex-start; }
  .footer-top-grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer-divider      { display: none; }
  .footer-bottom-grid  { grid-template-columns: 1fr 1fr; }
  .h-120 { height: 80px; }
  /* .pm-hero_img replaced by .hero-carousel */
  .h-640, .h-688, .h-624 { height: 420px; }
  .deliver-item_card-head h3 { font-size: 36px; }
  .padding-section-148    { padding-top: 100px; padding-bottom: 100px; }
  .padding-section-148-74 { padding-top: 100px; padding-bottom: 64px; }
  .padding-section-74-148 { padding-top: 64px;  padding-bottom: 100px; }
  .padding-section-72-148 { padding-top: 64px;  padding-bottom: 100px; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {

  /* ══════════════════════════════════════════
     GLOBAL SPACING — tighter everywhere
  ══════════════════════════════════════════ */
  .padding-section-148    { padding-top: 36px;  padding-bottom: 36px; }
  .padding-section-148-74 { padding-top: 36px;  padding-bottom: 28px; }
  .padding-section-74-148 { padding-top: 28px;  padding-bottom: 36px; }
  .padding-section-72-148 { padding-top: 28px;  padding-bottom: 36px; }
  .padding-section-72     { padding-top: 28px;  padding-bottom: 28px; }
  .margin-b-72            { margin-bottom: 20px !important; }
  .margin-b-40            { margin-bottom: 16px !important; }
  .margin-b-32            { margin-bottom: 12px !important; }
  .margin-b-24            { margin-bottom: 10px !important; }
  .h-120                  { height: 52px; }
  .text-size-20           { font-size: 14px; line-height: 1.6; }
  .text-size-14           { font-size: 13px; }
  section h2              { font-size: 22px; line-height: 1.1; }

  /* ── NAVBAR ── */
  .pm-nav_logo { height: 32px; }

  /* ══════════════════════════════════════════
     HERO SECTION
  ══════════════════════════════════════════ */
  .pm-hero_left h1 {
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: 0.02em;
    margin-bottom: 10px !important;
  }
  /* Hide the body copy — tagline alone is enough above the meta cards */
  .pm-hero_left .mw-932 { display: none; }

  /* Meta cards: 2-col grid, ultra-compact */
  .hero-meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .hero-meta-card--full { grid-column: 1 / -1; }
  .hero-meta-card {
    padding: 10px 11px;
    gap: 9px;
  }
  .hero-meta-icon { width: 26px; height: 26px; min-width: 26px; }
  .hero-meta-icon svg { width: 14px; height: 14px; }
  .hero-meta-label { font-size: 8.5px; }
  .hero-meta-value { font-size: 13px; }
  .hero-meta-note  { font-size: 9.5px; }

  /* Hide the Apply Now button in the hero — nav CTA is enough */
  .apply-btn-wrap { display: none; }

  /* ── HERO CAROUSEL — hidden on mobile to save ~200px ── */
  .hero-carousel-section { display: none; }

  /* ══════════════════════════════════════════
     WHY THIS ROLE MATTERS
  ══════════════════════════════════════════ */
  .why-section .why-top { margin-bottom: 16px !important; }
  .why-top-left { gap: 10px; }
  .why-heading  { font-size: 22px; line-height: 1.08; }
  .why-intro    { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
  .why-eyebrow  { font-size: 9.5px; margin-bottom: 6px; }

  /* Hide image block entirely — saves ~460px */
  .why-images { display: none; }

  /* Pillars: ultra-compact single column */
  .why-pillars        { grid-template-columns: 1fr; gap: 0; border-radius: 12px; }
  .why-pillar-divider { width: auto; height: 1px; align-self: auto; }
  .why-pillar         { padding: 14px 16px; gap: 10px; }
  .why-pillar-icon    { width: 28px; height: 28px; min-width: 28px; }
  .why-pillar-icon svg { width: 16px; height: 16px; }
  .why-pillar-title   { font-size: 13px; margin-bottom: 2px; }
  .why-pillar-desc    { font-size: 12.5px; line-height: 1.55; }
  .why-stat-num       { font-size: 18px; }

  /* ══════════════════════════════════════════
     RESPONSIBILITIES
  ══════════════════════════════════════════ */
  .resp-header.margin-b-72 { margin-bottom: 14px !important; }

  .resp-header {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: flex-start;
  }
  .resp-header-left { width: 100%; }

  .resp-eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.16em;
    margin: 0 0 6px 0;
    opacity: 0.7;
  }
  .resp-header h2 {
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 1.12;
  }
  .resp-count { display: none; }

  /* Collapse right-side descriptor — save a full line of height */
  .resp-header-right { display: none; }

  /* Grid: single column, 2px hairline gap */
  .rc-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    align-items: start;
  }
  .rc-grid > .rc-card:nth-child(n) {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  /* Base card shell */
  /* Every card: block, no min-height — accordion header controls the height */
  .rc-card,
  .rc-card.rc-hero,
  .rc-card.rc-wide-card {
    display: block !important;
    min-height: 0 !important;
    border-radius: 8px;
    overflow: hidden;
  }

  .rc-card::before  { display: none; }
  .rc-card::after   { background: none !important; }
  .rc-bg-num        { display: none; }
  .rc-hero-glow     { display: none; }

  /* ── RC-CARD MOBILE ACCORDION HEADER ────────────────────────
     Injected by JS into every standard + hero + wide card.
     Shows: icon · index · title · chevron in one tap-target row. */
  .rc-card-mobile-header {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px 9px 10px;
    cursor: pointer;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
  }
  .rc-card-mobile-header .rc-icon-box {
    flex-shrink: 0;
    width: 28px !important;
    height: 28px !important;
    border-radius: 7px !important;
    margin-bottom: 0 !important;
  }
  .rc-card-mobile-header .rc-mob-index {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.20);
    line-height: 1;
    flex-shrink: 0;
  }
  .rc-card-mobile-header .rc-mob-index--dark { color: rgba(18,26,36,0.28); }
  .rc-card-mobile-header .rc-mob-title {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .rc-card-mobile-header .rc-mob-title--dark { color: #121A24; }
  .rc-card-mobile-header .rc-mob-chevron {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.26s ease, background 0.2s ease;
    color: rgba(255,255,255,0.45);
  }
  .rc-accent .rc-card-mobile-header .rc-mob-chevron {
    background: rgba(18,26,36,0.10);
    color: rgba(18,26,36,0.5);
  }

  /* Collapsible body — re-enable on mobile (base CSS hides it on desktop) */
  .rc-card-mob-body {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.32s ease, padding 0.24s ease;
    padding: 0 12px 0 10px;
  }
  .rc-card-mob-body-inner {
    padding-bottom: 11px;
    border-top: 1px solid rgba(134,166,200,0.10);
    padding-top: 9px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .rc-accent .rc-card-mob-body-inner {
    border-top-color: rgba(18,26,36,0.10);
  }

  /* Open state */
  .rc-card.is-open .rc-card-mob-body {
    max-height: 220px;
  }
  .rc-card.is-open .rc-card-mobile-header .rc-mob-chevron {
    transform: rotate(180deg);
    background: rgba(255,255,255,0.13);
  }
  .rc-accent.is-open .rc-card-mobile-header .rc-mob-chevron {
    background: rgba(18,26,36,0.16);
  }

  /* Hide the original rc-content entirely — replaced by accordion UI */
  .rc-card:not(.rc-hero):not(.rc-wide-card) .rc-content { display: none; }

  /* Hero card: keep rc-content visible but also collapsible */
  .rc-hero .rc-content,
  .rc-wide-card .rc-content { display: none; }

  /* Left pillar (unused in accordion but kept for desktop) */
  .rc-horiz {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: 28px;
    flex-shrink: 0;
    margin-bottom: 0;
    padding-top: 1px;
  }
  .rc-icon-box {
    width: 28px; height: 28px;
    border-radius: 7px;
    flex-shrink: 0;
  }
  .rc-index {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.16);
    line-height: 1;
    display: block;
  }
  .rc-index--dark { color: rgba(18,26,36,0.22); }

  /* Right body (hidden — content lives in .rc-card-mob-body instead) */
  .rc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 0;
  }
  .rc-name {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.24;
    margin: 0 0 3px 0;
    letter-spacing: -0.01em;
  }
  .rc-blurb {
    font-size: 11px;
    line-height: 1.55;
    color: rgba(255,255,255,0.34);
    margin: 0;
    flex: none;
  }
  .rc-tags  { margin-top: 5px; gap: 3px; flex-wrap: wrap; }
  .rc-tag   { font-size: 8px; padding: 2px 6px; letter-spacing: 0.05em; white-space: nowrap; }

  /* Accent card (04) */
  .rc-accent .rc-blurb--dark { font-size: 11px; line-height: 1.55; color: rgba(18,26,36,0.52); }
  .rc-accent .rc-tag--dark   { font-size: 8px; padding: 2px 6px; }

  /* Hero cards (01 & 09) — content hidden; accordion header takes over */
  .rc-hero .rc-content  { display: none !important; }
  .rc-hero-rule         { display: none; }
  .rc-hero-eyebrow      { display: none; }

  /* Stat row */
  .rc-stat-row {
    flex-direction: row;
    gap: 10px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(134,166,200,0.10);
  }
  .rc-stat-val { font-size: 11px; letter-spacing: -0.01em; }
  .rc-stat-lbl { font-size: 7px; letter-spacing: 0.05em; }

  /* Wide card (08) — content hidden; accordion header takes over */
  .rc-wide-card .rc-content { display: none !important; }
  .rc-wide-card .rc-wide-left {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 28px;
    flex-shrink: 0;
    gap: 4px;
    min-width: unset;
    padding-top: 1px;
  }
  .rc-wide-card .rc-wide-left .rc-icon-box { width: 28px; height: 28px; border-radius: 7px; }
  .rc-wide-card .rc-wide-left .rc-index    { font-size: 8px; letter-spacing: 0.06em; color: rgba(255,255,255,0.18); line-height: 1; }
  .rc-wide-card .rc-wide-body {
    flex: 1; min-width: 0; padding: 0;
    border-left: none; border-right: none; margin: 0;
    gap: 3px; display: flex; flex-direction: column;
  }
  .rc-wide-card .rc-wide-body::after { display: none; }
  .rc-wide-card .rc-name  { font-size: 12.5px; margin: 0 0 3px 0; }
  .rc-wide-card .rc-blurb { font-size: 11px; line-height: 1.6; }
  .rc-wide-card .rc-wide-body .rc-tags { display: flex; flex-direction: row; flex-wrap: wrap; gap: 3px; margin-top: 5px; }
  .rc-wide-card .rc-wide-body .rc-tag  { font-size: 8px; padding: 2px 6px; }
  .rc-wide-card .rc-wide-right { display: none; }

  /* ══════════════════════════════════════════
     FIRST 90 DAYS
  ══════════════════════════════════════════ */

  /* Hide the progress bar track entirely — saves ~72px */
  .days-track { display: none; }

  /* Section header: tighter */
  .days-header.margin-b-72 { margin-bottom: 14px !important; }
  .days-header { gap: 8px; }
  .days-eyebrow { font-size: 9.5px; }
  .days-header-sub { font-size: 13px; line-height: 1.55; }

  /* Cards grid */
  .days-grid { grid-template-columns: 1fr; gap: 3px; }

  /* Collapsed accordion cards (1–4) */
  .days-card:not(.days-card--full) {
    padding: 10px 13px;
    gap: 0;
    cursor: pointer;
    border-radius: 8px;
  }
  .days-card:not(.days-card--full) .days-card-top,
  .days-card:not(.days-card--full) .days-card-check { display: none; }
  .days-card:not(.days-card--full) .days-card-body {
    flex: none;
    overflow: hidden;
    max-height: 0;
    margin-top: 0;
    gap: 0;
    transition: max-height 0.32s ease, margin-top 0.28s ease, gap 0.2s ease;
  }
  .days-card:not(.days-card--full) .days-card-desc { font-size: 12.5px; line-height: 1.55; }

  /* Mobile accordion header row */
  .days-card-mobile-header { display: flex; align-items: center; gap: 8px; width: 100%; }
  .days-card-mobile-header .days-badge      { flex-shrink: 0; font-size: 8px; padding: 2px 7px; }
  .days-card-mobile-header .days-icon       { flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; }
  .days-card-mobile-header .days-card-title { flex: 1; font-size: 12.5px; font-weight: 600; margin: 0; line-height: 1.28; }

  .days-card-chevron {
    flex-shrink: 0; width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(39,52,71,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.28s ease, background 0.2s ease;
    color: var(--color-dark-blue);
  }
  .days-card--dark .days-card-chevron { background: rgba(255,255,255,0.08); color: var(--color-white); }

  /* Open state */
  .days-card:not(.days-card--full).is-open { padding: 12px 13px 14px; gap: 0; }
  .days-card:not(.days-card--full).is-open .days-card-body { max-height: 180px; margin-top: 8px; gap: 4px; }
  .days-card:not(.days-card--full).is-open .days-card-check { display: flex; margin-top: 8px; padding-top: 8px; }
  .days-card:not(.days-card--full).is-open .days-card-chevron { transform: rotate(180deg); background: rgba(39,52,71,0.15); }
  .days-card--dark.is-open .days-card-chevron { background: rgba(255,255,255,0.15); }

  /* Day 90 full-width card — collapsed accordion, same pattern as cards 1–4 */
  .days-card--full {
    padding: 10px 13px;
    gap: 0;
    cursor: pointer;
    border-radius: 8px;
  }
  /* Hide the entire inner content by default */
  .days-card--full .days-card-full-inner {
    overflow: hidden;
    max-height: 0;
    margin-top: 0;
    transition: max-height 0.36s ease, margin-top 0.28s ease;
  }
  /* Open state — reveal inner content */
  .days-card--full.is-open .days-card-full-inner {
    max-height: 600px;
    margin-top: 10px;
  }
  .days-card--full.is-open .days-card-chevron {
    transform: rotate(180deg);
    background: rgba(18,26,36,0.16);
  }
  /* Inner layout when expanded */
  .days-card-full-inner     { grid-template-columns: 1fr; gap: 12px; }
  .days-card--full .days-card-title { font-size: 15px !important; color: #121A24 !important; }
  .days-card--full .days-card-desc  { font-size: 12.5px !important; line-height: 1.55 !important; color: rgba(18,26,36,0.65) !important; }
  .days-final-icon          { width: 36px; height: 36px; }
  .days-final-icon svg      { width: 22px; height: 22px; }
  .days-final-stats         { width: auto; gap: 10px; }
  .days-stat-num            { font-size: 16px; }
  .days-stat-label          { font-size: 9.5px; }

  /* ══════════════════════════════════════════
     SKILLS & QUALIFICATIONS
  ══════════════════════════════════════════ */
  .skills-header {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .skills-headline { font-size: 20px; line-height: 1.08; }
  .skills-subtext  { font-size: 12.5px; }
  .skills-eyebrow  { font-size: 9.5px; }

  /* CTA card: ultra-slim strip */
  .skills-header-right { position: static; }
  .skills-cta-card {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 8px;
  }
  .skills-cta-card::before { height: 2px; }
  .skills-cta-label  { display: none; }
  .skills-cta-title  { font-size: 14px; margin: 0; flex-shrink: 0; }
  .skills-cta-sub    { font-size: 10.5px; margin: 0; flex: 1 1 100%; order: 3; }
  .skills-cta-btn    { width: auto; flex-shrink: 0; padding: 8px 14px; font-size: 11.5px; order: 2; }
  .skills-cta-note   { display: none; }

  /* ══════════════════════════════════════════
     SKILLS ACCORDION — mobile redesign
     Matches the rc-card dark-panel system
  ══════════════════════════════════════════ */

  /* Wrapper: gap-based stack, no outer border (rows self-border) */
  .deiliver-item_wrapper {
    border: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: visible;
  }

  /* Each row: dark card background, rounded, self-contained */
  .deliver-item {
    background-color: #0f1724;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"),
      linear-gradient(160deg, #17222f 0%, #0f1724 60%, #111c28 100%);
    border: 1px solid rgba(134,166,200,0.08) !important;
    border-bottom: 1px solid rgba(134,166,200,0.08) !important;
    border-radius: 10px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
    overflow: hidden;
    transition: border-color 0.22s ease, background-color 0.22s ease;
  }

  /* Collapsed: plain dark — open: very subtle highlight on border only */
  .deliver-item.is-blue     { background-color: transparent; }
  .deliver-item.is-blue.is-open {
    background-color: transparent;
    border-color: rgba(134,166,200,0.18) !important;
  }

  /* ── Header strip (collapsed tap target) ── */
  .deliver-item_head {
    padding: 10px 12px 10px 10px;
    gap: 9px;
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    border-radius: 0;
  }

  /* Number pill — identical to rc-mob-index box */
  .deliver-item_head > .text-size-20:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 7px;
    background: rgba(134,166,200,0.09);
    border: 1px solid rgba(134,166,200,0.12);
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.38);
    flex-shrink: 0;
  }

  /* Title — identical to rc-mob-title */
  .deliver-item_head .is-deliver-item_head {
    flex: 1;
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    color: var(--color-white);
  }
  .deliver-item.is-open .deliver-item_head .is-deliver-item_head {
    color: var(--color-white);
  }

  /* Chevron — identical to rc-mob-chevron */
  .accordion-chevron {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.40);
    margin-left: 0;
    transition: transform 0.26s ease, background 0.2s ease, color 0.2s ease;
  }
  .deliver-item.is-open .accordion-chevron {
    transform: rotate(180deg);
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.70);
  }

  /* No yellow override on open header — keep white */
  .deliver-item.is-open .deliver-item_head { color: rgba(255,255,255,0.88); }

  /* ── Open panel content ── */
  /* Top separator line between header and body */
  .deliver-item.is-open .deliver-item_card-wrapper {
    border-top: 1px solid rgba(134,166,200,0.10);
  }

  .deliver-item_card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 12px 14px;
  }

  /* Hide the redundant h3 title (already shown in the header strip) */
  .deliver-item_card-head h3 { display: none; }

  .deliver-item_card-head { gap: 10px; }
  .deliver-item_card .hflex.is-gap-16           { gap: 9px; }
  .deliver-item_card .hflex.is-gap-16.margin-b-40 { margin-bottom: 9px; }
  .deliver-item_card .icon.is-36x36             { width: 22px; height: 22px; min-width: 22px; flex-shrink: 0; }
  .deliver-item_card .icon.is-36x36 svg         { width: 16px; height: 16px; }
  .deliver-item_card .icon.is-36x36 img         { width: 16px; height: 16px; }
  .deliver-item_card .vflex.is-gap-32           { gap: 9px; }
  .deliver-item_card .text-size-20,
  .deliver-item_card p.opacity-72               { font-size: 12.5px; line-height: 1.5; }

  /* Hide panel photo — saves ~240px per panel */
  .deliver-item_img { display: none; }

  /* ══════════════════════════════════════════
     ABOUT BURNS CONSTRUCTION
  ══════════════════════════════════════════ */
  /* Hide the About image entirely — saves ~200px */
  .two-col-grid .h-640 { display: none; }
  .two-col-grid { grid-template-columns: 1fr; gap: 0; }
  .about-left p { font-size: 13px; line-height: 1.6; }
  .about-left .margin-b-32 { margin-bottom: 10px !important; }
  .about-left .devider-horizontal { margin-bottom: 12px !important; }

  /* ══════════════════════════════════════════
     FORM SECTION
  ══════════════════════════════════════════ */
  .padding-section-72#form-section,
  section.padding-section-72 { padding-top: 24px; padding-bottom: 24px; }

  /* ══════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════ */
  .footer-bottom-grid  { grid-template-columns: 1fr; }
  .footer-top-grid     { gap: 16px; }
  .footer-about-inner  { flex-direction: column; }
  .pm-footer_card      { flex-direction: column; gap: 12px; }
  .pm-responsible_card { padding: 16px; }
  .text-size-52        { font-size: 22px; }

  /* ══════════════════════════════════════════
     SPECIFICITY OVERRIDES
  ══════════════════════════════════════════ */
  .deliver-item_card-head h3 { font-size: 16px; }
  .h-640, .h-688, .h-624    { height: 180px; }
}

/* ---- SCROLLBAR ------------------------------------------ */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-dark-blue); }
::-webkit-scrollbar-thumb { background: var(--color-mid-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-light-blue); }
