.elementor-5649 .elementor-element.elementor-element-54b4e37{--display:flex;}/* Start custom CSS for container, class: .elementor-element-54b4e37 */:root {
    --navy: #123047;
    --navy-dark: #0B2235;
    --navy-light: #2F5D7F;
    --gold: #DFB240;
    --gold-light: #ECC96A;
    --gold-pale: #FDF5E0;
    --white: #FFFFFF;
    --offwhite: #f8f9fc;
    --gray-light: #edf0f7;
    --gray: #8a93aa;
    --text: #1a1f36;
    --text-light: #4a5270;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(1,42,122,0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
  }

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

  .nav-logo-text span:first-child {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .nav-logo-text span:last-child {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s;
  }

  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ───────────────────────────────────── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0B2235 0%, #123047 50%, #2F5D7F 100%);
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223,178,64,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223,178,64,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

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

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(223,178,64,0.15);
    border: 1px solid rgba(223,178,64,0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero h1 {
    font-family: Arial, sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .hero h1 span { color: var(--gold); }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }

  .hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
  }

  .hero-badge svg { color: var(--gold); flex-shrink: 0; }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(223,178,64,0.35);
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(223,178,64,0.45);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    background: rgba(223,178,64,0.08);
    color: var(--gold);
  }

  /* Hero right — stat cards */
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s;
  }

  .hero-stat-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(223,178,64,0.3);
  }

  .stat-icon {
    width: 50px; height: 50px;
    border-radius: 10px;
    background: rgba(223,178,64,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
  }

  .stat-value {
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
  }

  /* ── TRUST BAR ──────────────────────────────── */
  .trust-bar {
    background: var(--gold);
    padding: 14px 5%;
  }

  .trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* ── SECTIONS ───────────────────────────────── */
  section { padding: 96px 5%; }

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

  .section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: Arial, sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 640px;
  }

  /* ── INTRO ──────────────────────────────────── */
  .intro { background: var(--offwhite); }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 56px;
  }

  .intro-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .intro-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .intro-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    padding: 18px 20px;
    border-left: 4px solid var(--gold);
  }

  .intro-point-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .intro-point strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 3px;
  }

  .intro-point span {
    font-size: 14px;
    color: var(--text-light);
  }

  /* ── PRICING ────────────────────────────────── */
  .pricing { background: var(--white); }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 28px;
    margin-top: 56px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    background: var(--white);
    transition: box-shadow 0.25s;
  }

  .pricing-card:hover {
    box-shadow: 0 12px 40px rgba(1,42,122,0.1);
  }

  .pricing-card.featured {
    border-color: var(--navy);
    background: linear-gradient(160deg, #123047 0%, #2F5D7F 100%);
    color: var(--white);
    box-shadow: 0 16px 48px rgba(1,42,122,0.3);
  }

  .pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .pricing-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
  }

  .pricing-card.featured .pricing-label { color: rgba(255,255,255,0.55); }

  .pricing-price {
    font-family: Arial, sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
  }

  .pricing-card.featured .pricing-price { color: var(--gold); }

  .pricing-was {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 4px;
  }

  .pricing-card.featured .pricing-was { color: rgba(255,255,255,0.4); }

  .pricing-save {
    display: inline-block;
    background: rgba(223,178,64,0.15);
    color: var(--gold);
    border: 1px solid rgba(223,178,64,0.3);
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 28px;
  }

  .pricing-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
  }

  .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }

  .pricing-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
  }

  .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }

  .pricing-features .check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .btn-pricing {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }

  .btn-pricing-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
  }

  .btn-pricing-outline:hover {
    background: var(--navy);
    color: var(--white);
  }

  .btn-pricing-solid {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(223,178,64,0.4);
  }

  .btn-pricing-solid:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(223,178,64,0.5);
  }

  /* ── COMPARISON TABLE ───────────────────────── */
  .comparison { background: var(--offwhite); }

  .table-wrap {
    overflow-x: auto;
    margin-top: 56px;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(1,42,122,0.1);
    border: 1px solid var(--gray-light);
  }

  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
  }

  thead tr {
    background: linear-gradient(135deg, #123047, #2F5D7F);
  }

  thead th {
    padding: 24px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  thead th:first-child { width: 200px; }

  thead th.program-col {
    color: var(--white);
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
  }

  thead th.program-col span {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  tbody tr { border-bottom: 1px solid var(--gray-light); }
  tbody tr:last-child { border-bottom: none; }

  tbody tr:nth-child(even) { background: var(--offwhite); }

  tbody tr:hover { background: #eef1fa; }

  td {
    padding: 18px 20px;
    font-size: 14px;
    color: var(--text-light);
    vertical-align: top;
  }

  td:first-child {
    font-weight: 700;
    color: var(--navy);
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .check-yes { color: #22a85b; font-size: 18px; font-weight: 700; }
  .check-no { color: #ccc; font-size: 18px; }

  .tag-launch {
    display: inline-block;
    background: rgba(34,168,91,0.1);
    color: #22a85b;
    border: 1px solid rgba(34,168,91,0.25);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 8px;
    white-space: nowrap;
  }

  .tag-soon {
    display: inline-block;
    background: rgba(223,178,64,0.12);
    color: #b8891a;
    border: 1px solid rgba(223,178,64,0.3);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 8px;
    white-space: nowrap;
  }

  /* ── PROGRAMS ───────────────────────────────── */
  .programs { background: var(--white); }

  .programs-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 56px;
  }

  .program-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    box-shadow: 0 2px 24px rgba(1,42,122,0.06);
    transition: box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }

  .program-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
  }

  .program-card.card-geriatric::before { background: var(--navy); }
  .program-card.card-palliative::before { background: #6c3483; }
  .program-card.card-wound::before { background: var(--gold); }

  .program-card:hover { box-shadow: 0 8px 40px rgba(1,42,122,0.12); }

  .prog-header { margin-bottom: 20px; }

  .prog-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .prog-status.live {
    background: rgba(34,168,91,0.1);
    color: #22a85b;
    border: 1px solid rgba(34,168,91,0.25);
  }

  .prog-status.live::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22a85b;
    animation: pulse 2s infinite;
  }

  .prog-status.soon {
    background: rgba(223,178,64,0.1);
    color: #b8891a;
    border: 1px solid rgba(223,178,64,0.3);
  }

  .prog-number {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  .prog-title {
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .prog-subtitle {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .prog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .prog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    background: var(--gray-light);
    padding: 5px 12px;
    border-radius: 20px;
  }

  .prog-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .prog-for {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
  }

  .prog-for strong { color: var(--navy); }

  .prog-right { display: flex; flex-direction: column; gap: 28px; }

  .prog-section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
  }

  .roles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .roles-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    padding: 9px 14px;
    background: var(--offwhite);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
  }

  .gains-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .gains-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
  }

  .gains-list .g-check {
    color: var(--navy);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .prog-sim-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(1,42,122,0.05);
    border: 1px solid rgba(1,42,122,0.12);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 8px;
  }

  .prog-sim-badge .sim-icon {
    font-size: 24px;
    flex-shrink: 0;
  }

  .prog-sim-badge strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 3px;
  }

  .prog-sim-badge span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
  }

  .prog-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--navy);
    color: var(--navy);
  }

  .prog-cta:hover {
    background: var(--navy);
    color: var(--white);
  }

  /* ── WHO ────────────────────────────────────── */
  .who { background: var(--navy); }
  .who .section-title { color: var(--white); }
  .who .section-sub { color: rgba(255,255,255,0.65); }
  .who .section-eyebrow { color: var(--gold); }

  .who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 48px;
  }

  .who-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.2s, border-color 0.2s;
  }

  .who-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(223,178,64,0.35);
  }

  .who-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(223,178,64,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .who-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
  }

  /* ── WHY UHS ────────────────────────────────── */
  .why { background: var(--white); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 56px;
  }

  .why-card {
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    background: var(--white);
    transition: box-shadow 0.25s, border-color 0.25s;
  }

  .why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(223,178,64,0.15);
  }

  .why-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .why-title {
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .why-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ── FAQ ────────────────────────────────────── */
  .faq { background: var(--offwhite); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 56px;
  }

  .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid var(--navy);
  }

  .faq-q {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.45;
  }

  .faq-a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ── FINAL CTA ──────────────────────────────── */
  .final-cta {
    background: linear-gradient(135deg, #0B2235, #123047 50%, #2F5D7F);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223,178,64,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

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

  .final-cta h2 {
    font-family: Arial, sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .final-cta h2 span { color: var(--gold); }

  .final-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .final-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

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

  .final-contact a {
    color: var(--gold);
    text-decoration: none;
  }

  .final-contact a:hover { text-decoration: underline; }

  /* ── FOOTER ─────────────────────────────────── */
  footer {
    background: #123047;
    padding: 48px 5%;
    text-align: center;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-logo img {
    height: 44px;
    width: 44px;
    object-fit: contain;
  }

  .footer-logo span {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
  }

  .footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

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

  .footer-abhes {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  /* ── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { display: none; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .program-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
    .faq-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    section { padding: 64px 5%; }
    .trust-bar-inner { gap: 16px; }
    .trust-item { font-size: 11px; }
  }

/* ===== ELEMENTOR FULL WIDTH AND REAL UHS HEADER/FOOTER FIX ===== */

/* Keep the real UHS website header and footer.
   Hide only the custom nav/footer from the pasted HTML content. */
.elementor-widget-html nav,
.elementor-widget-html footer {
  display: none !important;
}

/* Make the Elementor HTML widget break out to full browser width */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.elementor-widget-html {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* UHS color correction */
.hero {
  background: linear-gradient(135deg, #0B2235 0%, #123047 50%, #2F5D7F 100%) !important;
}

.final-cta,
.who {
  background: #123047 !important;
}

.pricing-card.featured {
  background: linear-gradient(160deg, #123047 0%, #2F5D7F 100%) !important;
  border-color: #2F5D7F !important;
}

thead tr {
  background: linear-gradient(135deg, #123047, #2F5D7F) !important;
}

/* Keep gold buttons and highlights */
.btn-primary,
.btn-pricing-solid,
.pricing-badge {
  background: #DFB240 !important;
  color: #123047 !important;
}

.btn-primary:hover,
.btn-pricing-solid:hover {
  background: #ECC96A !important;
  color: #123047 !important;
}

.hero h1 span,
.final-cta h2 span,
.section-eyebrow,
.pricing-card.featured .pricing-price,
.final-contact a,
.prog-subtitle {
  color: #DFB240 !important;
}

/* Responsive reinforcement */
@media (max-width: 1024px) {
  .hero-inner,
  .intro-grid,
  .program-card {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 600px !important;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto !important;
    padding: 60px 5% !important;
    text-align: center !important;
  }

  .hero h1 {
    font-size: 34px !important;
  }

  .hero-right {
    display: none !important;
  }

  .hero-btns,
  .final-btns {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .btn-primary,
  .btn-outline,
  .btn-pricing,
  .prog-cta {
    width: 100% !important;
    text-align: center !important;
  }

  .faq-grid,
  .why-grid,
  .who-grid {
    grid-template-columns: 1fr !important;
  }
}/* End custom CSS */