/* ==========================================================================
   REFS AUSTRALIA — INNER PAGES SHARED STYLES
   Premium styling for Mentoring, Training, Consulting, Contact, Resources
   ========================================================================== */

/* -------------------------------------------------------------------------
   PAGE HERO / BREADCRUMB (shared) — PREMIUM SPLIT LAYOUT
   ------------------------------------------------------------------------- */
.refs-page-hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #14233A 0%, #1E2F4D 100%);
  overflow: hidden;
}
.refs-page-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(217,147,35,.12) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 10% 80%, rgba(31,121,168,.08) 0%, transparent 50%);
  pointer-events: none;
}
.refs-page-hero .container {
  position: relative;
}
.refs-page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.refs-page-hero__content {
  position: relative;
  max-width: 560px;
}
.refs-breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-size: 13px;
  letter-spacing: .04em;
}
.refs-breadcrumb li { color: rgba(255,255,255,.5); }
.refs-breadcrumb li + li::before { content: "/"; margin-right: 8px; color: rgba(255,255,255,.3); }
.refs-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .3s; }
.refs-breadcrumb a:hover { color: var(--refs-gold); }
.refs-page-hero h1 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.refs-page-hero h1 span { color: var(--refs-gold); }
.refs-page-hero h1 br { display: block; }
.refs-page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin: 0 0 30px;
}
.refs-page-hero .theme-btn {
  display: inline-block;
}
/* Hero stats row */
.refs-page-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.refs-page-hero__stat {
  text-align: left;
}
.refs-page-hero__stat-num {
  display: block;
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--refs-gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.refs-page-hero__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
}
/* Hero image area */
.refs-page-hero__media {
  position: relative;
}
.refs-page-hero__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
}
.refs-page-hero__img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,35,58,.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.refs-page-hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
/* Floating accent card on hero image */
.refs-page-hero__accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(20,35,58,.2);
  z-index: 2;
  max-width: 260px;
}
.refs-page-hero__accent-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #14233A 0%, #1E2F4D 100%);
  border-radius: 10px;
  color: var(--refs-gold);
  margin-bottom: 14px;
}
.refs-page-hero__accent h4 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #14233A;
  margin: 0 0 6px;
}
.refs-page-hero__accent p {
  font-size: 13px;
  color: #445267;
  line-height: 1.5;
  margin: 0;
}
/* Decorative elements */
.refs-page-hero__decor {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(217,147,35,.3);
  border-radius: 50%;
  z-index: 0;
}
.refs-page-hero__decor-dots {
  position: absolute;
  bottom: 60px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(217,147,35,.4) 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: 0;
}
@media (max-width: 991px) {
  .refs-page-hero { padding: 130px 0 80px; }
  .refs-page-hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .refs-page-hero__content { max-width: 100%; }
  .refs-page-hero__media { max-width: 500px; margin: 0 auto; }
  .refs-page-hero__img { height: 320px; }
  .refs-page-hero__accent { left: 20px; bottom: -20px; }
}
@media (max-width: 767px) {
  .refs-page-hero { padding: 120px 0 60px; }
  .refs-page-hero h1 { font-size: 30px; line-height: 1.25; }
  .refs-page-hero h1 span { display: inline; }
  .refs-page-hero__stats { gap: 24px; flex-wrap: wrap; }
  .refs-page-hero__stat-num { font-size: 26px; }
  .refs-page-hero__img { height: 260px; }
  .refs-page-hero__accent { position: relative; left: 0; bottom: 0; margin-top: -40px; margin-left: 20px; margin-right: 20px; }
  .refs-page-hero__decor, .refs-page-hero__decor-dots { display: none; }
}

/* -------------------------------------------------------------------------
   CONTENT SECTIONS
   ------------------------------------------------------------------------- */
.refs-inner-section {
  padding: 100px 0;
}
.refs-inner-section--alt {
  background: var(--refs-warm-white);
}
.refs-inner-section--dark {
  background: linear-gradient(180deg, #14233A 0%, #1E2F4D 100%);
  color: #fff;
}
.refs-inner-section--dark .refs-eyebrow { color: var(--refs-gold); }
.refs-inner-section--dark h2,
.refs-inner-section--dark h3,
.refs-inner-section--dark .refs-section-header h2 { color: #fff !important; }
.refs-inner-section--dark p,
.refs-inner-section--dark .refs-section-header p { color: rgba(255,255,255,.8); }
.refs-inner-section--dark .refs-feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.refs-inner-section--dark .refs-feature-card h3 { color: #fff; }
.refs-inner-section--dark .refs-feature-card p { color: rgba(255,255,255,.75); }

/* Section headers */
.refs-section-header {
  max-width: 680px;
  margin-bottom: 50px;
}
.refs-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.refs-section-header h2 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #14233A;
  line-height: 1.2;
  margin: 12px 0 20px;
  letter-spacing: -.015em;
}
.refs-section-header p {
  font-size: 17px;
  color: #445267;
  line-height: 1.7;
  margin: 0;
}

/* -------------------------------------------------------------------------
   FEATURE CARDS — PREMIUM ENHANCED
   ------------------------------------------------------------------------- */
.refs-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.refs-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(20,35,58,.06);
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
  overflow: hidden;
}
.refs-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--refs-gold) 0%, var(--primary-color-one) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.refs-feature-card::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(217,147,35,.08) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s ease;
}
.refs-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(20,35,58,.14);
}
.refs-feature-card:hover::before {
  transform: scaleX(1);
}
.refs-feature-card:hover::after {
  opacity: 1;
}
.refs-feature-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #14233A 0%, #1E2F4D 100%);
  border-radius: 14px;
  color: var(--refs-gold);
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 20px rgba(20,35,58,.15);
}
.refs-feature-card__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(217,147,35,.2);
  border-radius: 18px;
  opacity: 0;
  transition: opacity .3s ease;
}
.refs-feature-card:hover .refs-feature-card__icon::after {
  opacity: 1;
}
.refs-feature-card__icon svg {
  width: 28px;
  height: 28px;
}
.refs-feature-card__num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(20,35,58,.04);
  line-height: 1;
}
.refs-feature-card h3 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #14233A;
  margin: 0 0 14px;
}
.refs-feature-card p {
  font-size: 15px;
  color: #445267;
  line-height: 1.7;
  margin: 0;
}
.refs-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--refs-gold);
  text-decoration: none;
  transition: gap .3s ease;
}
.refs-feature-card__link:hover {
  gap: 12px;
}
.refs-feature-card__link svg {
  width: 16px;
  height: 16px;
}

/* -------------------------------------------------------------------------
   PROCESS STEPS
   ------------------------------------------------------------------------- */
.refs-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: process-step;
}
.refs-process-step {
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(20,35,58,.06);
  counter-increment: process-step;
}
.refs-process-step::before {
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  top: -16px;
  left: 24px;
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(20,35,58,.06);
  line-height: 1;
}
.refs-process-step h4 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #14233A;
  margin: 20px 0 10px;
}
.refs-process-step p {
  font-size: 14px;
  color: #445267;
  line-height: 1.6;
  margin: 0;
}

/* -------------------------------------------------------------------------
   PRICING / PACKAGE CARDS
   ------------------------------------------------------------------------- */
.refs-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
.refs-package {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 12px 40px rgba(20,35,58,.08);
  position: relative;
  transition: transform .3s;
}
.refs-package:hover {
  transform: translateY(-4px);
}
.refs-package--featured {
  background: linear-gradient(180deg, #14233A 0%, #1E2F4D 100%);
  color: #fff;
  transform: scale(1.02);
  z-index: 1;
}
.refs-package--featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.refs-package__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--refs-gold);
  color: #14233A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}
.refs-package__name {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--refs-gold);
  margin: 0 0 12px;
}
.refs-package--featured .refs-package__name {
  color: var(--refs-gold);
}
.refs-package__title {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #14233A;
  margin: 0 0 16px;
}
.refs-package--featured .refs-package__title {
  color: #fff;
}
.refs-package__desc {
  font-size: 15px;
  color: #445267;
  line-height: 1.6;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--refs-hairline);
}
.refs-package--featured .refs-package__desc {
  color: rgba(255,255,255,.75);
  border-bottom-color: rgba(255,255,255,.15);
}
.refs-package__features {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.refs-package__features li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  color: #445267;
}
.refs-package--featured .refs-package__features li {
  color: rgba(255,255,255,.85);
}
.refs-package__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--refs-gold);
  border-bottom: 2.5px solid var(--refs-gold);
  transform: rotate(-45deg);
}
.refs-package .theme-btn {
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  border-radius: 8px;
}

/* -------------------------------------------------------------------------
   TESTIMONIAL INLINE
   ------------------------------------------------------------------------- */
.refs-testimonial-inline {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(20,35,58,.08);
}
.refs-testimonial-inline__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(20,35,58,.12);
}
.refs-testimonial-inline__stars {
  color: var(--refs-gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.refs-testimonial-inline blockquote {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #14233A;
  line-height: 1.5;
  margin: 0 0 16px;
  font-style: italic;
}
.refs-testimonial-inline cite {
  font-size: 14px;
  color: #7B8899;
  font-style: normal;
}
.refs-testimonial-inline cite strong {
  color: #14233A;
  font-weight: 700;
}

/* -------------------------------------------------------------------------
   CONTACT FORM SECTION
   ------------------------------------------------------------------------- */
.refs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.refs-contact-info h3 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #14233A;
  margin: 0 0 20px;
}
.refs-contact-info p {
  font-size: 16px;
  color: #445267;
  line-height: 1.7;
  margin: 0 0 30px;
}
.refs-contact-details {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.refs-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--refs-hairline);
}
.refs-contact-details li:last-child {
  border-bottom: 0;
}
.refs-contact-details__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #14233A 0%, #1E2F4D 100%);
  border-radius: 10px;
  color: var(--refs-gold);
  flex-shrink: 0;
}
.refs-contact-details__icon svg {
  width: 22px;
  height: 22px;
}
.refs-contact-details__text strong {
  display: block;
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #14233A;
  margin-bottom: 4px;
}
.refs-contact-details__text span,
.refs-contact-details__text a {
  font-size: 15px;
  color: #445267;
  text-decoration: none;
}
.refs-contact-details__text a:hover {
  color: var(--refs-gold);
}

/* -------------------------------------------------------------------------
   FAQ ACCORDION (for inner pages)
   ------------------------------------------------------------------------- */
.refs-faq-list {
  max-width: 800px;
}
.refs-faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(20,35,58,.04);
  overflow: hidden;
}
.refs-faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #14233A;
  text-align: left;
  cursor: pointer;
  transition: background .3s;
}
.refs-faq-item__question:hover {
  background: rgba(20,35,58,.02);
}
.refs-faq-item__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--refs-warm-white);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.refs-faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: #14233A;
  transition: transform .3s;
}
.refs-faq-item.is-open .refs-faq-item__icon {
  background: var(--refs-gold);
}
.refs-faq-item.is-open .refs-faq-item__icon svg {
  transform: rotate(45deg);
  stroke: #14233A;
}
.refs-faq-item__answer {
  display: none;
  padding: 0 24px 24px;
  font-size: 15px;
  color: #445267;
  line-height: 1.7;
}
.refs-faq-item.is-open .refs-faq-item__answer {
  display: block;
}

/* -------------------------------------------------------------------------
   RESOURCE CARDS
   ------------------------------------------------------------------------- */
.refs-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.refs-resource-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(20,35,58,.06);
  transition: transform .3s, box-shadow .3s;
}
.refs-resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(20,35,58,.12);
}
.refs-resource-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.refs-resource-card__content {
  padding: 28px 24px;
}
.refs-resource-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--refs-gold);
  background: rgba(217,147,35,.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.refs-resource-card h3 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #14233A;
  margin: 0 0 10px;
  line-height: 1.35;
}
.refs-resource-card p {
  font-size: 14px;
  color: #445267;
  line-height: 1.6;
  margin: 0 0 16px;
}
.refs-resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--refs-gold);
  text-decoration: none;
  transition: gap .3s;
}
.refs-resource-card__link:hover {
  gap: 12px;
}
.refs-resource-card__link svg {
  width: 16px;
  height: 16px;
}

/* -------------------------------------------------------------------------
   CTA BANNER — PREMIUM WITH IMAGE
   ------------------------------------------------------------------------- */
.refs-cta-premium {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.refs-cta-premium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.refs-cta-premium__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  background: linear-gradient(180deg, #14233A 0%, #1E2F4D 100%);
  position: relative;
}
.refs-cta-premium__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100vw;
  background: inherit;
  z-index: -1;
}
.refs-cta-premium__content::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217,147,35,.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
/* Container wrapper for proper alignment */
.refs-cta-premium .container {
  display: contents;
}
.refs-cta-premium__inner {
  max-width: 540px;
  margin-left: auto;
}
.refs-cta-premium__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(217,147,35,.15);
  padding: 10px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  width: fit-content;
}
.refs-cta-premium__badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--refs-gold);
  border-radius: 50%;
  color: #14233A;
}
.refs-cta-premium__badge-icon svg {
  width: 14px;
  height: 14px;
}
.refs-cta-premium__badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--refs-gold);
  letter-spacing: .04em;
}
.refs-cta-premium h2 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.refs-cta-premium p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 480px;
}
.refs-cta-premium__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.refs-cta-premium .theme-btn.one {
  background: var(--refs-gold);
  color: #14233A;
  font-weight: 800;
  padding: 18px 36px;
  font-size: 15px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(217,147,35,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.refs-cta-premium .theme-btn.one:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(217,147,35,.45);
}
.refs-cta-premium__secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .3s ease, gap .3s ease;
}
.refs-cta-premium__secondary:hover {
  color: var(--refs-gold);
  gap: 14px;
}
.refs-cta-premium__secondary svg {
  width: 18px;
  height: 18px;
}
.refs-cta-premium__stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.refs-cta-premium__stat-num {
  display: block;
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--refs-gold);
  line-height: 1;
}
.refs-cta-premium__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .refs-cta-premium__stats {
    margin-top: 36px;
    padding-top: 24px;
  }
}
/* CTA Image side */
.refs-cta-premium__media {
  position: relative;
  overflow: hidden;
}
.refs-cta-premium__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.refs-cta-premium__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,35,58,.6) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.refs-cta-premium__overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  padding: 28px 32px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.refs-cta-premium__overlay-stars {
  color: var(--refs-gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.refs-cta-premium__overlay blockquote {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #14233A;
  line-height: 1.5;
  margin: 0 0 14px;
  font-style: italic;
}
.refs-cta-premium__overlay cite {
  font-size: 13px;
  color: #7B8899;
  font-style: normal;
}
.refs-cta-premium__overlay cite strong {
  color: #14233A;
}
@media (max-width: 991px) {
  .refs-cta-premium__grid { grid-template-columns: 1fr; }
  .refs-cta-premium__content { padding: 70px 40px; text-align: center; align-items: center; }
  .refs-cta-premium__content::before { left: -40px; right: -40px; }
  .refs-cta-premium__inner { max-width: 100%; margin-left: 0; }
  .refs-cta-premium p { max-width: 100%; }
  .refs-cta-premium__buttons { justify-content: center; }
  .refs-cta-premium__stats { justify-content: center; }
  .refs-cta-premium__media { min-height: 400px; }
  .refs-cta-premium__overlay { left: 20px; right: 20px; bottom: 20px; }
}
@media (max-width: 767px) {
  .refs-cta-premium__content { padding: 50px 24px; }
  .refs-cta-premium h2 { font-size: 28px; }
  .refs-cta-premium__stats { flex-wrap: wrap; gap: 24px; }
  .refs-cta-premium__media { min-height: 320px; }
  .refs-cta-premium__overlay { padding: 20px 24px; }
  .refs-cta-premium__overlay blockquote { font-size: 14px; }
}

/* Legacy CTA Banner - keep for pages that might still use it */
.refs-cta-banner {
  background: linear-gradient(180deg, #14233A 0%, #1E2F4D 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.refs-cta-banner::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217,147,35,.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.refs-cta-banner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31,121,168,.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.refs-cta-banner__content {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}
.refs-cta-banner h2 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.2;
}
.refs-cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin: 0 0 36px;
}
.refs-cta-banner .theme-btn.one {
  background: var(--refs-gold);
  color: #14233A;
  font-weight: 800;
  padding: 18px 40px;
  font-size: 15px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(217,147,35,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.refs-cta-banner .theme-btn.one:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(217,147,35,.45);
}

/* -------------------------------------------------------------------------
   HIGHLIGHT BOX — New premium component
   ------------------------------------------------------------------------- */
.refs-highlight-box {
  background: linear-gradient(135deg, var(--refs-warm-white) 0%, #fff 100%);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20,35,58,.08);
}
.refs-highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--refs-gold) 0%, var(--primary-color-one) 100%);
  border-radius: 20px 0 0 20px;
}
.refs-highlight-box::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(217,147,35,.1) 0%, transparent 60%);
  border-radius: 50%;
}
.refs-highlight-box__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #14233A 0%, #1E2F4D 100%);
  border-radius: 16px;
  color: var(--refs-gold);
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(20,35,58,.2);
}
.refs-highlight-box h3 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #14233A;
  margin: 0 0 16px;
  line-height: 1.3;
}
.refs-highlight-box p {
  font-size: 16px;
  color: #445267;
  line-height: 1.7;
  margin: 0 0 24px;
}
.refs-highlight-box .theme-btn {
  margin-top: 10px;
}

/* -------------------------------------------------------------------------
   PREMIUM HOW WE TEACH - Image + Content Grid
   ------------------------------------------------------------------------- */
.refs-teach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.refs-teach-media {
  position: relative;
}
.refs-teach-media__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(20,35,58,.15);
}
.refs-teach-media__badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: linear-gradient(135deg, #14233A 0%, #1E2F4D 100%);
  color: #fff;
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(20,35,58,.25);
}
.refs-teach-media__badge-num {
  display: block;
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--refs-gold);
  line-height: 1;
}
.refs-teach-media__badge-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.refs-teach-content {
  padding-left: 20px;
}
.refs-teach-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.refs-teach-list li {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--refs-hairline);
}
.refs-teach-list li:first-child {
  padding-top: 0;
}
.refs-teach-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.refs-teach-list__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217,147,35,.12) 0%, rgba(217,147,35,.06) 100%);
  border-radius: 12px;
  color: var(--refs-gold);
}
.refs-teach-list__icon svg {
  width: 24px;
  height: 24px;
}
.refs-teach-list h4 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #14233A;
  margin: 0 0 6px;
}
.refs-teach-list p {
  font-size: 14px;
  color: #445267;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 991px) {
  .refs-teach-grid { grid-template-columns: 1fr; gap: 40px; }
  .refs-teach-media { order: -1; }
  .refs-teach-media__img { height: 350px; }
  .refs-teach-content { padding-left: 0; }
}
@media (max-width: 767px) {
  .refs-teach-media__img { height: 280px; }
  .refs-teach-media__badge { right: 20px; bottom: -15px; padding: 16px 20px; }
  .refs-teach-media__badge-num { font-size: 28px; }
}

/* -------------------------------------------------------------------------
   PREMIUM UPCOMING SESSIONS - Split Image Card
   ------------------------------------------------------------------------- */
.refs-upcoming-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(20,35,58,.12);
}
.refs-upcoming-card__media {
  position: relative;
  min-height: 400px;
}
.refs-upcoming-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.refs-upcoming-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,35,58,.7) 0%, rgba(20,35,58,.3) 100%);
  z-index: 1;
}
.refs-upcoming-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  color: #fff;
}
.refs-upcoming-card__overlay h3 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.25;
}
.refs-upcoming-card__overlay p {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin: 0;
}
.refs-upcoming-card__features {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.refs-upcoming-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}
.refs-upcoming-card__features li::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--refs-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  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='%2314233A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.refs-upcoming-card__content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.refs-upcoming-card__content h4 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--refs-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.refs-upcoming-card__content h3 {
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #14233A;
  margin: 0 0 16px;
  line-height: 1.25;
}
.refs-upcoming-card__content > p {
  font-size: 16px;
  color: #445267;
  line-height: 1.7;
  margin: 0 0 30px;
}
.refs-upcoming-card__info {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--refs-hairline);
}
.refs-upcoming-card__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.refs-upcoming-card__info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,147,35,.1);
  border-radius: 10px;
  color: var(--refs-gold);
}
.refs-upcoming-card__info-icon svg {
  width: 20px;
  height: 20px;
}
.refs-upcoming-card__info-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #14233A;
}
.refs-upcoming-card__info-text span {
  display: block;
  font-size: 12px;
  color: #7B8899;
}
.refs-upcoming-card .theme-btn {
  align-self: flex-start;
}
@media (max-width: 991px) {
  .refs-upcoming-card { grid-template-columns: 1fr; }
  .refs-upcoming-card__media { min-height: 300px; }
  .refs-upcoming-card__overlay { padding: 40px; }
  .refs-upcoming-card__content { padding: 40px; }
}
@media (max-width: 767px) {
  .refs-upcoming-card__media { min-height: 260px; }
  .refs-upcoming-card__overlay { padding: 30px; }
  .refs-upcoming-card__overlay h3 { font-size: 22px; }
  .refs-upcoming-card__content { padding: 30px; }
  .refs-upcoming-card__info { flex-direction: column; gap: 16px; }
}

/* -------------------------------------------------------------------------
   STATS ROW — Inline stats component
   ------------------------------------------------------------------------- */
.refs-stats-row {
  display: flex;
  gap: 50px;
  padding: 40px 0;
  border-top: 1px solid var(--refs-hairline);
  border-bottom: 1px solid var(--refs-hairline);
  margin: 50px 0;
}
.refs-stats-row__item {
  text-align: center;
  flex: 1;
}
.refs-stats-row__num {
  display: block;
  font-family: 'Spartan','Inter',sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #14233A;
  line-height: 1;
  letter-spacing: -.02em;
}
.refs-stats-row__num span {
  color: var(--refs-gold);
}
.refs-stats-row__label {
  display: block;
  font-size: 13px;
  color: #7B8899;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .refs-stats-row { flex-wrap: wrap; gap: 30px; }
  .refs-stats-row__item { flex: 0 0 45%; }
  .refs-stats-row__num { font-size: 32px; }
}

/* -------------------------------------------------------------------------
   RESPONSIVE — TABLET
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .refs-page-hero {
    padding: 140px 0 80px;
  }
  .refs-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .refs-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .refs-package-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .refs-package--featured {
    transform: none;
    order: -1;
  }
  .refs-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .refs-resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------------------------------------------
   RESPONSIVE — MOBILE
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .refs-page-hero {
    padding: 120px 0 60px;
  }
  .refs-page-hero h1 {
    font-size: 32px;
  }
  .refs-inner-section {
    padding: 70px 0;
  }
  .refs-section-header {
    margin-bottom: 36px;
  }
  .refs-feature-grid {
    grid-template-columns: 1fr;
  }
  .refs-feature-card {
    padding: 28px 24px;
  }
  .refs-process {
    grid-template-columns: 1fr;
  }
  .refs-testimonial-inline {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .refs-testimonial-inline__avatar {
    margin: 0 auto;
  }
  .refs-resource-grid {
    grid-template-columns: 1fr;
  }
  .refs-cta-banner {
    padding: 60px 0;
  }
}


/* =====================================================
   COUNTDOWN TIMER
   ===================================================== */
.refs-countdown {
  display: flex;
  gap: 16px;
  margin: 24px 0 28px;
}
.refs-countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  padding: 16px 12px;
  background: linear-gradient(135deg, #1E2F4D 0%, #14233A 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(20,35,58,.25);
  border: 1px solid rgba(217,147,35,.2);
}
.refs-countdown__num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: #D99323;
  line-height: 1;
  letter-spacing: -0.02em;
}
.refs-countdown__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}
/* Pulse animation on seconds */
.refs-countdown__item:last-child .refs-countdown__num {
  animation: countdownPulse 1s ease-in-out infinite;
}
@keyframes countdownPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
/* Expired state */
.refs-countdown.is-expired {
  display: none;
}
.refs-countdown-expired {
  display: none;
  padding: 16px 24px;
  background: linear-gradient(135deg, #D99323 0%, #c4842a 100%);
  border-radius: 8px;
  color: #14233A;
  font-weight: 600;
  margin: 24px 0 28px;
}
.refs-countdown.is-expired + .refs-countdown-expired {
  display: inline-block;
}
@media (max-width: 575px) {
  .refs-countdown {
    gap: 10px;
    justify-content: center;
  }
  .refs-countdown__item {
    min-width: 60px;
    padding: 12px 8px;
  }
  .refs-countdown__num {
    font-size: 24px;
  }
  .refs-countdown__label {
    font-size: 10px;
  }
}

/* =====================================================
   FLOATING CONTACT BUTTON
   ===================================================== */
.refs-float-contact {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #D99323 0%, #c4842a 100%);
  color: #14233A;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(217,147,35,.4), 0 2px 8px rgba(0,0,0,.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}
.refs-float-contact.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.refs-float-contact:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(217,147,35,.5), 0 4px 12px rgba(0,0,0,.2);
  color: #14233A;
  text-decoration: none;
}
.refs-float-contact:active {
  transform: translateY(0) scale(0.98);
}
.refs-float-contact svg {
  flex-shrink: 0;
}
.refs-float-contact span {
  white-space: nowrap;
}
/* Hide on contact page */
body.is-contact-page .refs-float-contact {
  display: none;
}
/* Mobile adjustments */
@media (max-width: 767px) {
  .refs-float-contact {
    bottom: 85px;
    right: 20px;
    padding: 12px 18px;
    font-size: 13px;
  }
  .refs-float-contact span {
    display: none;
  }
  .refs-float-contact {
    padding: 14px;
    border-radius: 50%;
  }
}
/* Ensure it doesn't overlap with go-to-top button */
.prgoress_indicator.is-visible ~ .refs-float-contact,
.refs-float-contact {
  bottom: 100px;
}
@media (max-width: 767px) {
  .prgoress_indicator.is-visible ~ .refs-float-contact,
  .refs-float-contact {
    bottom: 85px;
  }
}


/* =====================================================
   EMAIL NOTIFICATION SIGNUP (Training Page)
   ===================================================== */
.refs-notify-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #1E2F4D 0%, #14233A 100%);
  border-radius: 20px;
  border: 1px solid rgba(217,147,35,.15);
  box-shadow: 0 8px 32px rgba(20,35,58,.2);
}
.refs-notify-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,147,35,.12);
  border-radius: 16px;
  color: #D99323;
}
.refs-notify-card__content h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.refs-notify-card__content p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 15px;
}
.refs-notify-card__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.refs-notify-card__input-wrap {
  display: flex;
  gap: 12px;
}
.refs-notify-card__input {
  width: 280px;
  padding: 14px 20px;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: #fff;
  transition: border-color .2s ease, background .2s ease;
}
.refs-notify-card__input::placeholder {
  color: rgba(255,255,255,.5);
}
.refs-notify-card__input:focus {
  outline: none;
  border-color: #D99323;
  background: rgba(255,255,255,.08);
}
.refs-notify-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #14233A;
  background: linear-gradient(135deg, #D99323 0%, #c4842a 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.refs-notify-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,147,35,.4);
}
.refs-notify-card__privacy {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin: 0;
  text-align: right;
}
.refs-notify-card__success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(31,122,69,.15);
  border: 1px solid rgba(31,122,69,.3);
  border-radius: 10px;
  color: #5eba7d;
  font-weight: 500;
}
.refs-notify-card__success.is-visible {
  display: flex;
}
.refs-notify-card__form.is-hidden {
  display: none;
}
@media (max-width: 991px) {
  .refs-notify-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 32px;
  }
  .refs-notify-card__icon {
    margin: 0 auto;
  }
  .refs-notify-card__form {
    align-items: center;
  }
  .refs-notify-card__input-wrap {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .refs-notify-card__input {
    width: 100%;
  }
  .refs-notify-card__btn {
    width: 100%;
    justify-content: center;
  }
  .refs-notify-card__privacy {
    text-align: center;
  }
}

/* =====================================================
   24-MONTH JOURNEY TIMELINE (Mentoring Page)
   ===================================================== */
.refs-journey-section {
  overflow: hidden;
}
.refs-journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
}
.refs-journey-timeline__line {
  position: absolute;
  top: 50px;
  left: 60px;
  right: 60px;
  height: 4px;
  background: rgba(217,147,35,.2);
  border-radius: 2px;
}
.refs-journey-timeline__progress {
  position: absolute;
  top: 50px;
  left: 60px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #D99323 0%, #c4842a 100%);
  border-radius: 2px;
  transition: width 1s ease;
}
.refs-journey-stage {
  position: relative;
  text-align: center;
}
.refs-journey-stage__marker {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E2F4D 0%, #14233A 100%);
  border: 3px solid rgba(217,147,35,.3);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(20,35,58,.3);
  transition: border-color .3s ease, transform .3s ease;
}
.refs-journey-stage:hover .refs-journey-stage__marker {
  border-color: #D99323;
  transform: scale(1.08);
}
.refs-journey-stage__month {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: #D99323;
  line-height: 1;
}
.refs-journey-stage__month-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}
.refs-journey-stage__content {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(20,35,58,.08);
  border: 1px solid rgba(20,35,58,.06);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.refs-journey-stage:hover .refs-journey-stage__content {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(20,35,58,.12);
}
.refs-journey-stage__badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 12px;
}
.refs-journey-stage--foundation .refs-journey-stage__badge {
  background: rgba(46,155,214,.12);
  color: #2E9BD6;
}
.refs-journey-stage--development .refs-journey-stage__badge {
  background: rgba(217,147,35,.12);
  color: #D99323;
}
.refs-journey-stage--confidence .refs-journey-stage__badge {
  background: rgba(31,122,69,.12);
  color: #1F7A45;
}
.refs-journey-stage--independence .refs-journey-stage__badge {
  background: rgba(139,69,169,.12);
  color: #8B45A9;
}
.refs-journey-stage__content h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #14233A;
}
.refs-journey-stage__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.refs-journey-stage__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #5a6a7a;
  line-height: 1.5;
}
.refs-journey-stage__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #D99323;
  border-radius: 50%;
}
.refs-journey-stage__milestone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(31,122,69,.08);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1F7A45;
}
.refs-journey-stage__milestone svg {
  flex-shrink: 0;
}

/* =====================================================
   POLICY PAGES (Privacy, Terms, Disclaimer)
   ===================================================== */
.refs-policy-header {
  padding: 140px 0 60px;
  background: #F8F9FB;
  border-bottom: 1px solid rgba(20,35,58,.06);
}
.refs-policy-header .refs-breadcrumb li { color: #6b7a8a; }
.refs-policy-header .refs-breadcrumb li + li::before { color: #a0aab4; }
.refs-policy-header .refs-breadcrumb a { color: #14233A; }
.refs-policy-header .refs-breadcrumb a:hover { color: #D99323; }
.refs-policy-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #14233A;
  margin: 16px 0 0;
}
.refs-policy-header__updated {
  font-size: 14px;
  color: #6b7a8a;
  margin-top: 12px;
}
.refs-policy-content {
  padding: 60px 0 100px;
}
.refs-policy-content__inner {
  max-width: 800px;
}
.refs-policy-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #14233A;
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(20,35,58,.08);
}
.refs-policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.refs-policy-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #14233A;
  margin: 28px 0 12px;
}
.refs-policy-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #5a6a7a;
  margin-bottom: 16px;
}
.refs-policy-content ul {
  margin: 0 0 20px;
  padding-left: 24px;
}
.refs-policy-content ul li {
  font-size: 16px;
  line-height: 1.75;
  color: #5a6a7a;
  margin-bottom: 8px;
}
.refs-policy-content a {
  color: #2E9BD6;
  text-decoration: none;
  transition: color .2s ease;
}
.refs-policy-content a:hover {
  color: #D99323;
  text-decoration: underline;
}
.refs-policy-content__contact {
  list-style: none;
  padding: 0;
  background: #F8F9FB;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 24px;
}
.refs-policy-content__contact li {
  margin-bottom: 12px;
}
.refs-policy-content__contact li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .refs-policy-header {
    padding: 120px 0 40px;
  }
  .refs-policy-header h1 {
    font-size: 32px;
  }
  .refs-policy-content {
    padding: 40px 0 60px;
  }
  .refs-policy-content h2 {
    font-size: 20px;
    margin: 36px 0 12px;
  }
  .refs-policy-content p,
  .refs-policy-content ul li {
    font-size: 15px;
  }
}

.refs-journey-stage__milestone--final {
  background: linear-gradient(135deg, rgba(217,147,35,.15) 0%, rgba(217,147,35,.08) 100%);
  color: #D99323;
}
@media (max-width: 1199px) {
  .refs-journey-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .refs-journey-timeline__line,
  .refs-journey-timeline__progress {
    display: none;
  }
}
@media (max-width: 767px) {
  .refs-journey-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .refs-journey-stage__marker {
    width: 70px;
    height: 70px;
  }
  .refs-journey-stage__month {
    font-size: 20px;
  }
}

/* =====================================================
   CONSULTING PROCESS (Consulting Page)
   ===================================================== */
.refs-consult-process-section {
  background: linear-gradient(180deg, #14233A 0%, #1E2F4D 100%);
}
.refs-consult-process {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 60px auto 0;
}
.refs-consult-process__item {
  display: grid;
  grid-template-columns: 80px 72px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}
.refs-consult-process__num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(217,147,35,.25);
  line-height: 1;
}
.refs-consult-process__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,147,35,.1);
  border: 2px solid rgba(217,147,35,.2);
  border-radius: 16px;
  color: #D99323;
  transition: background .3s ease, border-color .3s ease;
}
.refs-consult-process__item:hover .refs-consult-process__icon {
  background: rgba(217,147,35,.15);
  border-color: rgba(217,147,35,.4);
}
.refs-consult-process__content h4 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.refs-consult-process__content p {
  margin: 0 0 12px;
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.refs-consult-process__duration {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,.08);
  border-radius: 20px;
  color: rgba(255,255,255,.6);
}
.refs-consult-process__connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(217,147,35,.4) 0%, rgba(217,147,35,.1) 100%);
  margin-left: 115px;
}
.refs-consult-process__cta {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .refs-consult-process__item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .refs-consult-process__num {
    font-size: 32px;
    grid-row: 1;
  }
  .refs-consult-process__icon {
    display: none;
  }
  .refs-consult-process__content {
    grid-column: 2;
  }
  .refs-consult-process__content h4 {
    font-size: 18px;
  }
  .refs-consult-process__connector {
    margin-left: 29px;
    height: 24px;
  }
}
