/*
Theme URI: https://www.apsic.com.au
Author: APSIC
Description: Custom theme for Pool Safety Training
Version: 1.0.2
Text Domain: apsic
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1a4fa0;
  --blue-dark: #0f2e5a;
  --blue-mid: #1e5cb8;
  --blue-light: #e8f1fb;
  --blue-xlight: #f2f6fd;
  --gold: #E9C46A;
  --gold-dark: #c9993a;
  --amber: #f59e0b;
  --teal: #2a9d7f;
  --teal-light: #e6f5f1;
  --mint: #a8e6d8;
  --white: #ffffff;
  --grey-text: #444;
  --grey-mid: #6b7f99;
  --grey-light: #f7f9fc;
  --slate: #a3adc2;
  --border: #dce8f5;
  --navy: #0f2e5a;
  --red: #c0392b;
  --red-light: #fef0f0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a2e44;
  background: #fff;
  font-size: 15px;
  line-height: 1.65;
}

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

img {
  max-width: 100%;
}

/* ── NAV ─────────────────────────────────── */
.nav {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 68px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(26, 79, 160, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (min-width: 901px) {
    .nav-links .moremenu .sub-menu {
   left:-65px;   
  }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Josefin Sans';
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1;
}

.logo-tag {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  align-items: center;
  font-family: 'Josefin Sans';
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--grey-text);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

a.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dark);
}

/* Nav Toggle (hamburger) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Dropdown (submenu) - Desktop */
@media(min-width:901px) {
  .nav-links li {
    position: relative;
  }

  .nav-links li.menu-item-has-children>a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s;
  }

  .nav-links li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
  }

  .nav-links .sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(26, 79, 160, 0.12);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
    max-height: 70vh;
    overflow-y: auto;
  }

  .nav-links li:last-child>.sub-menu {
    left: auto;
    right: 0;
  }

  .nav-links li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links .sub-menu li {
    padding: 0;
  }

  .nav-links .sub-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--grey-text);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }

  .nav-links .sub-menu a:hover {
    background: var(--blue-xlight);
    color: var(--blue);
  }
}

/* ── BUTTONS (shared) ────────────────────── */


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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ── HERO (Homepage) ─────────────────────── */
.hero {
  background: var(--blue);
  padding: 56px 48px 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  min-height: auto;
}
.home-page-hero .hero-inner {
max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;}

@media (max-width: 960px) {
     .home-page-hero .hero-inner {
        grid-template-columns: 1fr;
    }
}

.home-page-hero { display:block;}
/* ── NSW MUTUAL RECOGNITION HERO ────────── */
.hero-nsw {
  display: block;
}
.hero-top-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.hero-nsw .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-nsw .hero-badges {
  margin-bottom: 28px;
}

.hero-nsw .hero-right {
    align-self: end;
    margin-bottom: 52px;
}

/* ── NSW E1 CERTIFIER HERO ──────────────── */
.hero-nswe1 {
  background: var(--blue);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.hero-nswe1-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-nswe1-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-nswe1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero-nswe1-eyebrow .eyebrow-txt {
  font-size: 11px;
  font-weight: 700;
  color: #fde68a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-nswe1 h1 {
  font-family: 'Josefin Sans';
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}

.hero-nswe1 h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero-nswe1-sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

@media (max-width: 700px) {
  .hero-nswe1 {
    padding: 36px 24px;
  }
}

/* ── UPCOMING COURSES HERO ──────────────────── */
.hero-upcoming {
  background: var(--blue);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-upcoming .hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-upcoming .hero-inner {
  
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-upcoming .breadcrumb {
  margin-bottom: 18px;
}

.hero-upcoming .hero-eyebrow {
  margin-bottom: 20px;
}

.hero-upcoming h1 {
  font-family: 'Josefin Sans';
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}

.hero-upcoming h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero-upcoming .hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  width: auto;
  margin-bottom: 22px;
}

.hero-upcoming .early-bird-note {
  
  align-items: center;
  gap: 8px;
  background: rgba(233, 196, 106, 0.15);
  border: 1px solid rgba(233, 196, 106, 0.4);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
	display:inline-block;
}

.hero-upcoming .early-bird-note strong {
  color: #fff;
}

.hero-upcoming .hero-upcoming-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: #fff;
	font-weight:bold
  
}

@media (max-width: 700px) {
  .hero-upcoming {
    padding: 40px 24px;
  }
}

/* ── COURSE DATES BLOCK ───────────────────── */
.course-dates {
  padding: 52px 48px;
}

.course-dates .section-inner {
  max-width: 925px;
  margin: 0 auto;
}

.course-dates .dates-table {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 79, 160, 0.06);
}

.course-dates .dt-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.9fr;
  gap: 16px;
  padding: 16px 24px;
  background: var(--blue-xlight);
  border-bottom: 1.5px solid var(--border);
}

.course-dates .dt-head-cell {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey-mid);
}

.course-dates .dt-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.9fr;
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.course-dates .dt-row:last-child {
  border-bottom: none;
}

.course-dates .dt-row:hover {
  background: var(--grey-light);
}

.course-dates .dt-date {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.course-dates .dt-sub {
  font-size: 12px;
  color: var(--grey-mid);
  margin-top: 2px;
}

.course-dates .dt-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.course-dates .dt-badge svg {
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.course-dates .dt-price-now {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-dark);
}

.course-dates .dt-price-discount {
  font-size: 12px;
  color: var(--grey-mid);
  font-weight: 400;
}

.course-dates .dt-discount-red {
  color: var(--red);
}

.course-dates .dt-book-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s;
  margin: 0 auto;
  text-decoration: none;
}

.course-dates .dt-book-btn:hover {
  background: var(--gold-dark);
}

.course-dates .more-dates-note {
  text-align: center;
  margin-top: 28px;
  padding: 20px;
  background: var(--grey-light);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.7;
}

.course-dates .more-dates-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.course-dates .trust-strip {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.course-dates .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-mid);
}

.course-dates .trust-item svg {
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .course-dates {
    padding: 36px 24px;
  }

  .course-dates .dt-head {
    display: none;
  }

  .course-dates .dt-row {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }

  .course-dates .dt-book-btn {
    width: 100%;
    text-align: center;
  }
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: apsic-pulse 2s ease-in-out infinite;
}

@keyframes apsic-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: 'Josefin Sans';
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: normal;
  color: var(--mint);
}




.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.trust-item svg {
  flex-shrink: 0;
  stroke: var(--mint);
  fill: none;
  stroke-width: 2.5;
}

/* ── HERO CPD BAR ────────────────────────── */
.hero-cpd-bar {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
	margin-bottom:16px;
}

.hero-cpd-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cpd-left {
  flex: 1;
  min-width: 200px;
}

.hero-cpd-label {
  font-size: 15px;
  font-family: 'Josefin Sans';
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-cpd-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.hero-cpd-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.hero-cpd-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── HERO RIGHT CARD ─────────────────────── */


.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168, 230, 216, 0.15);
  border: 1px solid rgba(168, 230, 216, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.card-title {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.card-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-row:last-child {
  border-bottom: none;
}

.card-row-ico {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-row-ico svg {
  width: 13px;
  height: 13px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
}

.card-row-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-row-val {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.card-offer {
  background: rgba(233, 196, 106, 0.12);
  border: 1px solid rgba(233, 196, 106, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-offer-ico {
  font-size: 18px;
  flex-shrink: 0;
}

.card-offer-text {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.4;
}

.card-btn {
  display: block;
  background: var(--gold);
  color: #0f2e5a;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 9px;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.card-btn:hover {
  opacity: 0.9;
  color: #0f2e5a;
}

/* ── RTO DISCLAIMER ──────────────────────── */
@media (min-width: 984px) and (max-width: 1061px) {
    .rto-disclaimer {
        font-size: 10px !important; /* Change to your desired size */
    }
}



.rto-disclaimer {
  background: var(--blue);
  
  font-size: 12px;
  color: #fff;

  font-weight: 600;
  letter-spacing: 1px;
}

/* ── 10660NAT HERO ────────────────────────── */
.nat-hero {
  background: var(--blue);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.nat-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.nat-hero-glow {
  position: absolute;
  right: -80px;
  top: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.nat-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nat-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fcd34d;
}

.nat-hero h1 {
  font-family: 'Josefin Sans';
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 28px;
  max-width: 1100px;
  white-space: normal;
  overflow-wrap: break-word;
}

.nat-hero h1 em {
  font-style: normal;
  color: var(--mint);
}

.nat-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 1100px;
  margin-bottom: 42px;
}

.nat-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── CONTACT HERO ───────────── */
.contact-hero {
  background: var(--blue);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.contact-hero-glow {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 18px;
}

.contact-hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: apsic-pulse 2s ease-in-out infinite;
}

.contact-hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-hero h1 {
  font-family: 'Josefin Sans';
  font-size: clamp(20px, 4.6vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 12px;
}

.contact-hero h1 em {
  font-style: normal;
  color: var(--mint);
}

.contact-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  max-width: 460px;
}

/* Jacqui Card */
.contact-hero-jacqui {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 22px 24px 16px;
  text-align: center;
  width: 100%;
}

.contact-hero-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.25);
  margin: 0 auto 12px;
  display: block;
}

.contact-hero-name {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.contact-hero-role {
  font-size: 11px;
  color: var(--mint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.contact-hero-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.contact-hero-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  width: fit-content;
  max-width: 100%;
}

.contact-hero-item svg {
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-hero-item a {
  color: #fff;
  font-weight: 600;
}


/* ── DATES BOX ───────────── */
.dates-box {
  background: var(--blue);
  border-radius: 14px;
  padding: 24px;
}

.dates-box-title {
  font-family: 'Josefin Sans';
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.date-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.date-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.date-ico {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.date-ico svg {
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
}

.date-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.date-val {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}

.date-price {
  margin-left: auto;
  text-align: right;
}

.date-price-now {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
}

.date-price-was {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.dates-enrol-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px;
  border-radius: 9px;
  text-align: center;
  margin-top: 16px;
  transition: background 0.2s;
}

.dates-enrol-btn:hover {
  background: var(--gold-dark);
}

.dates-enrol-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-top: 8px;
}

/* ── COURSE CARDS ───────────── */
.course-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.course-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.course-card:hover {
  border-color: var(--blue);
  box-shadow: 0 3px 16px rgba(26, 79, 160, 0.08);
}

.course-card-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.course-card-ico.blue {
  background: var(--blue-light);
}

.course-card-ico.teal {
  background: var(--teal-light);
}

.course-card-ico svg {
  fill: none;
  stroke-width: 1.8;
}

.course-card-ico.blue svg {
  stroke: var(--blue);
}

.course-card-ico.teal svg {
  stroke: var(--teal);
}

.course-card-body {
  flex: 1;
}

.course-card-tag {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey-mid);
  margin-bottom: 3px;
}

.course-card-title {
  font-family: 'Josefin Sans';
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.course-card-sub {
  font-size: 12px;
  color: var(--grey-mid);
}

.course-card-arrow {
  color: var(--grey-mid);
  flex-shrink: 0;
  transition: color 0.2s;
}

.course-card:hover .course-card-arrow {
  color: var(--blue);
}

/* ── 10660NAT TRANSITION INTRO ───────────── */




.sec-lead strong {
  color: #444;
}

.transition-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 28px 0;
}

.tb-col {
  padding: 28px;
  border-top: 4px solid transparent;
}

.tb-col.old {
  background: #fdf8ef;
  border-right: 1.5px solid var(--border);
  border-top-color: var(--amber);
}

.tb-col.new {
  background: var(--blue-light);
  border-top-color: var(--blue-mid);
}

.tb-col-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.tb-col.old .tb-col-label {
  color: #a06a1d;
}

.tb-col.new .tb-col-label {
  color: var(--blue-mid);
}

.tb-code {
  font-family: 'Josefin Sans';
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}

.tb-col.old .tb-code {
  color: #d1a25c;
  text-decoration: line-through;
}

.tb-col.new .tb-code {
  color: var(--blue);
}

.tb-name {
  font-size: 13px;
  margin-bottom: 16px;
}

.tb-col.old .tb-name {
  color: #a3804f;
}

.tb-col.new .tb-name {
  color: var(--navy);
}

.tb-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tb-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.5;
}

.tb-col.old .tb-list li {
  color: #a3804f;
}

.tb-col.new .tb-list li {
  color: var(--grey-text);
}

.tb-ico-old {
  stroke: #dcb887;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.tb-ico-new {
  stroke: var(--blue-mid);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── INFO GRID ─────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin: 20px 0;
}

/* apsic/info-grid uses a half/full model -> 2 columns (kept separate from
   .info-grid-2, which is intentionally built on the 6-column base) */
.info-grid--cards {
  grid-template-columns: repeat(2, 1fr);
}

.info-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-top: 4px solid var(--blue-mid);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 14px rgba(15, 46, 90, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.info-card.no-accent {
  border-top: 1.5px solid var(--border);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(15, 46, 90, 0.1);
}

.info-card-title {
  font-family: 'Josefin Sans';
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card-title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.info-card-text {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.65;
}

.info-card p {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.65;
  margin-top: 6px;
}

/* ── INFO GRID 2 (reference-match overrides) ── */
.info-grid-2 {
  gap: 16px;
}

.info-grid-2 .info-card {
  border-top: 1.5px solid var(--border);
  transition: none;
}

.info-grid-2 .info-card:hover {
  transform: none;
  box-shadow: 0 3px 14px rgba(15, 46, 90, 0.06);
}

.info-grid-2.has-hover .info-card {
  transition: border-color 0.2s, box-shadow 0.2s;
}

.info-grid-2.has-hover .info-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26, 79, 160, 0.08);
}

.info-grid-2 .info-card-title {
  font-size: 14px;
  margin-bottom: 10px;
}

.info-grid-2 .info-card-title::before {
  display: none;
}

.info-grid-2 .info-card p {
  font-size: 13.5px;
  margin-top: 0;
  margin-bottom: 6px;
}

.info-grid-2 .info-card p:last-child {
  margin-bottom: 0;
}

.info-grid-2 .info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.info-grid-2 .info-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.55;
}

.info-grid-2 .info-card ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}

/* ── LICENSING STEPS ────────────────────────── */
.lic-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.lic-step {
  display: flex;
  gap: 35px;
  padding: 18px 0;
  border-bottom: 1.5px solid var(--border);
}

.lic-step:last-child {
  border-bottom: none;
}

.lic-num {
  font-family: 'Josefin Sans';
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  width: 34px;
  flex-shrink: 0;
}

.lic-title {
  font-family: 'Josefin Sans';
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.lic-desc {
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* ── DATES BAR ───────────────────────────── */
.dates-bar {
  background: var(--blue-dark);
  padding: 14px 48px;
}

.dates-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.dates-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.date-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.date-chip svg {
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.dates-note {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.dates-price {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.dates-price .price-orig {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.dates-price .price-now {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.dates-price .price-tag {
  font-size: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── STAT BOX ──────────────────────────────── */
.stat-box {
  background: var(--blue);
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 24px 0;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
  background: var(--blue, #1a4fa0);
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 20px 0;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Josefin Sans';
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-top: 4px;
}

/* ── STAT STRIP ───────────────────────────── */
.stat-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
justify-content: space-between;
}

.stat-strip>div {
  background: var(--blue-xlight);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 150px;
}

.stat-n {
  font-family: 'Josefin Sans';
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
}

.stat-l {
  font-size: 11px;
  color: var(--grey-mid);
  line-height: 1.4;
  max-width: 150px;
  margin-top: 4px;
}

/* ── SECTIONS ────────────────────────────── */
.section {
  padding: 24px 48px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: var(--grey-light);
}

.eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 10px;
}

.sec-h2 {
  font-family: 'Josefin Sans';
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 12px;
}

.sec-lead {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
}

/* ── TWO COL LAYOUT ──────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.two-col-wide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

/* Two-col via core/columns inside section-wrap */
.has-two-col .wp-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.has-two-col-wide .wp-block-columns {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.has-two-col .wp-block-column,
.has-two-col-wide .wp-block-column {
  margin: 0;
  min-width: 0;
}

.has-two-col .wp-block-columns>.wp-block-column:first-child,
.has-two-col-wide .wp-block-columns>.wp-block-column:first-child {
  padding-left: 0;
}

.has-two-col .wp-block-columns>.wp-block-column:last-child,
.has-two-col-wide .wp-block-columns>.wp-block-column:last-child {
  padding-right: 0;
}

.has-two-col .wp-block-group,
.has-two-col-wide .wp-block-group {
  display: grid;
  gap: 48px;
  align-items: start;
}

.has-two-col .wp-block-group {
  grid-template-columns: 1fr 1fr;
}

.has-two-col-wide .wp-block-group {
  grid-template-columns: 3fr 2fr;
}

/* ── WHY CARDS (Homepage) ────────────────── */
.jacqui-hero-card {
  background: var(--blue-xlight);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

/* ── JACQUI WRAP (NSW mutual recognition) ─────────────── */
.jacqui-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  margin-top: 20px;
}

.jacqui-hero-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.jacqui-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Josefin Sans';
  font-weight: 800;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jacqui-avatar-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.jacqui-name {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.jacqui-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-top: 3px;
  margin-bottom: 12px;
}

.jacqui-wrap .sec-p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-mid);
  margin: 0 0 12px;
}

.jacqui-wrap .sec-p:last-child {
  margin-bottom: 0;
}

.jacqui-hero-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(26, 79, 160, 0.15);
}

.jacqui-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
}

.jacqui-hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--teal);
  margin-bottom: 6px;
  text-align: left;
}

.jacqui-hero-name {
  font-family: 'Josefin Sans';
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
  text-align: left;
}

.jacqui-hero-desc {
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.65;
  margin-bottom: 12px;
  text-align: left;
}

.jacqui-hero-desc:last-of-type {
  margin-bottom: 12px;
}

.jacqui-hero-desc a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.jacqui-hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: nowrap;
}

.jh-stat {
  display: flex;
  flex-direction: column;
}

.jh-stat-n {
  font-family: 'Josefin Sans';
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
}

.jh-stat-l {
  font-size: 10px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

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

.why-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.why-card:hover,
.testi-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(26, 79, 160, 0.08);
}

.why-card.featured {
  border-left: 4px solid var(--gold);
}

.why-card.accent-blue {
  border-left: 4px solid #1a4fa0;
}

.why-card.accent-teal {
  border-left: 4px solid #2a9d7f;
}

.why-card.accent-gold {
  border-left: 4px solid #E9C46A;
}

.why-card.accent-mint {
  border-left: 4px solid #a8e6d8;
}

.why-ico {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

.why-title {
  font-family: 'Josefin Sans';
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.7;
}

.why-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  background: var(--gold);
  color: var(--navy);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── VALUE STACK (Homepage) ──────────────── */
.value-stack {
  background: var(--blue);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}



.vs-title {
  font-family: 'Josefin Sans';
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.vs-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.vs-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}


.vs-item:last-child {
  border-bottom: none;
}

.vs-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(168, 230, 216, 0.15);
  border: 1.5px solid var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.vs-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 3;
}

.vs-item-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.vs-item-text span {
  color: var(--gold);
  font-weight: 600;
}

.vs-right {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 28px;
}

.vs-price-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.vs-price-orig {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.vs-price-now {
  font-family: 'Josefin Sans';
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.vs-price-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.vs-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.vs-full-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.vs-full-price {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.vs-enrol-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 9px;
  text-align: center;
  transition: background 0.2s;
  margin-bottom: 12px;
}

.vs-enrol-btn:hover {
  background: var(--gold-dark);
}

.vs-call {
  display: block;
  text-align: center;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
}

.vs-call a {
  color: var(--mint);
  font-weight: 600;
}

.vs-urgency {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.vs-urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: apsic-pulse 2s ease-in-out infinite;
}

/* ── TRAINER (Homepage) ──────────────────── */
.trainer-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.trainer-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Sans';
  font-size: 56px;
  font-weight: 800;
  color: var(--mint);
  border: 4px solid var(--blue-light);
}

.trainer-name {
  font-family: 'Josefin Sans';
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.trainer-role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 16px;
}

.trainer-bio {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.trainer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--blue-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.t-stat {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.t-stat:last-child {
  border-right: none;
}

.t-stat-n {
  font-family: 'Josefin Sans';
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  display: block;
  line-height: 1;
}

.t-stat-l {
  font-size: 10px;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 3px;
}

/* ── TRAINER (Course Page) ───────────────── */
.trainer-section {
  border-radius: 12px;
}

.trainer-section.is-boxed {
  background: var(--blue-xlight);
  border: 1px solid #dce8f5;
  border-radius: 12px;
}

.trainer-grid-course {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

.trainer-left-course {
  text-align: center;
}

.trainer-img-course {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 5px solid var(--blue);
  box-shadow: 0 8px 32px rgba(26, 79, 160, 0.18);
  display: block;
  margin: 0 auto 16px;
}

.trainer-name-course {
  font-family: 'Josefin Sans';
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 35px;
}

.trainer-role-course {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-top: 4px;
}

.trainer-desc-course {
  font-size: 15px;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.trainer-stats-course {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--blue);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.trainer-stat-course {
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
}

.trainer-stat-course:last-child {
  border-right: none;
}

.trainer-stat-num {
  font-family: 'Josefin Sans';
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.trainer-stat-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

.trainer-actions-course {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.trainer-phone-course {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
}

/* ── COURSE DETAIL (Homepage) ────────────── */
.course-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 79, 160, 0.06);
}

.course-hdr {
  background: var(--blue);
  padding: 24px 28px;
}

.course-hdr-title {
  font-family: 'Josefin Sans';
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.course-hdr-code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

.course-body {
  padding: 28px;
}

.course-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.55;
}

.course-list li:last-child {
  border-bottom: none;
}

.c-check {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.5;
}

.inc-ico {
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── COMPARISON (Homepage) ───────────────── */




.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.compare-col-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-col-head.apsic {
  color: var(--mint);
}

.compare-col-head.others {
  color: rgba(255, 138, 128, 0.55);
}

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  padding: 6px 0;
  line-height: 1.5;
}

.compare-row.good {
  color: rgba(255, 255, 255, 0.85);
}

.compare-row.bad {
  color: rgba(255, 255, 255, 0.45);
}

.compare-col.has-row-border .compare-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-col.has-row-border .compare-row:last-child {
  border-bottom: none;
}

.cr-ico-good {
  stroke: var(--mint);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.cr-ico-bad {
  stroke: rgba(255, 138, 128, 0.55);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── TESTIMONIALS ────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #e9c46a;
}

.testi-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}

.testi-quote {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Sans';
  font-weight: 800;
  font-size: 14px;
  color: var(--blue);
  flex-shrink: 0;
}

.testi-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}

.testi-role {
  font-size: 11.5px;
  color: var(--grey-mid);
}

/* ── FAQ ─────────────────────────────────── */
.faq-list {
  max-width: 780px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.faq-item {
  border-bottom: 1.5px solid var(--border);
  padding: 20px 0;
}

.faq-q {
  font-family: 'Josefin Sans';
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.faq-a {
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.75;
}

/* ── CPD STRIP (Homepage) ────────────────── */
.cpd-strip {
  background: var(--blue-light);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cpd-left {
  flex: 1;
}

.cpd-eye {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 8px;
}

.cpd-h {
  font-family: 'Josefin Sans';
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.cpd-d {
  font-size: 14px;
  color: var(--grey-mid);
  max-width: none;
  line-height: 1.7;
}

/* ── AUTHOR BOX ──────────────────────────── */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--grey-light);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-top: 40px;
}

.author-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--blue-light);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Josefin Sans';
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.author-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--teal);
  margin-bottom: 8px;
}

.author-bio {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.65;
}

@media(max-width:900px) {
  .author-box {
    flex-direction: column;
  }
}

/* ── FINAL CTA ───────────────────────────── */
.final-cta {
  background: var(--blue);
  padding: 72px 48px;
  text-align: center;
}

.final-cta-inner {

  margin: 0 auto;
  text-align: center;
  
}

.final-cta h2 {
  font-family: 'Josefin Sans';
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cta-contacts {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-contact a {
  color: var(--mint);
  font-weight: 600;
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Josefin Sans';
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

 

.footer-links a:hover {
  color: #fff;
}

/* ── UTILITY ─────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── RESPONSIVE ──────────────────────────── */
/* ── PAGE HERO (Course Page) ─────────────── */
.page-hero {
  background: var(--blue);
  padding: 56px 48px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.course-hero-info {
		display:block;
	}
.course-hero-info .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
}
@media (max-width: 960px) {
   .course-hero-info .hero-inner {
        grid-template-columns: 1fr;
    }
  
}
 .course-hero-info .hero-sub {
    max-width:100%;
    margin-bottom: 10px;
}

.pool-fence-hero {
		display:block;
	}
.pool-fence-hero .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
}
  .pool-fence-hero .hero-sub{
	max-width:620px;
}
 
@media (max-width: 960px) {
   .pool-fence-hero .hero-inner {
        grid-template-columns: 1fr;
    }
  .pool-fence-hero .hero-sub {
    max-width: 100% !important;
}
}
.course-page-hero {
		display:block;
	}
.course-page-hero .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
}
@media (max-width: 960px) {
   .course-page-hero .hero-inner {
        grid-template-columns: 1fr;
    }
	.course-page-hero .hero-sub {
    max-width: 100% !important;
}
}

.home-page-hero {
		display:block;
	}
.home-page-hero .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
}
@media (max-width: 960px) {
   .home-page-hero .hero-inner {
        grid-template-columns: 1fr;
    }
	.home-page-hero .hero-sub {
    max-width: 100% !important;
}
}



.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.page-hero-glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .hero-left {
  padding-bottom: 28px;
  justify-content: flex-start;
}
 .course-page-hero .hero-sub{
	max-width:740px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-current {
  color: rgba(255, 255, 255, 0.65);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 22px;
  align-self: flex-start;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: apsic-pulse 2s ease-in-out infinite;
}

.eyebrow-txt {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-h1 {
  font-family: 'Josefin Sans';
  font-size: 44px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.2px;
  color: #fff;
  margin-bottom: 14px;
}

/* Override for page-hero based variants (course-hero, course-info) */
.page-hero .hero-h1 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -1.1px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero-sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  width: 100%;
  margin-bottom: 48px;
}

/* Override for page-hero based variants */


.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  width: 100%;
  justify-content: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.badge svg {
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 16px;
}

.hero-actions .btn-gold,
.hero-actions .btn-ghost {
  flex: 1;
  justify-content: center;
}

/* ── HERO ENROL CARD (Course Page) ───────── */
.hero-right {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: unset;
}

/* Override for page-hero variants */
.page-hero .hero-right {
  align-self: stretch;
}

.enrol-card {
  background: var(--blue);
  border-radius: 14px 14px 0 0;
  padding: 28px;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.enrol-card-title {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.enrol-card-title span {
  color: #fff;
}

.enrol-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.price-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.price-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.price-block .price-orig {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.price-block .price-now {
  font-family: 'Josefin Sans';
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}



.price-save {
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  text-align: center;
  white-space: nowrap;
}

.price-save-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-align: center;
}

.enrol-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 9px;
  text-align: center;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.enrol-btn:hover {
  background: var(--gold-dark);
}

.enrol-call {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}

.enrol-call a {
  color: #fff;
  font-weight: 600;
}

.enrol-includes {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.enrol-includes-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.enrol-inc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.enrol-inc-item svg {
  stroke: var(--mint);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* ── HERO ENROL CARD — Pool Fence Legislation (hc-rows) ── */
.hc-approved {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42, 157, 127, 0.18);
  border: 1px solid rgba(42, 157, 127, 0.4);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hc-approved svg {
  stroke: var(--mint);
  fill: none;
  stroke-width: 3;
}

.hc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hc-row:last-child {
  border-bottom: none;
}

.hc-row-ico {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-row-ico svg {
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
  width: 14px;
  height: 14px;
}

.hc-label {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hc-val {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}

.hc-free {
  background: rgba(233, 196, 106, 0.12);
  border: 1px solid rgba(233, 196, 106, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.5;
  margin: 14px 0;
}

/* ── COURSE INFO FACTS CARD ──────────────────── */
.hero-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 600px;
  margin-top: 14px;
}

.facts-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px 14px 0 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.facts-title {
  font-family: 'Josefin Sans';
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.fact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fact-row:last-of-type {
  border-bottom: none;
}

.fact-row svg {
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.fact-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fact-val {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.facts-cta {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-top: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.facts-cta:hover {
  background: var(--gold-dark);
}

.enrol-urgency {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 10px;
}

.enrol-urgency svg {
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── NOTICE BAR ──────────────────────────── */
.notice-bar {
  background: var(--blue-dark);
  padding: 10px 48px;
}

.notice-inner {
 
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.notice-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.notice-text strong {
  color: #fff;
  font-weight: 700;
}

/* ── COURSE OVERVIEW BOX ─────────────────── */
.overview-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 79, 160, 0.05);
}

.overview-hdr {
  background: var(--blue);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}



.overview-title {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.overview-code {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.overview-accred {
  background: rgba(168, 230, 216, 0.15);
  border: 1px solid rgba(168, 230, 216, 0.3);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--mint);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.overview-body {
  padding: 24px;
}

.overview-body-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.overview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.overview-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f4f8;
  font-size: 13.5px;
  color: var(--grey-text);
  line-height: 1.55;
}

.overview-list li:last-child {
  border-bottom: none;

}

.ov-check {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}

/* Highlighted (FREE / included) list item — mirrors reference overview-list-2col last li */
.ov-free {
  background: var(--teal-light);
  border: 1px solid var(--mint);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 4px;
}

.ov-free-tag {
  display: inline-block;
  flex: 0 0 auto;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  border-radius: 5px;
  margin-right: 6px;
  vertical-align: 1px;
  white-space: nowrap;
}

/* ── SIDEBAR BOX ─────────────────────────── */
.sidebar-box {
  background: var(--blue-xlight);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 88px;
}

.sidebar-title {
  font-family: 'Josefin Sans';
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.5;
}

.sidebar-item svg {
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.sidebar-enrol-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.sidebar-enrol-btn:hover {
  background: var(--gold-dark);
}

.sidebar-note {
  font-size: 11px;
  color: var(--grey-mid);
  text-align: center;
  line-height: 1.5;
}

/* ── STEP PROCESS ────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: var(--border);
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}

.step:last-child {
  padding-bottom: 0;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--blue);
}



.step-title {
  font-family: 'Josefin Sans';
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.7;
}

.step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: var(--teal-light);
  color: var(--teal);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── STEPS CARDS (3-column grid) ─────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.step-card .step-num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.step-card .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}

.step-card .step-name {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-mid);
}

.step-card .step-title {
  font-family: 'Josefin Sans';
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.step-card .step-desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.7;
}

.step-card .step-tag {
  margin-top: 9px;
}

.steps-row--connector {
  position: relative;
}

.steps-row--connector::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(16.67% + 14px);
  right: calc(16.67% + 14px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.steps-row--connector .step-card {
  position: relative;
  z-index: 1;
}

/* ── STEP GRID (CPD horizontal arrows) ───── */
.step-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
}

.step-grid .step-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.step-grid .step-card:hover {
  transform: translateY(-5px);
}

.step-grid .step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Sans';
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.step-grid .step-card-blue {
  border-color: var(--blue);
}

.step-grid .step-card-blue .step-num {
  background: var(--blue);
}

.step-grid .step-card-blue:hover {
  box-shadow: 0 12px 28px rgba(26, 79, 160, 0.18);
}

.step-grid .step-card-teal {
  border-color: var(--teal);
}

.step-grid .step-card-teal .step-num {
  background: var(--teal);
}

.step-grid .step-card-teal:hover {
  box-shadow: 0 12px 28px rgba(42, 157, 127, 0.18);
}

.step-grid .step-card-gold {
  border-color: var(--gold-dark);
  background: linear-gradient(150deg, #fff 55%, #fdf6e6 100%);
}

.step-grid .step-card-gold .step-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.step-grid .step-card-gold:hover {
  box-shadow: 0 12px 28px rgba(201, 153, 58, 0.25);
}

.step-grid .step-title {
  font-family: 'Josefin Sans';
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.step-grid .step-desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.7;
}

.step-grid .step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
}

/* ── DIFFERENTIATOR CARDS ────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.diff-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.diff-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26, 79, 160, 0.08);
}

.diff-card.highlight {
  border-color: var(--gold);
  border-width: 2px;
}

.diff-card-tag {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.diff-ico {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.diff-ico svg {
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

.diff-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--border);
  margin-bottom: 14px;
  display: block;
}

.diff-title {
  font-family: 'Josefin Sans';
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.diff-desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.7;
}

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

.diff-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── PROGRAMME GROUPS (CPD) ─────────────── */
.prog-group {
  margin-bottom: 40px;
}

.prog-group:last-child {
  margin-bottom: 0;
}

.prog-group-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  font-family: 'Josefin Sans';
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
  box-shadow: 0 3px 10px rgba(26, 79, 160, 0.18);
}

.prog-group-title-teal {
  background: var(--teal);
  box-shadow: 0 3px 10px rgba(42, 157, 127, 0.18);
}

.prog-group-title-gold {
  background: var(--gold-dark);
  box-shadow: 0 3px 10px rgba(201, 153, 58, 0.22);
}



.diff-card-teal:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(42, 157, 127, 0.12);
}



.diff-card-gold:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(201, 153, 58, 0.15);
}

.prog-card-heading {
  font-family: 'Josefin Sans';
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.1px;
  background: var(--blue);
  padding: 12px 14px;
  border-radius: 12px 12px 0 0;
  margin: -24px -24px 16px -24px;
}

.diff-card-teal .prog-card-heading {
  background: var(--teal);
}

.diff-card-gold .prog-card-heading {
  background: var(--gold-dark);
}

.prog-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--grey-text);
  line-height: 1.5;
  border-bottom: 1px solid rgba(15, 46, 90, 0.06);
}

.prog-item:last-child {
  border-bottom: none;
}

.prog-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
}

.diff-card-teal .prog-item svg {
  stroke: var(--teal);
}

.diff-card-gold .prog-item svg {
  stroke: var(--gold-dark);
}

.diff-card-teal .prog-item {
  border-bottom-color: rgba(42, 157, 127, 0.12);
}

.diff-card-gold .prog-item {
  border-bottom-color: rgba(201, 153, 58, 0.15);
}

/* ── COMPARISON TABLE (Course Page) ──────── */
.compare-wrap {
  background: var(--blue-dark);
  border-radius: 16px;
  padding: 36px;
}

.compare-title {
  font-family: 'Josefin Sans';
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.compare-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.compare-wrap .compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-wrap .compare-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-wrap .compare-table th.col-feature {
  color: rgba(255, 255, 255, 0.4);
  width: 35%;
}

.compare-wrap .compare-table th.col-apsic {
  color: var(--mint);
}

.compare-wrap .compare-table th.col-others {
  color: #8E6370;
}

.compare-wrap .compare-table td {
  padding: 11px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
  line-height: 1.5;
}

.compare-wrap .compare-table tr:last-child td {
  border-bottom: none;
}

.compare-wrap .compare-table td.col-feature {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.compare-wrap .compare-table td.col-apsic {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.compare-wrap .compare-table td.col-others {
  color: rgba(255, 255, 255, 0.3);
}

.compare-wrap .compare-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.tick {
  color: var(--mint);
  margin-right: 4px;
}

.cross {
  color: #8E6370;
  margin-right: 4px;
}

/* ── COMPARE TABLE (Light — from HTML page) ─ */
.asi-compare-wrap .compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 40px;
}

.asi-compare-wrap .compare-table th {
  background: var(--blue-dark);
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-size: 11.5px;
  font-weight: 600;
}

.asi-compare-wrap .compare-table th:first-child {
  border-radius: 8px 0 0 0;
}

.asi-compare-wrap .compare-table th:last-child {
  border-radius: 0 8px 0 0;
}

.asi-compare-wrap .compare-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  font-size: 13.5px;
  color: var(--grey-text);
  vertical-align: top;
  line-height: 1.5;
}

.asi-compare-wrap .compare-table tr:nth-child(even) td {
  background: var(--blue-xlight);
}

.asi-compare-wrap .compare-table tr:last-child td {
  border-bottom: none;
}

/* ── HIGHLIGHT BOX ───────────────────────── */
.highlight-box {
  background: var(--blue-dark);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 24px 0;
}

.hb-title {
  font-family: 'Josefin Sans';
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.hb-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 8px;
}

.hb-quote {
  font-size: 14px;
  color: var(--mint);
  font-style: italic;
  line-height: 1.7;
  border-left: 3px solid rgba(168, 230, 216, 0.3);
  padding-left: 14px;
  margin-top: 12px;
}

/* ── WHO IS THIS FOR ─────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.audience-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.audience-card:hover {
  border-color: var(--teal);
}

.audience-ico {
  font-size: 28px;
  margin-bottom: 10px;
}

.audience-title {
  font-family: 'Josefin Sans';
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.audience-desc {
  font-size: 12px;
  color: var(--grey-mid);
  line-height: 1.6;
}

/* ── AFTER COURSE SECTION ────────────────── */
.after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.after-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.after-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.after-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.after-card-num {
  font-family: 'Josefin Sans';
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 8px;
  line-height: 1;
}

.after-card-title {
  font-family: 'Josefin Sans';
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.after-card-desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* ── CALLOUT BOXES ─────────────────────── */
.callout-box {
  background: var(--blue-xlight);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
}

.callout-box-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 6px;
}

.callout-box-desc {
  font-size: 13px;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* ── CALLOUT (Notice) ──────────────────────── */
.callout {
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
}

.callout-info {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
}

.callout-tip {
  background: #fffbeb;
  border-left: 4px solid var(--gold);
}

.callout-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.callout-info .callout-label {
  color: var(--blue);
}

.callout-tip .callout-label {
  color: #92400e;
}

.callout p {
  font-size: 13.5px;
  color: var(--grey-text);
  line-height: 1.65;
  margin: 0;
}

/* ── SEC-H3 / BODY-LIST (Checklist) ──────── */
.sec-h3 {
  font-family: 'Josefin Sans';
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.body-list {
  margin: 0 0 16px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.body-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--grey-text);
  line-height: 1.6;
}

.body-list li svg {
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── COMPARE TABLE TIGHT / GOOD CELL ─────── */
.asi-compare-wrap .compare-table-tight {
  table-layout: fixed;
}

.asi-compare-wrap .compare-table-tight th:nth-child(1),
.asi-compare-wrap .compare-table-tight td:nth-child(1) {
  width: 21%;
}

.asi-compare-wrap .compare-table-tight th:nth-child(2),
.asi-compare-wrap .compare-table-tight td:nth-child(2) {
  width: 43%;
}

.asi-compare-wrap .compare-table-tight th:nth-child(3),
.asi-compare-wrap .compare-table-tight td:nth-child(3) {
  width: 36%;
}

.asi-compare-wrap .compare-table-tight th {
  font-size: 10px;
  padding: 9px 10px;
  white-space: normal;
}

.asi-compare-wrap .compare-table-tight td {
  font-size: 10.5px;
  padding: 8px 10px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media(max-width:700px) {
  .asi-compare-wrap .compare-table-tight td {
    white-space: normal;
    font-size: 11.5px;
  }

  .asi-compare-wrap .compare-table-tight {
    table-layout: auto;
  }
}

.asi-compare-wrap .good-cell {
  color: var(--teal);
  font-weight: 600;
}

/* ── VALUE STRIP (Course Page) ───────────── */
.value-strip {
  background: var(--blue);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.vs-heading {
  font-family: 'Josefin Sans';
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.vs-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.value-strip.vs-noborder .vs-item {
  border-bottom: none;
}

.vs-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.vs-chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(168, 230, 216, 0.15);
  border: 1.5px solid var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.vs-chk svg {
  width: 9px;
  height: 9px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 3;
}

.vs-item-txt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.vs-item-txt span {
  color: var(--gold);
  font-weight: 600;
}

.vs-price-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 28px;
  min-width: 220px;
  text-align: center;
  flex-shrink: 0;
}

.vspb-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.vspb-orig {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.vspb-now {
  font-family: 'Josefin Sans';
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.vspb-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  line-height: 1.4;
}

.vspb-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  padding: 13px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.vspb-btn:hover {
  background: var(--gold-dark);
}

.vspb-call {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
}

.vspb-call a {
  color: var(--mint);
  font-weight: 600;
}

/* ── PRICING CTA (Enrollment Banner) ─── */
.cta-strip {
  background: var(--blue);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.cta-strip-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cs-title {
  font-family: 'Josefin Sans';
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.cs-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.cs-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
  flex-shrink: 0;
}

.cs-price {
  font-family: 'Josefin Sans';
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}

.cs-price-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  line-height: 1.4;
}

.cta-actions-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

/* ── CTA STRIP (Simple CTA bar) ─── */
.cta-strip-simple {
  gap: 20px;
}

.cta-strip-simple .cta-actions-row {
  justify-content: flex-start;
  border-top: none;
  padding-top: 0;
}

/* ── FINAL CTA (Course Page) ─────────────── */
.fct-h2 {
  font-family: 'Josefin Sans';
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.fct-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}

.fct-contacts {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.fct-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;

}

.fct-contact a {
  color: var(--mint);
  font-weight: 600;
}

/* ── FCT CONTACT TOGGLES ────────────────── */
.fct-contacts--border-top {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fct-contacts--pills .fct-contact {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 10px 20px;
}

/* ── INLINE CTA ──────────────────────────── */
.inline-cta {
  background: var(--blue);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}

.ic-h {
  font-family: 'Josefin Sans';
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.ic-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  line-height: 1.65;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 9px;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(233, 196, 106, 0.35);
}

.ic-contacts {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.ic-contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.ic-contact a {
  color: var(--mint);
  font-weight: 600;
}

/* ── TESTIMONIALS (Course Page) ──────────── */
.testi-extra {
  display: none;
}

.testi-more-wrap {
  text-align: center;
  margin-top: 28px;
}

.testi-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  border: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 26px;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.testi-more-btn:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}

.testi-more-btn svg {
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.2;
  transition: transform 0.2s;
}

.testi-more-btn.is-open svg {
  transform: rotate(180deg);
}

/* ── PAGE HEADER ───────────────────────── */
.ph-header {
  background: var(--blue);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.ph-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.ph-glow {
  position: absolute;
  right: -80px;
  top: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.ph-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.ph-crumb-link {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.ph-crumb-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.ph-crumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.ph-crumb-current {
  color: rgba(255, 255, 255, 0.65);
}

.ph-heading {
  font-family: 'Josefin Sans';
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
  max-width: 1100px;
  white-space: normal;
  overflow-wrap: break-word;
}

.ph-heading em {
  font-style: normal;
  color: var(--mint);
}

.ph-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;

  margin-bottom: 0;
}

/* ── BLOG: SINGLE POST ──────────────────── */
.post-hero {
  background: var(--blue);
  padding: 100px 48px 60px;
  position: relative;
  overflow: hidden;
}

.post-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.post-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.post-hero-wide .post-hero-inner {
  max-width: 1200px;
}

.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.post-hero-cat {
  display: inline-block;
  background: rgba(168, 230, 216, 0.15);
  border: 1px solid rgba(168, 230, 216, 0.3);
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.post-hero-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.post-hero-title {
  font-family: 'Josefin Sans';
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.post-hero-intro {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 20px;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.meta-pill svg {
  stroke: rgba(168, 230, 216, 0.7);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.meta-avatar {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.post-hero-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.post-hero-avatar {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.post-featured {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.post-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
 
}

.post-featured-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 46, 90, 0.12);
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.post-layout-full {
  max-width: 1200px;
  margin: 0 auto;
 
}

.sidebar-widget {
  background: #fff;

  border-radius: 12px;

  margin-bottom: 16px;
}

.sidebar-widget-title {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-text);
}

.post-content h2 {
  font-family: 'Josefin Sans';
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 16px;
  letter-spacing: -0.3px;
}

.post-content h3 {
  font-family: 'Josefin Sans';
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  margin: 0 0 20px 24px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-content a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content a:hover {
  color: var(--blue-dark);
}

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--grey-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--grey-mid);
}

.post-content img {
  border-radius: 8px;
  margin: 24px 0;
}

/* Post Sidebar */
.sidebar-cta {
  background: var(--blue);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
}

.sidebar-cta-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mint);
  margin-bottom: 8px;
}





.sidebar-related {
  margin-top: 24px;
}

.sidebar-related-title {
  font-family: 'Josefin Sans';
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.sidebar-related-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-related-item:last-child {
  border-bottom: none;
}

.sidebar-related-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
}

.sidebar-related-item:hover .sidebar-related-link {
  color: var(--blue);
}

.sidebar-related-date {
  font-size: 12px;
  color: var(--grey-mid);
}

/* Post Navigation */
.post-nav {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}

.post-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.post-nav-link {
  max-width: 45%;
}

.post-nav-next {
  text-align: right;
  margin-left: auto;
}

.post-nav-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-mid);
  margin-bottom: 4px;
}

.post-nav-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.post-nav-link:hover .post-nav-title {
  color: var(--blue);
}

/* ── POST BOTTOM (author box + post nav) ── */
.post-bottom {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.post-bottom .post-nav {
  padding: 32px 0;
}

.post-bottom .post-nav-inner {
  max-width: 100%;
}

/* ── POST CTA AREA ── */
/* ── BLOG POST: AUTHOR BOX WIDGET ──────── */
.post-author-widgets {
  margin-top: 40px;
}

/* ── BLOG POST: RELATED ─────────────────── */
.related-posts {
  background: var(--grey-light);
  padding: 48px 0;
}

.related-inner {
  max-width: 800px;
  margin: 0 auto;

}

.related-title {
  font-family: 'Josefin Sans';
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.related-card:hover {
  border-color: var(--blue);
}

.related-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a9e96;
  margin-bottom: 12px;
}

.related-card-title {
  font-family: 'Josefin Sans';
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 14px;
}

.related-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #0a9e96;
}


.post-cta-inner {

  margin: 0 auto;

}

.post-cta-widget {
  margin-bottom: 0;
}

/* ── BLOG: ARCHIVE / LIST ─────────────────── */
.archive-hero {
  background: var(--blue);
  padding: 100px 48px 60px;
  position: relative;
  overflow: hidden;

}

.archive-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.archive-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.archive-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mint);
  margin-bottom: 12px;
}

.archive-hero-title {
  font-family: 'Josefin Sans';
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
}

.archive-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  line-height: 1.6;
}

/* Blog Grid (archive) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(15, 46, 90, 0.1);
  transform: translateY(-2px);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: 'Josefin Sans';
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.blog-card:hover .blog-card-title {
  color: var(--blue);
}

.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--grey-mid);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: var(--slate);
}

/* Blog List (search) */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.blog-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.blog-list-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(15, 46, 90, 0.06);
}

.blog-list-content {
  flex: 1;
}

.blog-list-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 6px;
}

.blog-list-title {
  font-family: 'Josefin Sans';
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.blog-list-item:hover .blog-list-title {
  color: var(--blue);
}

.blog-list-excerpt {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.6;
  margin-bottom: 8px;
}

.blog-list-meta {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: var(--slate);
}

.blog-list-thumb {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Search Form */
.search-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 46, 90, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-form:focus-within {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(15, 46, 90, 0.1);
}

.search-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: transparent;
  min-width: 0;
}

.search-input::placeholder {
  color: var(--grey-mid);
}

.search-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  margin: 4px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.search-submit:hover {
  background: #d4a843;
}

.search-submit:active {
  transform: scale(0.97);
}

/* Search animations */
@keyframes searchFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-form {
  animation: searchFadeIn 0.4s ease-out;
}

.search-input {
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 46, 90, 0.08);
}

/* Search results use blog-grid */
.blog-grid .blog-card {
  animation: searchFadeIn 0.4s ease-out both;
}

.blog-grid .blog-card:nth-child(1) {
  animation-delay: 0.05s;
}

.blog-grid .blog-card:nth-child(2) {
  animation-delay: 0.1s;
}

.blog-grid .blog-card:nth-child(3) {
  animation-delay: 0.15s;
}

.blog-grid .blog-card:nth-child(4) {
  animation-delay: 0.2s;
}

.blog-grid .blog-card:nth-child(5) {
  animation-delay: 0.25s;
}

.blog-grid .blog-card:nth-child(6) {
  animation-delay: 0.3s;
}

/* Search highlight */
.search-highlight {
  background: #e9c46a;
  color: #0f2e5a;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .search-grid {
    grid-template-columns: 1fr;
  }
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-text);
  background: #fff;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}

.blog-pagination .page-numbers:hover {
  background: var(--blue-xlight);
  color: var(--blue);
}

.blog-pagination .page-numbers.current {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  width: auto;
  padding: 0 16px;
}

/* Empty State */
.blog-empty {
  text-align: center;
  padding: 60px 0;
}

.blog-empty-title {
  font-family: 'Josefin Sans';
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.blog-empty-text {
  font-size: 15px;
  color: var(--grey-mid);
  margin-bottom: 24px;
}

/* ── BLOG: HUB / INDEX ─────────────────────── */

/* Hero additions */
.blog-hero {
  padding: 56px 48px;
}

.blog-hero-inner {
  max-width: 1200px;
}

/* Constrain the blog index + archives to 1100px (matches the hero) */


body.blog .section-inner,
body.archive .section-inner {
  max-width: 1200px;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.blog-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.blog-hero-inner h1 {
  font-family: 'Josefin Sans';
  font-size: 44px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.2px;
  color: #fff;
  margin-bottom: 14px;
}

.blog-hero-inner h1 em {
  font-style: normal;
  color: var(--mint);
}

/* Category Bar */
.cat-bar {
  background: var(--blue-xlight);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cat-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-mid);
  white-space: nowrap;
}

.cat-btn {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--grey-text);
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
}

.cat-btn:hover,
.cat-btn-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Blog Layout — two columns */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.blog-main {
  min-width: 0;
}

/* Featured Post Label */
.blog-featured-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 16px;
}

/* Featured Post Card */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 79, 160, 0.06);
  margin-bottom: 48px;
}

.featured-img {
  background: linear-gradient(135deg, var(--blue), #1e5cb8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 280px;
}

.featured-img-inner {
  text-align: center;
}

.featured-img-icon {
  font-size: 64px;
  margin-bottom: 12px;
}

.featured-img-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mint);
}

.featured-body {
  padding: 40px;
}

.featured-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.featured-title {
  font-family: 'Josefin Sans';
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.featured-title a {
  color: inherit;
  text-decoration: none;
}

.featured-title a:hover {
  color: var(--blue);
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.featured-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--grey-mid);
}

.featured-meta .meta-item svg {
  stroke: var(--grey-mid);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.featured-excerpt {
  font-size: 14px;
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.read-more:hover {
  background: #1e5cb8;
}

/* Blog Grid Label */
.blog-grid-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 20px;
}

/* Blog Card enhancements */


.blog-card:hover {
  border-color: var(--blue);
}

.blog-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
}

.blog-card-tag.career {
  background: var(--teal-light);
  color: var(--teal);
}

.blog-card-tag.legislation {
  background: var(--blue-light);
  color: var(--blue);
}

.blog-card-tag.business {
  background: #fef9ee;
  color: #92400e;
}

.blog-card-tag.cpd {
  background: #f3e8ff;
  color: #7c3aed;
}

.blog-card-img-icon {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.8);
}

.blog-card-date {
  font-size: 11.5px;
  color: var(--grey-mid);
}

.blog-card-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-cta-card {
  background: var(--blue);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  color: #fff;
}

.sidebar-cta-title {
  font-family: 'Josefin Sans';
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.sidebar-cta-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 16px;
}

.sidebar-cta-price {
  font-family: 'Josefin Sans';
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.sidebar-cta-price-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.sidebar-cta-price-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.sidebar-cta-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 9px;
  transition: background 0.2s;
  text-decoration: none;
}

.sidebar-cta-btn:hover {
  background: var(--gold-dark);
}

.sidebar-cta-call {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.sidebar-cta-call a {
  color: var(--mint);
  font-weight: 600;
  text-decoration: none;
}

.sidebar-topics-card {
  background: var(--blue-xlight);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.sidebar-topics-title {
  font-family: 'Josefin Sans';
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.topic-tag {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12.5px;
  color: var(--grey-text);
  margin: 0 6px 8px 0;
  transition: border-color 0.2s;
  text-decoration: none;
}

.topic-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── BLOG SIDEBAR WIDGET BLOCKS (apsic/sidebar-enrol-cta, apsic/sidebar-topics) ── */
.sidebar-price {
  font-family: 'Josefin Sans';
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.sidebar-price-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.sidebar-price-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.sidebar-btn {
  display: block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 9px;
  transition: background 0.2s;
  text-decoration: none;
}

.sidebar-btn:hover {
  background: var(--gold-dark);
}

.sidebar-call {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.sidebar-call a {
  color: var(--mint);
  font-weight: 600;
  text-decoration: none;
}

.sidebar-topics {
  background: var(--blue-xlight);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

/* Bottom CTA */
.blog-bottom-cta {
  background: var(--blue);
  padding: 56px 48px;
  text-align: center;
}

.blog-cta-widget.widget_block .final-cta,
.blog-hero-widget.widget_block .ph-header {
  padding: 0;
}

.blog-bottom-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.blog-bottom-cta h2 {
  font-family: 'Josefin Sans';
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.blog-bottom-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  line-height: 1.7;
}

.blog-bottom-cta .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s;
}

.blog-bottom-cta .btn-gold:hover {
  background: var(--gold-dark);
}

.blog-bottom-cta-contacts {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.blog-bottom-cta-contacts a {
  color: var(--mint);
  font-weight: 600;
  text-decoration: none;
}

/* ── RESPONSIVE ──────────────────────────── */
@media(max-width:960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 0;
  }

  .hero-nsw {
    padding: 48px 24px 0;
  }

  .hero-nsw .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-left {
    padding-bottom: 48px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 0;
  }

  .page-hero .hero-right {
    display: none;
  }
	

  .nat-hero {
    padding: 40px 24px;
  }

  .nat-hero h1 {
    font-size: 26px;
    white-space: normal;
  }

  .contact-hero {
    padding: 40px 24px;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-jacqui {
    display: none;
  }

  .ph-header {
    padding: 40px 24px;
  }

  .ph-heading {
    font-size: 26px;
    white-space: normal;
  }

  .transition-box {
    grid-template-columns: 1fr;
  }

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

  .steps-row {
    grid-template-columns: 1fr;
  }

  .steps-row--connector::before {
    display: none;
  }

  .tb-col.old {
    border-right: none;
    border-bottom: 1.5px solid var(--border);
  }



  .hero-h1 {
    font-size: 32px;
  }

  .hero-left {
    padding-bottom: 40px;
  }

  .nav {
    padding: 0 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    right: 0;
    width: 70%;
    max-width: 320px;
    height: calc(100vh - 68px);
    background: #fff;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    z-index: 200;
    box-shadow: -4px 0 24px rgba(26, 79, 160, 0.1);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    padding: 0;
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    text-align: left;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.15s, color 0.15s;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover {
    background: var(--blue-xlight);
    color: var(--blue);
  }

  .nav-links .sub-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: none;
    overflow: visible;
    background: #f8fafd;
  }

  .nav-links .sub-menu li {
    border-bottom: none;
    width: 100%;
  }

  .nav-links .sub-menu a {
    padding: 14px 24px 14px 48px;
    font-size: 13.5px;
    color: var(--grey-mid);
    text-align: left;
    border-bottom: 1px solid #e8eef6;
  }

  .nav-links .sub-menu li:last-child a {
    border-bottom: none;
  }

  .nav-links .sub-menu a:hover {
    background: #eef3fb;
    color: var(--blue);
  }

  .nav-links .menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links .menu-item-has-children>a::after {
    content: '›';
    border: none;
    width: auto;
    height: auto;
    margin-left: 8px;
    font-size: 18px;
    color: var(--grey-mid);
    transition: transform 0.2s;
  }

  .nav-links .menu-item-has-children.sub-open>a::after {
    transform: rotate(90deg);
  }

  .nav-cta-item {
    display: none !important;
  }

  .section {
    padding: 52px 24px;
  }

  .two-col,
  .two-col-wide {
    grid-template-columns: 1fr;

  }

  .two-col-wide {
    gap: 0px;
  }

  .has-two-col .wp-block-columns,
  .has-two-col-wide .wp-block-columns {
    grid-template-columns: 1fr;
  }

  .has-two-col .wp-block-group,
  .has-two-col-wide .wp-block-group {
    grid-template-columns: 1fr;
  }

  .overview-body-cols {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .diff-grid,
  .diff-grid-2,
  .diff-grid-4 {
    grid-template-columns: 1fr;
  }

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

  .step-grid .step-arrow {
    display: none;
  }

  .after-grid,
  .after-grid-3,
  .after-grid-4 {
    grid-template-columns: 1fr;
  }

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

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

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

  .compare-table-wrap .compare-table th,
  .compare-table-wrap .compare-table td {
    padding: 9px 10px;
    font-size: 12px;
  }

  .value-stack {
    grid-template-columns: 1fr;
    gap: 24px;
	  display:block;
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .cta-strip .cta-strip-top {
    grid-template-columns: 1fr;
  }

  .cta-strip .cs-right {
    align-items: flex-start;
  }

  .cta-strip .cta-actions-row {
    justify-content: flex-start;
  }

  .vs-items-grid {
    grid-template-columns: 1fr;
  }

  .trainer-grid,
  .trainer-grid-course {
    grid-template-columns: 1fr;
  }

  .trainer-img,
  .trainer-img-course {
    width: 120px;
    height: 120px;
    font-size: 36px;
  }

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

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

  .trainer-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .dates-bar {
    padding: 12px 24px;
  }

  .final-cta {
    padding: 52px 24px;
  }

  .stat-box {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
  }

  .cpd-strip {
    padding: 40px 24px;
  }

  .notice-bar {
    padding: 12px 24px;
  }

  footer {
    padding: 24px;
  }

  /* Jacqui Hero Card — stack on mobile */
  .jacqui-hero-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .jacqui-hero-img {
    justify-self: center;
    margin: 0 auto;
  }

  .jacqui-hero-tag,
  .jacqui-hero-name,
  .jacqui-hero-desc {
    text-align: center;
  }

  .jacqui-hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .jh-stat {
    flex: 0 0 calc(50% - 8px);
    align-items: center;
  }

  /* Blog Responsive */
  .post-hero,
  .archive-hero {
    padding: 80px 24px 48px;
  }

  .blog-hero {
    padding: 40px 24px;
  }

  .blog-hero-inner h1 {
    font-size: 32px;
  }

  .post-hero-title,
  .archive-hero-title {
    font-size: 28px;
  }

  .post-hero-wide .post-hero-inner {
    max-width: 100%;
  }

  .post-featured-inner {
    padding: 0 24px;
  }

  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-layout-full {
    max-width: 100%;
  }

  .post-nav {
    padding: 24px;
  }

  .post-nav-inner {
    flex-direction: column;
    gap: 16px;
  }

  .post-nav-link {
    max-width: 100%;
    text-align: left !important;
  }

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

  .post-bottom,
  .related-inner,
  .post-cta-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cat-bar {
    gap: 8px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

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

  .blog-list-item {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .blog-list-thumb {
    width: 100%;
    height: 160px;
  }

  .blog-bottom-cta {
    padding: 48px 24px;
  }

  .blog-bottom-cta h2 {
    font-size: 26px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-submit {
    width: 100%;
  }

	
	
	
	
	
}

/* ─── Contact Form ─── */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {

  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a2e44;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 79, 160, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7f99' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--gold-dark);
}

.form-note {
  font-size: 12px;
  color: var(--grey-mid);
  text-align: center;
  margin-top: 4px;
}

@media(max-width:960px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── Contact Form 7 Form-level Response ─── */
.wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  background: var(--white);
  border: 1px solid;
  min-height: 48px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: cf7-fade .25s ease;
}

.wpcf7-response-output::before {
  content: "!";
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  background: #dc3232;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.unaccepted .wpcf7-response-output::before,
.wpcf7 form.payment-required .wpcf7-response-output::before {
  content: "!";
  background: var(--blue);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--teal);
  color: var(--blue-dark);
}

.wpcf7 form.sent .wpcf7-response-output::before {
  content: "✓";
  background: var(--teal);
}

@keyframes cf7-fade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Contact Form 7 Field Tooltip ─── */
.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  max-width: 320px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: #222;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  z-index: 9999;
}

.wpcf7-not-valid-tip::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  transform: rotate(45deg);
}

.wpcf7-not-valid-tip::after {
  content: "!";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d93025;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
}

/* ─── Accessibility: Skip to Content ─── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top .2s;
}

.skip-to-content:focus {
  top: 16px;
}

/* ─── Accessibility: Focus Visible ─── */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Accessibility: Reduced Motion ─── */
@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* =================================================================
   APSIC Footer
   ================================================================= */

.a-footer {
  background: var(--navy);
  padding: 48px 48px 12px;
  position: relative;
  overflow: hidden;
}

.a-footer-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.a-footer-inner {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
}

.a-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.a-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.a-footer-logo-mark {
  width: 36px;
  height: 36px;
  background: rgba(168, 230, 216, 0.12);
  border: 1.5px solid rgba(168, 230, 216, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.a-footer-logo-mark svg {
  width: 18px;
  height: 18px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 2;
}

.a-footer-logo-text {
  display: flex;
  flex-direction: column;
}

.a-footer-logo-name {
  font-family: 'Josefin Sans';
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  line-height: 1.1;
}

.a-footer-logo-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.a-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.a-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-footer-copy {
  font-size: 12px;
  color:#fff;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.footer-links li a {
  font-size: 12px;
  font-weight: 400;
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.footer-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--mint);
  transition: width 0.2s;
}

.footer-links li a:hover {
  color: #fff;
}

.footer-links li a:hover::after {
  width: 100%;
}

/* Hide duplicate WC footer */
footer footer {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .a-footer {
    padding: 36px 24px 24px;
  }

  .a-footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .a-footer-brand {
    justify-content: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}



