:root {
      --navy:          #0F1F3D;
      --navy-mid:      #162444;
      --navy-light:    #1E2F52;
      --yellow:        #F5C800;
      --yellow-hover:  #D4AC00;
      --white:         #FFFFFF;
      --off-white:     #F4F6FA;
      --text-dark:     #0F1F3D;
      --text-mid:      #4A5A7A;
      --text-light:    rgba(255,255,255,0.80);
      --text-muted:    rgba(255,255,255,0.55);
      --border-dark:   rgba(255,255,255,0.10);
      --border-light:  rgba(15,31,61,0.12);
      --font-sans:     'Segoe UI', system-ui, -apple-system, sans-serif;
      --nav-height:    80px;
      --transition:    0.3s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      color: var(--text-dark);
      line-height: 1.6;
      background: var(--white);
      padding-top: var(--nav-height);
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 0.5rem;
    }
    .section-heading {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 800;
      margin-bottom: 0.5rem;
      color: var(--navy);
    }
    .section-heading .brand { color: var(--yellow); }
    .section-heading.light  { color: var(--white); }
    .section-subheading {
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 1.5rem;
    }
    .section-subheading.light { color: var(--text-light); }
    .body-text {
      color: var(--text-mid);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    .body-text.light { color: var(--text-light); }

    .btn {
      display: inline-block;
      padding: 0.8rem 2rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      border-radius: 2px;
    }
    .btn-yellow        { background: var(--yellow); color: var(--navy); }
    .btn-yellow:hover  { background: var(--yellow-hover); }
    .btn-navy          { background: var(--navy); color: var(--white); }
    .btn-navy:hover    { background: var(--navy-light); }
    .btn-outline-yellow {
      border: 2px solid var(--yellow);
      color: var(--yellow);
      background: transparent;
    }
    .btn-outline-yellow:hover { background: var(--yellow); color: var(--navy); }
    .btn-outline-white {
      border: 2px solid var(--white);
      color: var(--white);
      background: transparent;
    }
    .btn-outline-white:hover { background: var(--white); color: var(--navy); }

    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--navy);
      height: var(--nav-height);
      display: flex;
      align-items: center;
      padding: 0 1rem;
      box-shadow: 0 2px 16px rgba(0,0,0,0.35);
    }
    .navbar-inner {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }
    .navbar-logo img { height: 58px; width: auto; }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--yellow);
      font-size: 1.6rem;
      cursor: pointer;
      padding: 0.25rem;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .nav-menu a {
      color: var(--text-light);
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.55rem 0.8rem;
      white-space: nowrap;
      transition: var(--transition);
      border-radius: 2px;
    }
    .nav-menu a:hover { color: var(--yellow); }
    .nav-menu a.active {
      color: var(--yellow);
      font-weight: 700;
      border-bottom: 2px solid var(--yellow);
    }

    .hero-slider {
      position: relative;
      height: 70vh;
      min-height: 420px;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
      background-size: cover;
      background-position: center;
    }
    .hero-slide.active { opacity: 1; z-index: 1; }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(15,31,61,0.25), rgba(15,31,61,0.75));
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 3rem 3.5rem 4.5rem;
    }
    .hero-label {
      background: var(--yellow);
      color: var(--navy);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.3rem 1rem;
      margin-bottom: 1rem;
    }
    .hero-title {
      color: var(--white);
      font-size: clamp(2rem, 5.5vw, 4rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      line-height: 1.05;
      text-shadow: 0 2px 12px rgba(0,0,0,0.5);
      max-width: 750px;
    }
    .hero-title span { color: var(--yellow); }
    .hero-counter {
      position: absolute;
      bottom: 3rem;
      right: 3.5rem;
      z-index: 3;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
    }
    .hero-counter strong { color: var(--yellow); font-size: 1.5rem; }
    .slider-dots {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      gap: 8px;
    }
    .slider-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      border: 2px solid var(--yellow);
      background: transparent;
      cursor: pointer;
      transition: background 0.3s;
      padding: 0;
    }
    .slider-dot.active { background: var(--yellow); }
    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      background: rgba(15,31,61,0.5);
      color: var(--white);
      border: 2px solid rgba(245,200,0,0.4);
      width: 46px; height: 46px;
      border-radius: 50%;
      font-size: 1.4rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      line-height: 1;
    }
    .slider-arrow:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
    .slider-prev { left: 1.5rem; }
    .slider-next { right: 1.5rem; }

    .section       { padding: 5rem 1.5rem; }
    .section-dark  { background: var(--navy); }
    .section-navy  { background: var(--navy-mid); }
    .section-alt   { background: var(--off-white); }
    .container     { max-width: 1200px; margin: 0 auto; }
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .split-section.reverse .split-image { order: -1; }
    .split-image img {
      width: 100%;
      border-radius: 4px;
      box-shadow: 0 8px 32px rgba(15,31,61,0.2);
    }

    .page-hero {
      padding: 5rem 1.5rem 4rem;
      text-align: center;
      background: var(--navy);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center top, rgba(245,200,0,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero .section-label    { color: var(--yellow); }
    .page-hero .section-heading  { color: var(--white); font-size: clamp(2rem,5vw,3.5rem); }
    .page-hero .section-subheading { color: var(--text-light); }

    .yellow-line {
      width: 48px; height: 3px;
      background: var(--yellow);
      margin-bottom: 1.5rem;
    }
    .yellow-line.center { margin: 0 auto 1.5rem; }

    .pull-quote {
      border-left: 4px solid var(--yellow);
      padding: 1rem 1.75rem;
      margin: 2rem auto;
      background: rgba(245,200,0,0.06);
    }
    .pull-quote p {
      font-size: 1.05rem;
      font-style: italic;
      color: var(--navy);
      font-weight: 600;
      line-height: 1.7;
      margin: 0;
    }
    .pull-quote.light p { color: var(--white); }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .stats-grid.three { grid-template-columns: repeat(3, 1fr); }
    .stat-badge { text-align: center; padding: 1rem; }
    .stat-number {
      width: 78px; height: 78px;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--navy);
      font-size: 1rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.75rem;
    }
    .stat-label { font-size: 0.82rem; color: var(--text-mid); line-height: 1.4; }
    .section-dark .stat-label  { color: var(--text-light); }
    .section-dark .stat-number { background: var(--yellow); color: var(--navy); }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .card {
      background: var(--white);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(15,31,61,0.09);
      transition: var(--transition);
      border-bottom: 3px solid transparent;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(15,31,61,0.14);
      border-bottom-color: var(--yellow);
    }
    .card-body { padding: 1.6rem; }
    .card-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }
    .card-title { font-weight: 800; font-size: 1rem; margin-bottom: 0.75rem; color: var(--navy); }
    .card-excerpt { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

    .panel-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .panel {
      background: var(--navy-mid);
      padding: 2rem;
      border-top: 3px solid var(--yellow);
      transition: var(--transition);
    }
    .panel:hover { background: var(--navy-light); }
    .panel h3 { color: var(--yellow); margin-bottom: 0.75rem; font-size: 1rem; font-weight: 700; }
    .panel p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

    .struggle-list { display: flex; flex-direction: column; gap: 0.75rem; }
    .struggle-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: var(--navy-mid);
      border: 1px solid var(--border-dark);
      border-radius: 4px;
      padding: 0.9rem 1.25rem;
    }
    .struggle-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--yellow);
      flex-shrink: 0;
    }
    .struggle-item p { font-size: 0.93rem; color: var(--text-light); font-weight: 600; margin: 0; }

    .timeline {
      max-width: 720px;
      margin: 2.5rem auto 0;
      position: relative;
      padding-left: 36px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 10px; top: 8px; bottom: 8px;
      width: 2px;
      background: var(--yellow);
      opacity: 0.3;
    }
    .timeline-item {
      position: relative;
      margin-bottom: 1.6rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -30px; top: 5px;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--yellow);
      border: 2px solid var(--navy);
      box-shadow: 0 0 0 2px var(--yellow);
    }
    .timeline-year {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--yellow);
      margin-bottom: 3px;
      text-transform: uppercase;
    }
    .timeline-text {
      font-size: 0.95rem;
      color: var(--white);
      font-weight: 600;
    }
    .badge {
      display: inline-block;
      padding: 2px 10px;
      border-radius: 12px;
      font-size: 0.76rem;
      font-weight: 600;
      margin-left: 6px;
      vertical-align: middle;
    }
    .badge-champion { background: var(--yellow); color: var(--navy); }
    .badge-promoted { background: rgba(245,200,0,0.15); color: var(--yellow); border: 1px solid rgba(245,200,0,0.4); }
    .badge-active   { background: rgba(255,255,255,0.12); color: var(--white); }
    .badge-default  { background: rgba(255,255,255,0.08); color: var(--text-light); }

    .contact-section {
      background: var(--yellow);
      color: var(--navy);
      padding: 5.5rem 1.5rem;
    }
    .contact-section .section-label    { color: var(--navy); opacity: 0.6; }
    .contact-section .section-heading  { color: var(--navy); }
    .contact-section .body-text        { color: rgba(15,31,61,0.75); }
    .cta-glass {
      background: rgba(15,31,61,0.1);
      border-radius: 4px;
      padding: 1.75rem 2rem;
      margin: 1.5rem auto 2rem;
      max-width: 600px;
      border-left: 4px solid var(--navy);
    }
    .cta-glass p {
      color: var(--navy);
      font-size: 1rem;
      font-style: italic;
      line-height: 1.8;
      margin: 0;
      font-weight: 600;
    }

    /* ── PROGRAMMES / CURRICULUM / TRIALS ── */

    .prog-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 3rem;
      border-bottom: 2px solid var(--border-light);
      flex-wrap: wrap;
    }
    .prog-tab {
      padding: 0.9rem 2.2rem;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      background: transparent;
      color: var(--text-mid);
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: var(--transition);
      font-family: var(--font-sans);
    }
    .prog-tab:hover { color: var(--navy); }
    .prog-tab.active { color: var(--navy); border-bottom-color: var(--yellow); font-weight: 800; }

    .prog-panel { display: none; }
    .prog-panel.active { display: block; }

    .prog-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .prog-card {
      background: var(--white);
      border-radius: 4px;
      box-shadow: 0 2px 16px rgba(15,31,61,0.09);
      overflow: hidden;
      border-top: 3px solid var(--yellow);
      transition: var(--transition);
    }
    .prog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(15,31,61,0.13); }
    .prog-card-head {
      background: var(--navy);
      padding: 1.4rem 1.6rem;
    }
    .prog-card-age {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 0.4rem;
    }
    .prog-card-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--white);
    }
    .prog-card-body { padding: 1.5rem 1.6rem; }
    .prog-card-body h4 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.75rem;
      margin-top: 1rem;
    }
    .prog-card-body h4:first-child { margin-top: 0; }
    .prog-card-body ul { padding-left: 0; }
    .prog-card-body ul li {
      font-size: 0.88rem;
      color: var(--text-mid);
      padding: 0.28rem 0 0.28rem 1.1rem;
      position: relative;
      line-height: 1.5;
    }
    .prog-card-body ul li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--yellow);
      font-size: 0.75rem;
    }
    .prog-objectives {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .prog-obj-card {
      background: var(--off-white);
      border-radius: 4px;
      overflow: hidden;
      border-bottom: 3px solid var(--yellow);
    }
    .prog-obj-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }
    .prog-obj-img-placeholder {
      width: 100%;
      height: 160px;
      background: var(--navy-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--yellow);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .prog-obj-body { padding: 1.1rem 1.25rem; }
    .prog-obj-body h4 { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
    .prog-obj-body p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

    .curriculum-intro {
      max-width: 760px;
      margin: 0 auto 3rem;
      text-align: center;
    }
    .training-calendar {
      background: var(--off-white);
      border-radius: 6px;
      padding: 2.5rem;
      margin: 2.5rem 0;
    }
    .training-calendar h3 {
      text-align: center;
      font-size: 1rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 2rem;
      letter-spacing: 0.05em;
    }
    .calendar-steps {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      position: relative;
    }
    .cal-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1;
      min-width: 120px;
      max-width: 160px;
      position: relative;
    }
    .cal-step-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--navy);
      font-size: 1.2rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.75rem;
      position: relative;
      z-index: 1;
    }
    .cal-step-label {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }
    .cal-step-dur {
      font-size: 0.78rem;
      color: var(--text-mid);
    }
    .cal-connector {
      flex: 0 0 40px;
      height: 3px;
      background: var(--yellow);
      opacity: 0.4;
      margin-top: 22px;
      align-self: flex-start;
    }
    .core-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 2rem;
    }
    .pillar {
      text-align: center;
      padding: 1.75rem 1rem;
      background: var(--white);
      border-radius: 50%;
      width: 130px; height: 130px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 16px rgba(15,31,61,0.1);
      border: 3px solid var(--yellow);
    }
    .pillar-icon { font-size: 1.6rem; margin-bottom: 0.4rem; }
    .pillar-name { font-size: 0.75rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; }
    .phys-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      margin-top: 1.5rem;
    }
    .phys-item {
      background: var(--off-white);
      padding: 1.25rem 1.5rem;
      border-left: 3px solid var(--yellow);
      border-radius: 2px;
    }
    .phys-item h4 { font-size: 0.88rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
    .phys-item p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

    /* Trials */
    .trials-hero-img {
      width: 100%;
      max-height: 340px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 2.5rem;
      display: block;
    }
    .trials-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 2rem;
    }
    .trials-box {
      background: var(--off-white);
      border-radius: 4px;
      padding: 1.75rem 2rem;
      border-top: 3px solid var(--yellow);
    }
    .trials-box h3 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 1.25rem;
    }
    .trials-row {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--border-light);
    }
    .trials-row:last-child { border-bottom: none; }
    .trials-time {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--yellow);
      background: var(--navy);
      padding: 2px 8px;
      border-radius: 2px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trials-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }
    .criteria-list { display: flex; flex-direction: column; gap: 0.6rem; }
    .criteria-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.88rem;
      color: var(--text-mid);
    }
    .criteria-age {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--navy);
      background: var(--yellow);
      padding: 2px 8px;
      border-radius: 2px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .supported-by-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }
    .support-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--text-mid);
    }
    .support-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--yellow);
      flex-shrink: 0;
    }
    .trials-cta-box {
      background: var(--navy);
      border-radius: 4px;
      padding: 2rem 2.5rem;
      margin-top: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .trials-cta-box p {
      color: var(--text-light);
      font-size: 0.95rem;
      margin: 0;
    }
    .trials-cta-box strong { color: var(--yellow); }

    .footer {
      background: var(--navy);
      color: var(--white);
      padding: 4rem 1.5rem 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto 2.5rem;
    }
    .footer h4 {
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
      color: var(--yellow);
      font-weight: 700;
    }
    .footer a { color: var(--text-light); font-size: 0.88rem; display: block; padding: 0.22rem 0; transition: color 0.2s; }
    .footer a:hover { color: var(--yellow); }
    .footer p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; }
    .footer input {
      width: 100%;
      padding: 0.65rem 0.85rem;
      margin-bottom: 0.65rem;
      border: none;
      font-family: inherit;
      font-size: 0.88rem;
      background: rgba(255,255,255,0.08);
      color: var(--white);
      border: 1px solid var(--border-dark);
    }
    .footer input::placeholder { color: var(--text-muted); }
    .footer-bottom {
      border-top: 1px solid var(--border-dark);
      padding: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto;
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .footer-bottom a { display: inline; margin-right: 1rem; color: var(--text-muted); }
    .footer-bottom a:hover { color: var(--yellow); }
    .social-icons { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
    .social-icons a {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.66rem;
      font-weight: 800;
      color: var(--navy);
      padding: 0;
      transition: var(--transition);
    }
    .social-icons a:hover { background: var(--yellow-hover); }

    .floating-icons {
      position: fixed;
      right: 1rem;
      bottom: 2rem;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .floating-icons a {
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1rem;
      font-weight: 800;
      box-shadow: 0 4px 14px rgba(0,0,0,0.3);
      transition: transform var(--transition);
    }
    .floating-icons a:hover { transform: scale(1.1); }
    .float-wa    { background: #25d366; }
    .float-ig    { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
    .float-phone { background: var(--yellow); color: var(--navy) !important; }
    .float-x     { background: #000; }

    .text-center { text-align: center; }
    .mb-2 { margin-bottom: 2rem; }
    .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }

    @media (max-width: 1100px) {
      .cards-grid  { grid-template-columns: repeat(2, 1fr); }
      .stats-grid  { grid-template-columns: repeat(3, 1fr); }
      .prog-cards  { grid-template-columns: repeat(2, 1fr); }
      .core-pillars { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .panel-grid  { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .prog-objectives { grid-template-columns: repeat(2, 1fr); }
      .supported-by-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      body { padding-top: 60px; --nav-height: 60px; }
      .nav-toggle { display: block; }
      .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid var(--yellow);
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
      }
      .nav-menu.open { display: flex; }
      .nav-menu a { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border-dark); }
      .hero-overlay { padding: 1.5rem 1.5rem 3.5rem; }
      .hero-counter { right: 1.5rem; bottom: 2rem; }
      .split-section { grid-template-columns: 1fr; gap: 2rem; }
      .split-section.reverse .split-image { order: 0; }
      .cards-grid, .panel-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
      .hero-slider { height: 55vh; min-height: 320px; }
      .section { padding: 3.5rem 1.25rem; }
      .prog-cards { grid-template-columns: 1fr; }
      .prog-objectives { grid-template-columns: 1fr; }
      .trials-two-col { grid-template-columns: 1fr; }
      .supported-by-grid { grid-template-columns: 1fr; }
      .core-pillars { grid-template-columns: repeat(2, 1fr); }
      .phys-grid { grid-template-columns: 1fr; }
      .prog-tab { padding: 0.7rem 1.1rem; font-size: 0.75rem; }
      .calendar-steps { gap: 1rem; flex-wrap: wrap; justify-content: center; }
      .cal-connector { display: none; }
      .trials-cta-box { flex-direction: column; text-align: center; }
    }
