/* ═══════════════════════════════════════════════════════════
   DCC – Inner Pages Shared Styles
   Used by: referral, faq, pricing, careers
   ═══════════════════════════════════════════════════════════ */

/* ─── REFERRAL HERO V2 (flow diagram: you → reward → friend) ── */
.ref-hero-v2 { background: linear-gradient(160deg, #faf8fe 0%, #f3edfc 60%, #f5eefc 100%); padding: 4.5rem 0; overflow: hidden; }
[data-theme="dark"] .ref-hero-v2 { background: linear-gradient(160deg, #0d0a14 0%, #110c1a 100%); }

.ref-hero-v2__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }

.ref-hero-v2__kicker { display: inline-flex; align-items: center; gap: .6rem; color: #7c3aed; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.ref-hero-v2__kicker-line { width: 30px; height: 2px; background: #7c3aed; border-radius: 2px; }
.ref-hero-v2__title { font-family: 'Manrope', sans-serif; font-size: clamp(2.2rem, 4vw, 3.3rem); font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 1rem; }
.ref-hero-v2__title em { color: #7c3aed; font-style: italic; }
.ref-hero-v2__sub { color: var(--gray); font-size: 1.02rem; line-height: 1.75; max-width: 460px; margin-bottom: 1.8rem; }

.ref-hero-v2__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.ref-hero-v2__btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  background: linear-gradient(135deg,#7c3aed,#6d28d9);
  color: #fff; font-weight: 700; font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(124,58,237,.3); transition: .25s;
}
.ref-hero-v2__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(124,58,237,.4); }
.ref-hero-v2__btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  border: 1.5px solid var(--gray-light); color: var(--navy);
  font-weight: 700; font-size: .95rem; text-decoration: none; transition: .25s; background: var(--white);
}
.ref-hero-v2__btn-ghost:hover { border-color: #7c3aed; color: #7c3aed; }

/* Flow diagram */
.ref-hero-v2__flow { display: flex; align-items: center; justify-content: center; gap: .4rem; position: relative; }
.rhf-node { display: flex; flex-direction: column; align-items: center; gap: .6rem; position: relative; }
.rhf-node__circle {
  width: 82px; height: 82px; border-radius: 50%; background: var(--white);
  border: 2px solid rgba(124,58,237,.25); box-shadow: 0 12px 30px rgba(124,58,237,.12);
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
  transition: transform .25s ease;
}
.rhf-node:hover .rhf-node__circle { transform: scale(1.08); }
.rhf-node__circle--gift {
  background: linear-gradient(135deg,#7c3aed,#6d28d9); border-color: transparent;
  box-shadow: 0 0 0 10px rgba(124,58,237,.1), 0 16px 36px rgba(124,58,237,.4);
  animation: refGiftPulse 2.2s ease-in-out infinite;
}
@keyframes refGiftPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.rhf-node span { font-size: .78rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.rhf-track { display: flex; flex-direction: column; gap: .3rem; color: rgba(124,58,237,.35); font-size: .6rem; margin: 0 .2rem; }

.rhf-chip {
  position: absolute; background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 50px; padding: .3rem .8rem; font-size: .68rem; font-weight: 800;
  color: #6d28d9; box-shadow: 0 8px 20px rgba(0,0,0,.1); white-space: nowrap;
}
.rhf-chip--1 { top: -1.8rem; left: -2.4rem; transform: rotate(-6deg); }
.rhf-chip--2 { bottom: -2.6rem; right: -1.6rem; transform: rotate(5deg); }

/* ─── FAQ HERO V2 (support chat mockup) ──────────────────── */
.faq-hero-v2 { background: linear-gradient(160deg, #f5f9ff 0%, #eef5fd 60%, #eaf2fb 100%); padding: 4.5rem 0; overflow: hidden; }
[data-theme="dark"] .faq-hero-v2 { background: linear-gradient(160deg, #060a12 0%, #080d16 100%); }

.faq-hero-v2__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }

.faq-hero-v2__kicker { display: inline-flex; align-items: center; gap: .6rem; color: #2563eb; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.faq-hero-v2__kicker-line { width: 30px; height: 2px; background: #2563eb; border-radius: 2px; }
.faq-hero-v2__title { font-family: 'Manrope', sans-serif; font-size: clamp(2.2rem, 4vw, 3.3rem); font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 1rem; }
.faq-hero-v2__title em { color: #2563eb; font-style: italic; }
.faq-hero-v2__sub { color: var(--gray); font-size: 1.02rem; line-height: 1.75; max-width: 460px; margin-bottom: 1.8rem; }

.faq-hero-v2__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.faq-hero-v2__btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  background: linear-gradient(135deg,#2563eb,#1d4ed8);
  color: #fff; font-weight: 700; font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,99,235,.3); transition: .25s;
}
.faq-hero-v2__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,99,235,.4); }
.faq-hero-v2__btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  border: 1.5px solid var(--gray-light); color: var(--navy);
  font-weight: 700; font-size: .95rem; text-decoration: none; transition: .25s; background: var(--white);
}
.faq-hero-v2__btn-ghost:hover { border-color: #2563eb; color: #2563eb; }

/* Chat mockup */
.faq-hero-v2__chat { background: var(--white); border-radius: 20px; padding: 1.4rem; box-shadow: 0 20px 44px rgba(0,0,0,.1); border: 1px solid var(--gray-light); display: flex; flex-direction: column; gap: .7rem; }
.fhc-header { display: flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; color: var(--navy); padding-bottom: .8rem; margin-bottom: .2rem; border-bottom: 1px solid var(--gray-light); }
.fhc-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
.fhc-row { display: flex; align-items: flex-end; gap: .5rem; }
.fhc-avatar { width: 28px; height: 28px; border-radius: 50%; background: rgba(37,99,235,.1); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.fhc-bubble { padding: .65rem 1rem; border-radius: 16px; font-size: .84rem; line-height: 1.5; max-width: 82%; }
.fhc-bubble--q { align-self: flex-end; margin-left: auto; background: linear-gradient(135deg,#2563eb,#1d4ed8); color: #fff; border-bottom-right-radius: 4px; }
.fhc-bubble--a { background: var(--off-white); color: var(--navy); border-bottom-left-radius: 4px; }
.fhc-typing { background: var(--off-white); border-radius: 16px; border-bottom-left-radius: 4px; padding: .8rem 1rem; display: flex; gap: .3rem; }
.fhc-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--gray); animation: fhcTyping 1.2s ease-in-out infinite; }
.fhc-typing span:nth-child(2) { animation-delay: .2s; }
.fhc-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes fhcTyping { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

/* ─── CAREERS HERO V2 (stacked job-card preview) ─────────── */
.careers-hero-v2 { background: linear-gradient(160deg, #fdf5f9 0%, #fbeef5 60%, #fceef4 100%); padding: 4.5rem 0; overflow: hidden; }
[data-theme="dark"] .careers-hero-v2 { background: linear-gradient(160deg, #12070d 0%, #150810 100%); }

.careers-hero-v2__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }

.careers-hero-v2__kicker { display: inline-flex; align-items: center; gap: .6rem; color: #db2777; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.careers-hero-v2__kicker-line { width: 30px; height: 2px; background: #db2777; border-radius: 2px; }
.careers-hero-v2__title { font-family: 'Manrope', sans-serif; font-size: clamp(2.2rem, 4vw, 3.3rem); font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 1rem; }
.careers-hero-v2__title em { color: #db2777; font-style: italic; }
.careers-hero-v2__sub { color: var(--gray); font-size: 1.02rem; line-height: 1.75; max-width: 460px; margin-bottom: 1.8rem; }

.careers-hero-v2__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.careers-hero-v2__btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  background: linear-gradient(135deg,#db2777,#be185d);
  color: #fff; font-weight: 700; font-size: .95rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(219,39,119,.3); transition: .25s;
}
.careers-hero-v2__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(219,39,119,.4); }
.careers-hero-v2__btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  border: 1.5px solid var(--gray-light); color: var(--navy);
  font-weight: 700; font-size: .95rem; text-decoration: none; transition: .25s; background: var(--white);
}
.careers-hero-v2__btn-ghost:hover { border-color: #db2777; color: #db2777; }

/* Stacked job cards */
.careers-hero-v2__stack { position: relative; height: 260px; }
.chj-badge {
  position: absolute; top: -.8rem; right: 1.5rem; z-index: 4;
  background: linear-gradient(135deg,#db2777,#be185d); color: #fff;
  padding: .4rem 1rem; border-radius: 50px; font-size: .72rem; font-weight: 800;
  box-shadow: 0 8px 22px rgba(219,39,119,.35);
}
.chj-card {
  position: absolute; left: 0; right: 0; background: var(--white);
  border-radius: 16px; padding: 1.1rem 1.3rem; border: 1px solid var(--gray-light);
  box-shadow: 0 12px 30px rgba(0,0,0,.08); transition: transform .25s ease, box-shadow .25s ease;
}
.chj-card:hover { transform: translateY(-4px) !important; box-shadow: 0 18px 40px rgba(0,0,0,.13); z-index: 5; }
.chj-card__row { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .4rem; }
.chj-card__row strong { font-family: 'Manrope', sans-serif; font-size: .95rem; color: var(--navy); }
.chj-card__tag { background: rgba(219,39,119,.1); color: #be185d; font-size: .66rem; font-weight: 800; padding: .2rem .6rem; border-radius: 50px; white-space: nowrap; }
.chj-card__loc { font-size: .78rem; color: var(--gray); }
.chj-card__loc i { color: #db2777; margin-right: .3rem; }
.chj-card--1 { top: 0; z-index: 3; }
.chj-card--2 { top: 82px; transform: scale(.97); opacity: .85; z-index: 2; }
.chj-card--3 { top: 164px; transform: scale(.94); opacity: .7; z-index: 1; }

/* ─── INNER HERO (shared) ────────────────────────────────── */
.inner-hero{background:linear-gradient(135deg,#1a2e1a 0%,#0a2540 60%,#0f3d2e 100%);padding:5rem 2rem 4rem;text-align:center;position:relative;overflow:hidden}
.inner-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 50% 50%,rgba(29,185,84,.15),transparent 70%)}
.inner-hero::after{content:'';position:absolute;inset:0;background-image:radial-gradient(circle,rgba(255,255,255,.03) 1px,transparent 1px);background-size:35px 35px;pointer-events:none}
.inner-hero .section-label,.inner-hero__title,.inner-hero__sub,.inner-hero__breadcrumb{position:relative;z-index:1}
.inner-hero__title{font-family:'Manrope',sans-serif;font-size:clamp(2.2rem,4.5vw,3.4rem);font-weight:700;color:#fff;line-height:1.15;margin-bottom:1rem}
.inner-hero__title em{color:var(--green);font-style:italic}
.inner-hero__sub{color:rgba(255,255,255,.65);font-size:1.05rem;max-width:520px;margin:0 auto 1.5rem;line-height:1.7}
.inner-hero__breadcrumb{font-size:.82rem;color:rgba(255,255,255,.4)}.inner-hero__breadcrumb a{color:var(--green);font-weight:600}.inner-hero__breadcrumb .current{color:rgba(255,255,255,.7)}

/* ─── INNER HERO V2 additions (blobs / tag / CTAs — additive, optional) ── */
.inner-hero__blob{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none}
.inner-hero__blob--1{width:420px;height:420px;background:rgba(7,162,62,.18);top:-130px;left:-70px;animation:innerBlobFloat 9s ease-in-out infinite}
.inner-hero__blob--2{width:320px;height:320px;background:rgba(59,130,246,.1);bottom:-100px;right:-60px;animation:innerBlobFloat 11s ease-in-out infinite reverse}
@keyframes innerBlobFloat{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-24px) scale(1.05)}}
.inner-hero__tag{display:inline-flex;align-items:center;gap:.5rem;background:rgba(7,162,62,.16);color:#4ade80;font-size:.75rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:.35rem .9rem;border-radius:50px;border:1px solid rgba(7,162,62,.3);margin-bottom:1.2rem;position:relative;z-index:1}
.inner-hero__dot{width:7px;height:7px;border-radius:50%;background:#4ade80;box-shadow:0 0 0 3px rgba(74,222,128,.25);animation:innerPulse 2s ease-in-out infinite;display:inline-block}
@keyframes innerPulse{0%,100%{box-shadow:0 0 0 3px rgba(74,222,128,.25)}50%{box-shadow:0 0 0 6px rgba(74,222,128,.1)}}
.inner-hero__ctas{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;position:relative;z-index:1;margin-top:.5rem}
.inner-hero__btn-primary{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.8rem;border-radius:50px;background:linear-gradient(135deg,#07a23e,#0dc956);color:#fff;font-weight:700;font-size:.95rem;text-decoration:none;box-shadow:0 6px 24px rgba(7,162,62,.4);transition:.25s}
.inner-hero__btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(7,162,62,.5)}
.inner-hero__btn-ghost{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.8rem;border-radius:50px;border:1.5px solid rgba(255,255,255,.25);color:#fff;font-weight:700;font-size:.95rem;text-decoration:none;transition:.25s;background:transparent}
.inner-hero__btn-ghost:hover{border-color:#4ade80;color:#4ade80}

/* ─── INNER SECTION ──────────────────────────────────────── */
.inner-section{padding:5rem 0;background:var(--white)}
.inner-section.bg-off-white{background:var(--off-white)}

/* ─── STEPS ROW (referral) ───────────────────────────────── */
.steps-row{display:flex;align-items:flex-start;justify-content:center;gap:1rem;flex-wrap:wrap;margin-top:2rem}
.step-card{text-align:center;flex:1;min-width:200px;max-width:280px;padding:2rem 1.5rem;background:var(--off-white);border-radius:20px;border:1px solid var(--gray-light);transition:var(--transition);position:relative}
.step-card:hover{transform:translateY(-6px);box-shadow:0 12px 32px rgba(0,0,0,.08);border-color:var(--green)}
.step-card__num{position:absolute;top:-14px;left:50%;transform:translateX(-50%);width:28px;height:28px;border-radius:50%;background:var(--green);color:#fff;font-size:.72rem;font-weight:800;display:flex;align-items:center;justify-content:center;box-shadow:0 3px 8px rgba(29,185,84,.3)}
.step-card__icon{font-size:2.5rem;margin-bottom:.8rem}
.step-card h4{font-family:'Manrope',sans-serif;font-weight:700;font-size:1rem;color:var(--navy);margin-bottom:.4rem}
.step-card p{font-size:.82rem;color:var(--gray);line-height:1.6}
.step-card__arrow{font-size:1.5rem;color:var(--green);font-weight:800;align-self:center;margin-top:2rem}

/* ─── REWARDS GRID ───────────────────────────────────────── */
.rewards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.reward-card{background:var(--white);border-radius:18px;padding:2rem 1.5rem;text-align:center;border:1px solid var(--gray-light);transition:var(--transition)}
.reward-card:hover{transform:translateY(-6px);box-shadow:0 12px 32px rgba(0,0,0,.08);border-color:var(--green)}
.reward-icon{font-size:2.2rem;margin-bottom:.8rem}
.reward-card h4{font-family:'Manrope',sans-serif;font-weight:800;font-size:1rem;color:var(--navy);margin-bottom:.4rem}
.reward-card p{font-size:.82rem;color:var(--gray);line-height:1.65}

/* ─── REFERRAL FORM GRID ─────────────────────────────────── */
.referral-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.referral-form-text .section-title{text-align:left}
.book-perks{list-style:none;display:flex;flex-direction:column;gap:.6rem;margin-top:1.3rem;font-size:.9rem;color:var(--navy);font-weight:600}
.book-form-wrap{display:flex}
.book-form{display:flex;flex-direction:column;gap:1.1rem;background:var(--white);border-radius:20px;padding:2rem;border:1px solid var(--gray-light);box-shadow:0 4px 20px rgba(0,0,0,.06);width:100%}
.book-form .form-group{display:flex;flex-direction:column;gap:.4rem}
.book-form .form-group label{font-size:.82rem;font-weight:800;color:var(--navy)}
.book-form .form-group input{padding:.78rem 1rem;border:1.5px solid var(--gray-light);border-radius:12px;font-family:'Manrope',sans-serif;font-size:.92rem;color:var(--navy);background:var(--white);outline:none;transition:var(--transition)}
.book-form .form-group input:focus{border-color:var(--green);box-shadow:0 0 0 3px rgba(29,185,84,.12)}

/* ─── SHARED FORM MESSAGE ────────────────────────────────── */
.form-msg{margin-top:.5rem;font-size:.82rem;font-weight:600;border-radius:8px}
.form-msg:empty{display:none}
.form-msg:not(:empty){padding:.7rem 1rem;animation:fadeSlideIn .3s ease both}
.form-msg.success{background:#f0fdf4;color:#166534;border:1px solid #bbf7d0}
.form-msg.error{background:#fef2f2;color:#b91c1c;border:1px solid #fecaca}
[data-theme="dark"] .form-msg.success{background:rgba(7,162,62,.1);color:#4ade80;border-color:rgba(7,162,62,.3)}
[data-theme="dark"] .form-msg.error{background:rgba(220,38,38,.12);color:#f87171;border-color:rgba(220,38,38,.35)}
@keyframes fadeSlideIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}

/* ─── FAQ CATEGORY TABS ──────────────────────────────────── */
.faq-cat-tabs{display:flex;gap:.5rem;justify-content:center;flex-wrap:wrap;margin-bottom:2.5rem}
.faq-cat{padding:.55rem 1.3rem;border-radius:9999px;font-family:'Manrope',sans-serif;font-size:.82rem;font-weight:700;border:2px solid var(--gray-light);background:var(--white);color:var(--navy);cursor:pointer;transition:var(--transition)}
.faq-cat:hover{border-color:var(--green);color:var(--green)}
.faq-cat.active{background:var(--green);color:#fff;border-color:var(--green);box-shadow:0 3px 12px rgba(29,185,84,.25)}

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:.8rem}
.faq-item{background:var(--off-white);border:1px solid var(--gray-light);border-radius:16px;overflow:hidden;transition:var(--transition)}
.faq-item.hidden{display:none}
.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1.1rem 1.4rem;font-family:'Manrope',sans-serif;font-size:.92rem;font-weight:700;color:var(--navy);background:none;border:none;cursor:pointer;text-align:left;transition:var(--transition)}
.faq-question:hover{color:var(--green)}
.faq-arrow{font-size:1.3rem;font-weight:300;color:var(--green);transition:transform .3s ease;flex-shrink:0}
.faq-item.open{border-color:var(--green)}
.faq-item.open .faq-arrow{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;padding:0 1.4rem;transition:max-height .35s ease,padding .35s ease}
.faq-item.open .faq-answer{max-height:300px;padding:0 1.4rem 1.2rem}
.faq-answer p{font-size:.88rem;color:var(--gray);line-height:1.7;margin:0}

.faq-cta-card{text-align:center;background:var(--white);border-radius:20px;padding:3rem;box-shadow:0 4px 20px rgba(0,0,0,.06);border:1px solid var(--gray-light)}
.faq-cta-card h2{font-family:'Manrope',sans-serif;font-size:1.5rem;font-weight:700;color:var(--navy);margin-bottom:.5rem}
.faq-cta-card p{font-size:.92rem;color:var(--gray);margin-bottom:1.5rem}

/* ─── PRICING TABLE ──────────────────────────────────────── */
.pricing-table-wrap{overflow-x:auto;margin-bottom:1rem}
.pricing-table{width:100%;border-collapse:collapse;font-size:.88rem}
.pricing-table thead{background:var(--navy);color:#fff}
.pricing-table th{padding:1rem 1.2rem;text-align:left;font-weight:700;font-size:.82rem;letter-spacing:.03em}
.pricing-table td{padding:.85rem 1.2rem;border-bottom:1px solid var(--gray-light);color:var(--gray-dark)}
.pricing-table tbody tr{transition:var(--transition)}
.pricing-table tbody tr:hover{background:rgba(29,185,84,.04)}
.pricing-table td:nth-child(2){font-weight:800;color:var(--green)}
.table-link{color:var(--green);font-weight:700;font-size:.82rem;white-space:nowrap}
.table-link:hover{text-decoration:underline}
.pricing-note{font-size:.78rem;color:var(--gray);font-style:italic;margin-top:.5rem}

/* ─── JOBS LIST (careers) ────────────────────────────────── */
.jobs-list{display:flex;flex-direction:column;gap:1.2rem}
.job-card{background:var(--white);border-radius:18px;padding:1.8rem 2rem;border:1px solid var(--gray-light);transition:var(--transition)}
.job-card:hover{border-color:var(--green);box-shadow:0 8px 24px rgba(0,0,0,.08);transform:translateY(-3px)}
.job-header{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:.8rem;flex-wrap:wrap}
.job-card h4{font-family:'Manrope',sans-serif;font-weight:700;font-size:1.1rem;color:var(--navy);margin-bottom:.3rem}
.job-meta{display:flex;gap:.8rem;flex-wrap:wrap}
.job-meta span{font-size:.75rem;color:var(--gray);font-weight:600}
.job-tags{display:flex;gap:.35rem;flex-wrap:wrap;align-self:flex-start}
.job-card p{font-size:.85rem;color:var(--gray);line-height:1.65;margin-bottom:1rem}
.btn-sm-inline{display:inline-block;padding:.5rem 1.2rem;font-size:.78rem;border-radius:40px;min-width:unset}
.jobs-empty{text-align:center;padding:4rem 2rem;background:var(--white);border-radius:18px;border:1px solid var(--gray-light)}
.jobs-empty__icon{font-size:3.5rem;margin-bottom:1rem}
.jobs-empty h3{font-family:'Manrope',sans-serif;font-size:1.3rem;color:var(--navy);margin-bottom:.5rem}
.jobs-empty p{font-size:.88rem;color:var(--gray);max-width:440px;margin:0 auto 1.5rem;line-height:1.65}

/* ─── EMERGENCY CARE ─────────────────────────────────────── */
.emg-call-card{background:linear-gradient(135deg,#7f1d1d,#dc2626);border-radius:24px;padding:2.5rem;text-align:center;color:#fff;margin-bottom:3rem}
.emg-call-card h2{font-family:'Manrope',sans-serif;font-size:1.6rem;font-weight:700;margin-bottom:.5rem}
.emg-call-card p{color:rgba(255,255,255,.75);margin-bottom:1.5rem}
.emg-phone{display:inline-block;font-size:2.4rem;font-weight:900;color:#fef2f2;text-decoration:none;font-family:'Manrope',sans-serif;letter-spacing:.02em;margin-bottom:1.2rem;display:block}
.emg-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.emg-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;margin-bottom:3rem}
.emg-stat{background:var(--white);border-radius:16px;padding:1.4rem 1rem;text-align:center;border:1px solid var(--gray-light);box-shadow:0 4px 16px rgba(0,0,0,.05)}
.emg-stat-icon{font-size:2rem;margin-bottom:.5rem}
.emg-stat-val{font-family:'Manrope',sans-serif;font-size:1.4rem;font-weight:800;color:#dc2626;line-height:1}
.emg-stat-lbl{font-size:.72rem;color:var(--gray);text-transform:uppercase;letter-spacing:.06em;margin-top:.3rem}
.emg-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:1.5rem}
.emg-card{background:var(--white);border-radius:16px;padding:1.4rem 1.2rem;border:1px solid var(--gray-light);display:flex;align-items:flex-start;gap:.8rem;transition:var(--transition)}
.emg-card:hover{border-color:#dc2626;box-shadow:0 8px 24px rgba(220,38,38,.1)}
.emg-card-icon{font-size:1.8rem;flex-shrink:0}
.emg-card h4{font-family:'Manrope',sans-serif;font-weight:700;font-size:.95rem;color:var(--navy);margin-bottom:.2rem}
.emg-card p{font-size:.78rem;color:var(--gray);line-height:1.5}
.emg-facility-list{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.emg-facility{display:flex;align-items:center;gap:.7rem;background:var(--white);border-radius:12px;padding:1rem 1.2rem;border:1px solid var(--gray-light);font-size:.88rem;color:var(--navy);font-weight:600}
.emg-facility i,.emg-facility span:first-child{color:#dc2626;font-size:1.2rem}
.emg-what-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:1.5rem}
.emg-what-card{background:var(--white);border-radius:16px;padding:1.6rem;border:1px solid var(--gray-light)}
.emg-what-card .step-num{width:32px;height:32px;border-radius:50%;background:#dc2626;color:#fff;font-weight:800;font-size:.85rem;display:flex;align-items:center;justify-content:center;margin-bottom:.8rem}
.emg-what-card h4{font-family:'Manrope',sans-serif;font-weight:700;font-size:1rem;color:var(--navy);margin-bottom:.4rem}
.emg-what-card p{font-size:.82rem;color:var(--gray);line-height:1.6}
.emg-centres-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:1.5rem}
.emg-centre{background:var(--white);border-radius:16px;padding:1.4rem 1.6rem;border:1px solid var(--gray-light)}
.emg-centre h4{font-family:'Manrope',sans-serif;font-weight:700;font-size:1rem;color:var(--navy);margin-bottom:.3rem}
.emg-centre p{font-size:.82rem;color:var(--gray);line-height:1.6}
.emg-centre a{font-size:.82rem;color:#dc2626;font-weight:700;text-decoration:none}
.emg-centre a:hover{text-decoration:underline}

/* ─── LEGAL PAGES ────────────────────────────────────────── */
.legal-max { max-width: 820px; }
.legal-meta { font-size: .82rem; color: var(--gray); margin-bottom: 1.5rem; }
.legal-content h2{font-family:'Manrope',sans-serif;font-weight:700;font-size:1.2rem;color:var(--navy);margin:2rem 0 .6rem;padding-bottom:.4rem;border-bottom:2px solid var(--gray-light)}
.legal-content h2:first-child{margin-top:0}
.legal-content h3{font-family:'Manrope',sans-serif;font-weight:700;font-size:1rem;color:var(--navy);margin:1.2rem 0 .4rem}
.legal-content p{font-size:.9rem;color:var(--gray);line-height:1.75;margin-bottom:.8rem}
.legal-content ul{list-style:disc;padding-left:1.4rem;margin-bottom:.8rem}
.legal-content ul li{font-size:.9rem;color:var(--gray);line-height:1.75;margin-bottom:.3rem}
.legal-content .table-wrap{overflow-x:auto;margin:1rem 0}
.legal-content table{width:100%;border-collapse:collapse;font-size:.85rem;min-width:480px}
.legal-content table th{background:var(--navy);color:#fff;padding:.7rem 1rem;text-align:left}
.legal-content table td{padding:.6rem 1rem;border-bottom:1px solid var(--gray-light);color:var(--gray)}
.legal-content .highlight-box{background:rgba(29,185,84,.06);border-left:3px solid var(--green);border-radius:0 8px 8px 0;padding:1rem 1.2rem;margin:1rem 0;font-size:.88rem;color:var(--gray-dark)}

@media(max-width:1024px){
  .referral-form-grid{grid-template-columns:1fr}
  .emg-grid{grid-template-columns:repeat(2,1fr)}
  .emg-facility-list{grid-template-columns:repeat(2,1fr)}
  .ref-hero-v2__inner{grid-template-columns:1fr;text-align:center}
  .ref-hero-v2__kicker,.ref-hero-v2__ctas{justify-content:center}
  .ref-hero-v2__sub{margin-left:auto;margin-right:auto}
  .ref-hero-v2__flow{margin-top:1rem}
  .faq-hero-v2__inner{grid-template-columns:1fr;text-align:center}
  .faq-hero-v2__kicker,.faq-hero-v2__ctas{justify-content:center}
  .faq-hero-v2__sub{margin-left:auto;margin-right:auto}
  .faq-hero-v2__chat{max-width:440px;margin:0 auto}
  .careers-hero-v2__inner{grid-template-columns:1fr;text-align:center}
  .careers-hero-v2__kicker,.careers-hero-v2__ctas{justify-content:center}
  .careers-hero-v2__sub{margin-left:auto;margin-right:auto}
  .careers-hero-v2__stack{max-width:440px;margin:2.5rem auto 0;height:auto;display:flex;flex-direction:column;gap:.9rem}
  .chj-badge{position:static;align-self:center;margin-bottom:.4rem}
  .chj-card{position:static;transform:none!important;opacity:1!important}
}
@media(max-width:768px){
  .steps-row{flex-direction:column;align-items:center}.step-card__arrow{transform:rotate(90deg);margin:0}
  .inner-hero{padding:4rem 1.5rem 3rem}.inner-section{padding:3.5rem 0}
  .ref-hero-v2,.faq-hero-v2,.careers-hero-v2{padding:3.5rem 0}
  .job-header{flex-direction:column}
  .pricing-table th,.pricing-table td{padding:.7rem .8rem;font-size:.82rem}
  .emg-stats{grid-template-columns:repeat(2,1fr)}
  .emg-what-grid{grid-template-columns:1fr}
  .emg-centres-grid{grid-template-columns:1fr}
  .faq-cta-card{padding:2rem 1.5rem}
  .rewards-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .ref-hero-v2__flow{flex-direction:column;gap:.9rem}
  .rhf-track{flex-direction:row}
  .rhf-chip--1{left:auto;right:-1.5rem}
}
@media(max-width:480px){
  .rewards-grid{grid-template-columns:1fr}
  .emg-stats{grid-template-columns:1fr 1fr}
  .emg-grid{grid-template-columns:1fr}
  .emg-facility-list{grid-template-columns:1fr}
  .ref-hero-v2__ctas,.faq-hero-v2__ctas,.careers-hero-v2__ctas{flex-direction:column;align-items:stretch}
  .ref-hero-v2__btn-primary,.ref-hero-v2__btn-ghost,.faq-hero-v2__btn-primary,.faq-hero-v2__btn-ghost,.careers-hero-v2__btn-primary,.careers-hero-v2__btn-ghost{width:100%;justify-content:center}
}
@media(max-width:360px){
  .faq-cta-card{padding:1.5rem 1rem}
  .inner-hero{padding:3rem 1rem 2.5rem}
}

