/* Consolidated from fr/index.html */
:root {
      --blue: #0f4fbf;
      --dark-blue: #062b63;
      --gold: #d8aa2b;
      --light: #f4f7fb;
      --dark: #111827;
      --text: #374151;
      --white: #ffffff;
      --green: #25d366;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .topbar {
      background: var(--blue);
      color: var(--white);
      padding: 18px 8%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
    }

    .brand img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      border-radius: 50%;
      background: #ffffff;
      padding: 4px;
    }

    .brand span { color: #ffffff; }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 0.95rem;
    }

    nav a {
      color: white;
      opacity: 0.95;
    }

    nav a:hover,
    nav a.active {
      color: var(--gold);
    }

    .hero {
      min-height: 620px;
      background:
        linear-gradient(rgba(6, 43, 99, 0.45), rgba(6, 43, 99, 0.45)),
        url("../assets/hero-home-v2.webp") center/cover no-repeat;
      display: flex;
      align-items: center;
      padding: 80px 8%;
      color: white;
    }

    .hero-content {
      max-width: 760px;
      background: rgba(0, 0, 0, 0.55);
      padding: 42px;
      border-radius: 18px;
    }

    .hero h1 {
      font-size: 3rem;
      line-height: 1.1;
      margin: 0 0 18px;
    }

    .hero h2 {
      font-size: 1.45rem;
      color: var(--gold);
      margin: 0 0 20px;
    }

    .hero p {
      font-size: 1.08rem;
      margin-bottom: 24px;
    }

    .btn-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 13px 22px;
      border-radius: 8px;
      font-weight: 700;
      transition: 0.2s;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
    }

    .btn-secondary {
      background: white;
      color: var(--dark-blue);
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.92;
    }

    section { padding: 70px 8%; }

    .section-white { background: white; }

    .section-title {
      max-width: 850px;
      margin-bottom: 36px;
    }

    .section-title h2 {
      color: var(--dark-blue);
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .section-title p { font-size: 1.05rem; }

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

    .card {
      background: white;
      padding: 26px;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
      border-top: 4px solid var(--blue);
    }

    .section-white .card { background: var(--light); }

    .card h3 {
      margin-top: 0;
      color: var(--dark-blue);
      font-size: 1.2rem;
    }

    .card p { margin-bottom: 0; }

    .highlight {
      background: var(--dark-blue);
      color: white;
      padding: 70px 8%;
    }

    .highlight h2 {
      color: var(--gold);
      font-size: 2rem;
      margin-top: 0;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 34px;
      align-items: start;
    }

    .price-list {
      display: grid;
      gap: 16px;
    }

    .price-item {
      background: white;
      border-left: 5px solid var(--gold);
      padding: 18px 22px;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .price-item strong { color: var(--dark-blue); }

    .status-box {
      background: #fff7dd;
      border-left: 5px solid var(--gold);
      padding: 22px;
      border-radius: 12px;
    }

    .cta {
      text-align: center;
      background: var(--blue);
      color: white;
    }

    .cta h2 {
      font-size: 2rem;
      margin-top: 0;
    }

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      background: var(--green);
      color: white;
      padding: 14px 18px;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
      z-index: 999;
    }

    footer {
      background: var(--dark-blue);
      color: white;
      text-align: center;
      padding: 26px 8%;
      font-size: 0.9rem;
    }

    @media (max-width: 900px) {
      .grid,
      .two-col {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        padding: 60px 5%;
      }

      .hero-content { padding: 28px; }

      .hero h1 { font-size: 2.2rem; }

      .topbar { padding: 16px 5%; }

      section,
      .highlight {
        padding: 55px 5%;
      }
    }

/* Consolidated from fr/programmes.html */
:root {
      --blue: #0f4fbf;
      --dark-blue: #062b63;
      --gold: #d8aa2b;
      --light: #f4f7fb;
      --dark: #111827;
      --text: #374151;
      --white: #ffffff;
      --green: #25d366;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .topbar {
      background: var(--blue);
      color: var(--white);
      padding: 18px 8%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
    }

    .brand img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      border-radius: 50%;
      background: #ffffff;
      padding: 4px;
    }

    .brand span {
      color: #ffffff;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 0.95rem;
    }

    nav a {
      color: white;
      opacity: 0.95;
    }

    nav a:hover,
    nav a.active {
      color: var(--gold);
    }

    .page-hero {
      background:
        linear-gradient(rgba(6, 43, 99, 0.72), rgba(6, 43, 99, 0.72)),
        url("../assets/hero-programs-v1.webp") center/cover no-repeat;
      color: white;
      padding: 90px 8%;
      text-align: center;
    }

    .page-hero h1 {
      font-size: 3rem;
      margin: 0 0 16px;
      line-height: 1.1;
    }

    .page-hero p {
      max-width: 860px;
      margin: 0 auto;
      font-size: 1.12rem;
    }

    section {
      padding: 70px 8%;
    }

    .section-white {
      background: white;
    }

    .section-title {
      max-width: 900px;
      margin-bottom: 36px;
    }

    .section-title h2 {
      color: var(--dark-blue);
      font-size: 2rem;
      margin: 0 0 12px;
    }

    .section-title p {
      font-size: 1.05rem;
      margin: 0;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
    }

    .program-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
      border-top: 5px solid var(--blue);
    }

    .section-white .program-card {
      background: var(--light);
    }

    .program-card h3 {
      color: var(--dark-blue);
      font-size: 1.35rem;
      margin: 0 0 12px;
    }

    .program-card .tag {
      display: inline-block;
      background: #fff1c7;
      color: #6b4a00;
      font-weight: 700;
      font-size: 0.82rem;
      padding: 6px 10px;
      border-radius: 30px;
      margin-bottom: 16px;
    }

    .program-card h4 {
      color: var(--dark);
      margin: 18px 0 6px;
      font-size: 1rem;
    }

    .program-card p {
      margin: 0 0 8px;
    }

    .program-card ul {
      margin: 8px 0 0;
      padding-left: 20px;
    }

    .program-card li {
      margin-bottom: 6px;
    }

    .btn {
      display: inline-block;
      margin-top: 22px;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 700;
      transition: 0.2s;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
    }

    .btn-secondary {
      background: var(--dark-blue);
      color: white;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.92;
    }

    .highlight {
      background: var(--dark-blue);
      color: white;
    }

    .highlight h2 {
      color: var(--gold);
    }

    .pathway {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 30px;
    }

    .pathway-box {
      background: rgba(255, 255, 255, 0.1);
      padding: 26px;
      border-radius: 14px;
      border-left: 5px solid var(--gold);
    }

    .pathway-box h3 {
      margin-top: 0;
      color: white;
    }

    .cta {
      text-align: center;
      background: var(--blue);
      color: white;
    }

    .cta h2 {
      font-size: 2rem;
      margin-top: 0;
    }

    .btn-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      background: #25d366;
      color: white;
      padding: 14px 18px;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
      z-index: 999;
    }

    footer {
      background: var(--dark-blue);
      color: white;
      text-align: center;
      padding: 26px 8%;
      font-size: 0.9rem;
    }

    @media (max-width: 900px) {
      .program-grid,
      .pathway {
        grid-template-columns: 1fr;
      }

      .page-hero {
        padding: 65px 5%;
      }

      .page-hero h1 {
        font-size: 2.2rem;
      }

      .topbar {
        padding: 16px 5%;
      }

      section {
        padding: 55px 5%;
      }
    }
  .program-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.program-title-row h3 {
  margin: 0;
  flex: 1;
}

.quick-register {
  padding: 8px 14px;
  font-size: 0.88rem;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .program-title-row {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-register {
    width: 100%;
    text-align: center;
  }
}

/* Consolidated from fr/tarifs.html */
:root {
      --blue: #0f4fbf;
      --dark-blue: #062b63;
      --gold: #d8aa2b;
      --light: #f4f7fb;
      --dark: #111827;
      --text: #374151;
      --white: #ffffff;
      --green: #25d366;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .topbar {
      background: var(--blue);
      color: var(--white);
      padding: 18px 8%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
    }

    .brand img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      border-radius: 50%;
      background: #ffffff;
      padding: 4px;
    }

    .brand span {
      color: #ffffff;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 0.95rem;
    }

    nav a {
      color: white;
      opacity: 0.95;
    }

    nav a:hover,
    nav a.active {
      color: var(--gold);
    }

    .page-hero {
      background:
        linear-gradient(rgba(6, 43, 99, 0.74), rgba(6, 43, 99, 0.74)),
        url("../assets/hero-options-v1.webp") center/cover no-repeat;
      color: white;
      padding: 90px 8%;
      text-align: center;
    }

    .page-hero h1 {
      font-size: 3rem;
      margin: 0 0 16px;
      line-height: 1.1;
    }

    .page-hero p {
      max-width: 860px;
      margin: 0 auto;
      font-size: 1.12rem;
    }

    section {
      padding: 70px 8%;
    }

    .section-white {
      background: white;
    }

    .section-title {
      max-width: 900px;
      margin-bottom: 36px;
    }

    .section-title h2 {
      color: var(--dark-blue);
      font-size: 2rem;
      margin: 0 0 12px;
    }

    .section-title p {
      font-size: 1.05rem;
      margin: 0;
    }

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

    .price-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
      border-top: 5px solid var(--blue);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .section-white .price-card {
      background: var(--light);
    }

    .price-card.featured {
      border-top-color: var(--gold);
      transform: translateY(-8px);
    }

    .price-card h3 {
      color: var(--dark-blue);
      font-size: 1.35rem;
      margin: 0 0 10px;
    }

    .tag {
      display: inline-block;
      background: #fff1c7;
      color: #6b4a00;
      font-weight: 700;
      font-size: 0.82rem;
      padding: 6px 10px;
      border-radius: 30px;
      margin-bottom: 16px;
      width: fit-content;
    }

    .price {
      font-size: 2rem;
      font-weight: 800;
      color: var(--dark-blue);
      margin: 16px 0 4px;
    }

    .price small {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
    }

    .note {
      font-size: 0.92rem;
      color: #5b6472;
      margin-bottom: 18px;
    }

    .price-card ul {
      padding-left: 20px;
      margin: 18px 0;
    }

    .price-card li {
      margin-bottom: 8px;
    }

    .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 700;
      transition: 0.2s;
      text-align: center;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
    }

    .btn-secondary {
      background: var(--dark-blue);
      color: white;
    }

    .btn-whatsapp {
      background: var(--green);
      color: white;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.92;
    }

    .info-box {
      background: #fff7dd;
      border-left: 5px solid var(--gold);
      padding: 24px;
      border-radius: 14px;
      margin-top: 30px;
    }

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

    .simple-card {
      background: white;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
      border-left: 5px solid var(--blue);
    }

    .section-white .simple-card {
      background: var(--light);
    }

    .simple-card h3 {
      color: var(--dark-blue);
      margin-top: 0;
    }

    .highlight {
      background: var(--dark-blue);
      color: white;
    }

    .highlight h2 {
      color: var(--gold);
    }

    .highlight .simple-card {
      background: rgba(255, 255, 255, 0.1);
      border-left-color: var(--gold);
      color: white;
      box-shadow: none;
    }

    .highlight .simple-card h3 {
      color: white;
    }

    .cta {
      text-align: center;
      background: var(--blue);
      color: white;
    }

    .cta h2 {
      font-size: 2rem;
      margin-top: 0;
    }

    .btn-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      background: var(--green);
      color: white;
      padding: 14px 18px;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
      z-index: 999;
    }

    footer {
      background: var(--dark-blue);
      color: white;
      text-align: center;
      padding: 26px 8%;
      font-size: 0.9rem;
    }

    @media (max-width: 1000px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .price-card.featured {
        transform: none;
      }
    }

    @media (max-width: 760px) {
      .pricing-grid,
      .two-col {
        grid-template-columns: 1fr;
      }

      .page-hero {
        padding: 65px 5%;
      }

      .page-hero h1 {
        font-size: 2.2rem;
      }

      .topbar {
        padding: 16px 5%;
      }

      section {
        padding: 55px 5%;
      }
    }

/* Consolidated from fr/inscription.html */
:root {
      --blue: #0f4fbf;
      --dark-blue: #062b63;
      --gold: #d8aa2b;
      --light: #f4f7fb;
      --dark: #111827;
      --text: #374151;
      --white: #ffffff;
      --green: #25d366;
      --border: #d9e2f1;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .topbar {
      background: var(--blue);
      color: var(--white);
      padding: 18px 8%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
    }

    .brand img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      border-radius: 50%;
      background: #ffffff;
      padding: 4px;
    }

    .brand span {
      color: #ffffff;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 0.95rem;
    }

    nav a {
      color: white;
      opacity: 0.95;
    }

    nav a:hover,
    nav a.active {
      color: var(--gold);
    }

    .page-hero {
      background:
        linear-gradient(rgba(6, 43, 99, 0.76), rgba(6, 43, 99, 0.76)),
        url("../assets/hero-registration-v1.webp") center/cover no-repeat;
      color: white;
      padding: 90px 8%;
      text-align: center;
    }

    .page-hero h1 {
      font-size: 3rem;
      margin: 0 0 16px;
      line-height: 1.1;
    }

    .page-hero p {
      max-width: 860px;
      margin: 0 auto;
      font-size: 1.12rem;
    }

    section {
      padding: 70px 8%;
    }

    .section-white {
      background: white;
    }

    .section-title {
      max-width: 900px;
      margin-bottom: 36px;
    }

    .section-title h2 {
      color: var(--dark-blue);
      font-size: 2rem;
      margin: 0 0 12px;
    }

    .section-title p {
      font-size: 1.05rem;
      margin: 0;
    }

    .layout {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
      align-items: start;
    }

    .form-card,
    .side-card {
      background: white;
      border-radius: 18px;
      padding: 32px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
    }

    .form-card {
      border-top: 5px solid var(--blue);
    }

    .side-card {
      border-top: 5px solid var(--gold);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      font-weight: 700;
      color: var(--dark-blue);
      font-size: 0.95rem;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid var(--border);
      border-radius: 9px;
      font-size: 1rem;
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: var(--dark);
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: 2px solid rgba(15, 79, 191, 0.25);
      border-color: var(--blue);
    }

    .btn {
      display: inline-block;
      margin-top: 22px;
      padding: 13px 22px;
      border-radius: 8px;
      font-weight: 700;
      transition: 0.2s;
      text-align: center;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
    }

    .btn-secondary {
      background: var(--dark-blue);
      color: white;
    }

    .btn-whatsapp {
      background: var(--green);
      color: white;
      width: 100%;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.92;
    }

    .notice {
      background: #fff7dd;
      border-left: 5px solid var(--gold);
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 24px;
    }

    .side-card h3 {
      color: var(--dark-blue);
      margin-top: 0;
    }

    .side-card ul {
      padding-left: 20px;
      margin: 14px 0;
    }

    .side-card li {
      margin-bottom: 8px;
    }

    .step-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .step {
      background: white;
      border-radius: 16px;
      padding: 26px;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
      border-left: 5px solid var(--blue);
    }

    .step span {
      display: inline-flex;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      background: var(--gold);
      color: var(--dark);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .step h3 {
      color: var(--dark-blue);
      margin: 0 0 8px;
    }

    .cta {
      text-align: center;
      background: var(--blue);
      color: white;
    }

    .cta h2 {
      font-size: 2rem;
      margin-top: 0;
    }

    .btn-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      background: var(--green);
      color: white;
      padding: 14px 18px;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
      z-index: 999;
    }

    footer {
      background: var(--dark-blue);
      color: white;
      text-align: center;
      padding: 26px 8%;
      font-size: 0.9rem;
    }

    @media (max-width: 900px) {
      .layout,
      .step-list {
        grid-template-columns: 1fr;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .page-hero {
        padding: 65px 5%;
      }

      .page-hero h1 {
        font-size: 2.2rem;
      }

      .topbar {
        padding: 16px 5%;
      }

      section {
        padding: 55px 5%;
      }
    }

/* Page-specific hero assets */
.programs-page .page-hero {
  background: linear-gradient(rgba(6, 43, 99, 0.78), rgba(6, 43, 99, 0.78)), url("hero-programs-v1.webp") center/cover no-repeat;
}
.pricing-page .page-hero {
  background: linear-gradient(rgba(6, 43, 99, 0.78), rgba(6, 43, 99, 0.78)), url("hero-options-v1.webp") center/cover no-repeat;
}
.registration-page .page-hero {
  background: linear-gradient(rgba(6, 43, 99, 0.78), rgba(6, 43, 99, 0.78)), url("hero-registration-v1.webp") center/cover no-repeat;
}

/* September 2026 enrollment campaign */
.hero-home-content {
  max-width: 820px;
}

.hero-home-content .hero-kicker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-home-content .hero-meta {
  margin: 22px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.sample-session-box {
  max-width: 900px;
}

.sample-session-box ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.sample-session-box li {
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--dark-blue);
  font-weight: 700;
  text-align: center;
}

.sample-session-box .btn {
  width: auto;
}

.quick-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.quick-path-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--blue);
  border-radius: 16px;
  background: var(--light);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
}

.quick-path-card.featured {
  border-top-color: var(--gold);
}

.quick-path-card h3 {
  margin: 0 0 10px;
  color: var(--dark-blue);
  font-size: 1.4rem;
}

.quick-path-card p {
  flex: 1;
  margin: 0;
}

.quick-path-card .btn {
  width: 100%;
}

.full-registration {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
}

.full-registration > summary {
  padding: 18px 22px;
  color: var(--dark-blue);
  font-weight: 800;
  cursor: pointer;
}

.full-registration[open] > summary {
  border-bottom: 1px solid var(--border);
}

.full-registration .detailed-form-title {
  margin: 28px 30px 0;
}

.full-registration .layout {
  padding: 0 30px 30px;
}

@media (max-width: 900px) {
  .sample-session-box ul,
  .quick-path-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sample-session-box ul,
  .quick-path-grid {
    grid-template-columns: 1fr;
  }

  .full-registration .detailed-form-title {
    margin: 24px 20px 0;
  }

  .full-registration .layout {
    padding: 0 20px 20px;
  }
}
