:root {
    --gold: #C9A84C; /* 538600 */
    --gold-light: #E8D5A3;
    --gold-pale: #FDF8EE;
    --navy: #024A7E;  /* 1A2744 */ 
    --navy-mid: #2C3E6B;
    --slate: #4A5568;
    --slate-light: #718096;
    --white: #FFFFFF;
    --off-white: #F9F7F3;
    --border: #E8E4DC;
    --red-flag: #C0392B;
    --green-flag: #1A6B45;
    --teal-flag: #0E5C6B;
    --purple-flag: #4A2D7A;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background: var(--off-white);
    color: var(--navy);
    padding: 48px 24px;
  }

  .cards-grid{
     /*  font-family: 'DM Sans', sans-serif!important; */
  }

  .page-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .page-header .logo-text {
    /* font-family: 'Playfair Display', serif; */
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .page-header h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .page-header p {
    color: var(--slate-light);
   /*  font-size: 15px; */
    font-weight: 300;
  }

  .section-divider {
    max-width: 1400px;
    margin-bottom: 25px;
    margin-top: 56px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .section-divider h2 {
    font-family: 'Playfair Display', serif;
   /*  font-size: 18px; */
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
  }

  .section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }


  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
  }

  /* ─── CARD BASE ─── */
  .programme-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,39,68,0.07), 0 1px 3px rgba(26,39,68,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
  }

  .programme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,39,68,0.13), 0 2px 8px rgba(26,39,68,0.06);
  }

  .card-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  }

  .card-category-flag {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--navy);
    color: var(--white);
  /*   font-size: 10px; */
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px 5px 12px;
    border-radius: 4px 0 0 4px;
  }

  .card-body1 {
    padding: 28px 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .card-icon {
    font-size: 32px;
    line-height: 1;
    margin-top: 8px;
  }

  .card-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
  }

  .card-title {
 /*    font-family: 'Playfair Display', serif;
    font-size: 21px; */
    font-weight: 700;
    color: var(--navy)!important;
    line-height: 1.3;
    margin-top: -4px;
  }

  .card-pain-hook {
    /* font-size: 13.5px; */
    font-style: italic;
    color: var(--slate);
    border-left: 3px solid var(--gold);
    padding-left: 12px;
    line-height: 1.6;
  }

  .card-desc {
  /*   font-size: 13.5px; */
    color: var(--slate);
    line-height: 1.7;
    font-weight: 300;
  }

  /* Outcomes & Highlights */
  .card-outcomes-label {
   /*  font-size: 10.5px; */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .card-outcomes{
    background: var(--gold-pale);
    border-radius: 10px;
    padding: 14px 16px;
    border:1px solid #C9A84C;
  }
  .card-highlights {
    padding: 14px 16px;
    background: #F0F4FB;
  }

  .card-outcomes ul li, .card-highlights ul li {
    margin-bottom: 6px;
    /* font-size: 14px; */
  }

  .card-outcomes ul, .card-highlights ul {
   margin: 0; padding: 0;
   padding-left: 20px;
  }

  .outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    /* font-size: 12.5px; */
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 6px;
    font-weight: 400;
  }

  .outcome-item:last-child { margin-bottom: 0; }

  .outcome-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 5px;
  }

  .card-highlights .outcome-dot {
    background: var(--navy-mid);
  }

  /* Meta specs */
  .card-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }

  .meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .meta-key {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--slate-light);
  }

  .meta-val {
    /* font-size: 12.5px; */
    font-weight: 500;
    color: var(--navy);
  }

  /* Customization note */
  .card-custom-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
   /*  font-size: 12px; */
    color: var(--slate);
    background: #FFFBF0;
    border: 1px solid #F0E3B5;
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.55;
  }

  .card-custom-note svg { min-width: 13px; margin-top: 2px; }

  /* Social proof */
  .card-proof {
    /* font-size: 12px; */
    color: var(--slate-light);
    font-style: italic;
    line-height: 1.55;
  }

  /* Footer */
  .card-footer1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    gap: 16px;
    flex-wrap: wrap;
  }

  .card-target {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--slate);
  }

  .card-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .cta-subtext {
    /* font-size: 10.5px; */
    color: var(--slate-light);
  }

  .btn-enquire {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s ease;
    white-space: nowrap;
  }

  .btn-enquire:hover { background: var(--gold); color: #ffffff; }

  @media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 26px; }
    .card-footer { flex-direction: column; align-items: flex-start; }
    .card-cta-group { align-items: flex-start; }
  }