    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green: #1c6038;
      --green-dark: #134426;
      --green-lt: #f0f9f4;
      --accent: #4dd98a;
      --text: #111827;
      --text-2: #4b5563;
      --text-3: #9ca3af;
      --white: #fff;
      --gray-50: #f9fafb;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --font: Fabriga, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
      --script: 'Dancing Script', cursive;
      --nav-h: 72px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── NAV ── */
    .nav {
      background: #fff; border-bottom: 1px solid rgba(0,0,0,0.09);
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08); height: var(--nav-h);
    }
    .nav__inner {
      width: 100%; padding: 0 40px; height: 100%;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav__logo { display: flex; align-items: center; }
    .nav__logo-img { max-height: 25px; height: auto; width: auto; display: block; }
    .nav__links {
      display: flex; align-items: center; list-style: none;
      flex: 1; justify-content: flex-start; gap: 10px; margin-left: 24px;
    }
    .nav__links a {
      font-size: 14.5px; font-weight: 500; color: #444; text-decoration: none;
      padding: 8px 13px; border-radius: 6px;
      transition: background 0.18s, color 0.18s; white-space: nowrap;
    }
    .nav__links a:hover { background: #f3f3f3; color: #111; }
    .nav__links a[aria-current="page"] { color: var(--green); font-weight: 700; }
    .nav__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .btn-book {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green); color: #fff;
      font-family: var(--font); font-size: 14px; font-weight: 700;
      padding: 10px 22px; border-radius: 6px;
      text-decoration: none; border: none; cursor: pointer;
      min-height: 44px; white-space: nowrap; transition: background 0.18s;
    }
    .btn-book:hover { background: var(--green-dark); }
    .nav__item-drop { position: static; list-style: none; }
    .nav__drop-toggle {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 14.5px; font-weight: 500; color: #444;
      padding: 8px 13px; border-radius: 6px;
      background: none; border: none; cursor: pointer; font-family: var(--font);
      transition: background 0.18s, color 0.18s; white-space: nowrap;
    }
    .nav__drop-toggle svg { width: 14px; height: 14px; transition: transform 0.22s; flex-shrink: 0; stroke: currentColor; fill: none; }
    .nav__item-drop.open .nav__drop-toggle svg { transform: rotate(180deg); }
    .nav__item-drop.open .nav__drop-toggle { background: #f3f3f3; color: #111; }
    .nav__mega {
      display: none; position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: #fff; border-top: 2px solid var(--green);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      z-index: 190; padding: 28px 40px 32px;
    }
    .nav__item-drop.open .nav__mega { display: block; }
    .nav__mega-inner { padding: 0 40px; }
    .nav__mega-heading { font-size: 10.5px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
    .nav__mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
    .nav__mega a.nav__mega-link {
      display: flex; align-items: center; gap: 9px;
      font-size: 14px; font-weight: 500; color: #333 !important;
      padding: 11px 14px; border-radius: 6px;
      transition: background 0.15s, color 0.15s; white-space: nowrap; background: transparent;
    }
    .nav__mega a.nav__mega-link:hover { background: #f0faf5 !important; color: var(--green) !important; }
    .nav__mega a.nav__mega-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.40; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .nav__mega a.nav__mega-link:hover svg { opacity: 1; }
    .nav__burger {
      display: none; flex-direction: column; gap: 5px;
      padding: 10px; background: none; border: none; cursor: pointer;
      min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
    }
    .nav__burger span { display: block; width: 22px; height: 2px; background: #333; border-radius: 2px; transition: transform 0.28s, opacity 0.28s; }
    .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav__drawer {
      display: none; position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08);
      z-index: 199; padding: 8px 24px 20px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    }
    .nav__drawer.open { display: block; }
    .nav__drawer ul { list-style: none; }
    .nav__drawer ul li a { display: block; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
    .nav__drawer ul li a:hover { color: var(--green); }
    .drawer-repairs-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 16px; font-weight: 500; color: #222; padding: 14px 0; border-bottom: 1px solid #f0f0f0; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; font-family: var(--font); text-align: left; }
    .drawer-repairs-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; transition: transform 0.22s; }
    .drawer-repairs-toggle.open svg { transform: rotate(180deg); }
    .drawer-repairs-sub { display: none; list-style: none; padding-left: 12px; }
    .drawer-repairs-sub.open { display: block; }
    .drawer-repairs-sub li a { font-size: 14px; color: #555; padding: 10px 0; border-bottom: 1px solid #f5f5f5; display: block; }
    .drawer-repairs-sub li a:hover { color: var(--green); }
    @media (max-width: 1100px) {
      .nav__links, .btn-book { display: none; }
      .nav__burger { display: flex; }
      .nav__mega { display: none !important; }
      .nav__inner { padding: 0 32px 0 16px; }
      .nav__logo-img { height: 13px; }
    }

    /* ── HERO ── */
    .hero {
      background: #fff;
      overflow: hidden;
      border-bottom: 1px solid var(--gray-200);
    }
    .hero__inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; align-items: center;
    }
    .hero__content { padding: calc(var(--nav-h) + 40px) 48px 64px 0; }
    .hero__eyebrow {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--green); background: var(--green-lt); border: 1px solid rgba(28,96,56,0.15);
      padding: 5px 12px; border-radius: 999px; margin-bottom: 20px;
    }
    .hero__h1 {
      font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; color: var(--text);
      line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 0;
    }
    .hero__h1 em { font-style: normal; color: var(--green); }
    .hero__desc { font-size: 16px; color: var(--text-2); line-height: 1.7; margin: 20px 0 32px; max-width: 460px; }
    .hero__badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .hero__badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); }
    .hero__badge-icon { width: 32px; height: 32px; background: var(--green-lt); border: 1px solid rgba(28,96,56,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .hero__badge-icon svg { width: 15px; height: 15px; stroke: var(--green); fill: none; }
    .hero__badge-text { display: flex; flex-direction: column; }
    .hero__badge-label { font-size: 13px; font-weight: 700; color: var(--text); }
    .hero__badge-sub { font-size: 11px; color: var(--text-3); font-weight: 400; }
    .hero__img { position: relative; min-height: 520px; overflow: hidden; }
    .hero__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
    @media (max-width: 900px) {
      .hero__inner { grid-template-columns: 1fr; min-height: auto; }
      .hero__content { padding: calc(var(--nav-h) + 24px) 0 32px; }
      .hero__img { min-height: 260px; }
    }

    /* ── CONTENT SECTION ── */
    .services-section {
      background: var(--gray-50);
      padding: 80px 24px 96px;
    }
    .services-section__inner { max-width: 1200px; margin: 0 auto; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); margin-bottom: 12px;
    }
    .section-eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--green); border-radius: 2px; }
    .section-h2 {
      font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; color: var(--text);
      line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 12px;
    }
    .section-h2 em { font-style: normal; color: var(--green); }
    .services-section__sub {
      font-size: 16px; color: var(--text-2); line-height: 1.65;
      max-width: 600px; margin-bottom: 56px;
    }

    /* ── FEATURE GRID (simple, non-flip cards) ── */
    .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .feat-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 28px 24px; }
    .feat-card__icon { width: 44px; height: 44px; background: var(--green-lt); border: 1px solid rgba(28,96,56,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .feat-card__icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.7; }
    .feat-card__title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .feat-card__desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }
    @media (max-width: 1024px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

    .appliance-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
    .appliance-chip { font-size: 13.5px; font-weight: 600; color: var(--text); background: #fff; border: 1px solid var(--gray-200); padding: 9px 16px; border-radius: 999px; }

    /* ── CTA BANNER ── */
    .cta-bar {
      background: #134426;
      padding: 56px 24px;
    }
    .cta-bar__inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr auto;
      align-items: center; gap: 40px;
    }
    .cta-bar__content h2 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 6px; }
    .cta-bar__content p { font-size: 15px; color: rgba(255,255,255,0.70); }
    .cta-bar__btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; color: #134426; font-size: 14px; font-weight: 700;
      padding: 11px 22px; border-radius: 8px; white-space: nowrap;
      transition: background 0.15s;
    }
    .btn-white svg { width: 14px; height: 14px; stroke: #134426; fill: none; }
    .btn-white:hover { background: #f0f9f4; }
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: #fff; font-size: 14px; font-weight: 700;
      padding: 10px 20px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.45);
      white-space: nowrap; transition: border-color 0.15s;
    }
    .btn-outline-white:hover { border-color: #fff; }
    @media (max-width: 900px) {
      .cta-bar__inner { grid-template-columns: 1fr; }
    }

    /* ── FOOTER ── */
    .footer { background: #0d1f14; padding: 56px 24px 28px; }
    .footer__inner { max-width: 1200px; margin: 0 auto; }
    .footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer__brand-logo { margin-bottom: 12px; }
    .footer__brand-logo img { height: 32px; width: auto; filter: brightness(0) invert(0.75); }
    .footer__brand-logo-text { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
    .footer__brand-logo-text em { font-style: normal; color: #4dd98a; }
    .footer__desc { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
    .footer__socials { display: flex; gap: 10px; }
    .footer__social { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.50); text-decoration: none; transition: background 0.15s, color 0.15s; }
    .footer__social svg { width: 14px; height: 14px; }
    .footer__social:hover { background: rgba(77,217,138,0.15); color: #4dd98a; }
    .footer__col-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.30); margin-bottom: 16px; }
    .footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__col-links a { font-size: 14px; color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.15s; }
    .footer__col-links a:hover { color: #fff; }
    .footer__col-links a.active { color: #4dd98a; }
    .footer__contact-row { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; }
    .footer__contact-row svg { width: 14px; height: 14px; stroke: #4dd98a; fill: none; flex-shrink: 0; }
    .footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
    .footer__legal { display: flex; gap: 20px; }
    .footer__legal a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.15s; }
    .footer__legal a:hover { color: rgba(255,255,255,0.70); }
    @media (max-width: 1024px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
    @media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; gap: 20px; } .footer__bottom { flex-direction: column; align-items: flex-start; } }

    /* ══════════ CAREERS PAGE ADDITIONS ══════════ */

    /* ── Section divider ── */
    .careers-divider { border: none; border-top: 1px solid var(--gray-200); max-width: 1200px; margin: 0 auto; }
    .careers-section { padding: 64px 24px; }
    .careers-section--gray { background: var(--gray-50); }
    .careers-section__inner { max-width: 900px; margin: 0 auto; }
    .careers-section__inner--wide { max-width: 1200px; }
    .careers-section__lead { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
    .careers-section__lead:last-of-type { margin-bottom: 0; }
    .careers-subhead { font-size: 19px; font-weight: 800; color: var(--text); margin: 28px 0 18px; letter-spacing: -0.3px; }

    /* ── Check list (reusable) ── */
    .careers-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; margin-top: 20px; }
    .careers-check-grid--1col { grid-template-columns: 1fr; }
    .careers-check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.55; }
    .careers-check-item__icon { width: 24px; height: 24px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
    .careers-check-item__icon svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 3; }
    @media (max-width: 700px) { .careers-check-grid { grid-template-columns: 1fr; } }

    /* ── Current Opportunities: job cards ── */
    .job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
    .job-card { background: #fff; border: 1.5px solid rgba(26,122,74,0.22); border-radius: 14px; padding: 26px 24px; display: flex; flex-direction: column; box-shadow: 0 4px 18px rgba(15,30,25,.05); transition: transform .2s, box-shadow .2s, border-color .2s; }
    .job-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15,30,25,.10); border-color: rgba(26,122,74,.4); }
    .job-card__title { font-size: 17px; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 14px; min-height: 44px; }
    .job-card__meta { display: flex; flex-wrap: nowrap; gap: 6px; margin-bottom: 20px; overflow-x: auto; }
    .job-card__tag { font-size: 11.5px; font-weight: 700; color: var(--green); background: var(--green-lt); border: 1px solid rgba(28,96,56,.15); padding: 5px 10px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
    @media (max-width: 400px) {
      .job-card__tag { font-size: 10.5px; padding: 4px 8px; }
      .job-card__meta { gap: 5px; }
    }
    .job-card__btn { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: #fff; font-size: 14px; font-weight: 700; padding: 12px 20px; border-radius: 8px; transition: background .18s; }
    .job-card__btn:hover { background: var(--green-dark); }
    @media (max-width: 900px) { .job-grid { grid-template-columns: 1fr; } }

    /* ── Career purpose banner ── */
    .career-purpose { background: #134426; padding: 64px 24px; text-align: center; }
    .career-purpose__inner { max-width: 720px; margin: 0 auto; }
    .career-purpose__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 14px; }
    .career-purpose__title { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; }
    .career-purpose__title em { font-style: normal; color: var(--accent); }
    .career-purpose__tagline { font-size: clamp(16px, 1.8vw, 20px); font-weight: 800; color: var(--accent); margin-bottom: 18px; }
    .career-purpose__body { font-size: 15.5px; color: rgba(255,255,255,.72); line-height: 1.75; }
    .career-purpose__body p { margin-bottom: 10px; }
    .career-purpose__body p:last-child { margin-bottom: 0; }

    /* ── Final "Ready to Join" CTA ── */
    .careers-final-cta { padding: 72px 24px; text-align: center; }
    .careers-final-cta__inner { max-width: 620px; margin: 0 auto; }
    .careers-final-cta__title { font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; color: var(--text); margin-bottom: 14px; letter-spacing: -0.6px; }
    .careers-final-cta__body { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 30px; }
    .btn-careers-green { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-size: 15px; font-weight: 700; padding: 14px 30px; border-radius: 9px; transition: background .18s; }
    .btn-careers-green:hover { background: var(--green-dark); }

    /* ══════════ JOB DETAIL PAGE ══════════ */
    .job-hero { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: calc(var(--nav-h) + 32px) 24px 40px; }
    .job-hero__inner { max-width: 1200px; margin: 0 auto; }
    .job-hero__crumb { font-size: 13px; color: var(--text-2); margin-bottom: 16px; }
    .job-hero__crumb a { color: var(--green); font-weight: 600; }
    .job-hero__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    .job-hero__title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--text); letter-spacing: -0.6px; margin-bottom: 8px; }
    .job-hero__loc { font-size: 15px; color: var(--text-2); font-weight: 600; }
    .job-hero__apply-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-size: 14.5px; font-weight: 700; padding: 13px 26px; border-radius: 9px; white-space: nowrap; transition: background .18s; }
    .job-hero__apply-btn:hover { background: var(--green-dark); }

    .job-meta-bar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 18px 24px; }
    .job-meta-bar__inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 28px; }
    .job-meta-item__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 4px; }
    .job-meta-item__value { font-size: 14.5px; font-weight: 700; color: var(--text); }

    .job-body { padding: 56px 24px 80px; }
    .job-body__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
    .job-content h2 { font-size: 21px; font-weight: 800; color: var(--text); margin: 34px 0 14px; letter-spacing: -0.3px; }
    .job-content h2:first-child { margin-top: 0; }
    .job-content h3 { font-size: 17px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
    .job-content p { font-size: 15.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 14px; }
    .job-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
    .job-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-2); line-height: 1.6; }
    .job-content ul li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 7px; }
    .job-content__apply-row { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--gray-200); }
    .job-interest-box { max-width: 1200px; margin: 40px auto 0; background: var(--green-lt); border: 1px solid rgba(28,96,56,.15); border-radius: 14px; padding: 26px 24px; }
    .job-interest-box p { font-size: 14.5px; color: var(--text-2); margin-bottom: 16px; }
    .job-interest-box p:last-of-type { margin-bottom: 0; }

    @media (max-width: 980px) { .job-body__inner { grid-template-columns: 1fr; } }

    /* ── Sticky apply form card ── */
    .job-apply-card { position: sticky; top: calc(var(--nav-h) + 24px); background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px 24px; box-shadow: 0 12px 36px rgba(15,30,25,.06); }
    .job-apply-card__title { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
    .job-apply-card__meta { font-size: 12.5px; color: var(--text-3); line-height: 1.6; margin-bottom: 20px; }
    .job-apply-card__meta strong { color: var(--text-2); }

    .jform-field { margin-bottom: 16px; }
    .jform-field label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
    .jform-field input[type="text"], .jform-field input[type="email"], .jform-field input[type="tel"], .jform-field textarea {
      width: 100%; padding: 11px 13px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-family: var(--font); font-size: 14px; color: var(--text); background: #fff; transition: border-color .15s;
    }
    .jform-field input:focus, .jform-field textarea:focus { outline: none; border-color: var(--green); }
    .jform-field textarea { resize: vertical; min-height: 80px; }
    .jform-divider { border: none; border-top: 1px solid var(--gray-200); margin: 20px 0; }
    .jform-question { font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.45; }
    .jform-yesno { display: flex; gap: 18px; margin-bottom: 16px; }
    .jform-yesno label { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 500; color: var(--text-2); cursor: pointer; }
    .jform-yesno input { accent-color: var(--green); width: 15px; height: 15px; }
    .jform-file { border: 1.5px dashed var(--gray-200); border-radius: 10px; padding: 22px 14px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; position: relative; }
    .jform-file:hover { border-color: var(--green); background: var(--green-lt); }
    .jform-file input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
    .jform-file__text { font-size: 13.5px; font-weight: 600; color: var(--text); }
    .jform-file__hint { font-size: 11.5px; color: var(--text-3); margin-top: 4px; }
    .jform-file__filename { font-size: 12.5px; font-weight: 700; color: var(--green); margin-top: 8px; word-break: break-all; }
    .jform-submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: #fff; font-size: 14.5px; font-weight: 700; padding: 13px 22px; border: none; border-radius: 9px; cursor: pointer; transition: background .18s; font-family: var(--font); margin-top: 6px; }
    .jform-submit:hover { background: var(--green-dark); }
    .jform-note { font-size: 11.5px; color: var(--text-3); line-height: 1.5; margin-top: 12px; text-align: center; }

    /* ── Register-interest mini form (modal) ── */
    .jinterest-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 700; font-size: 14.5px; text-decoration: underline; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
    .jinterest-modal { display: none; position: fixed; inset: 0; z-index: 500; align-items: center; justify-content: center; padding: 20px; }
    .jinterest-modal.open { display: flex; }
    .jinterest-modal__backdrop { position: absolute; inset: 0; background: rgba(15,25,20,.55); }
    .jinterest-modal__box { position: relative; background: #fff; border-radius: 16px; padding: 32px 28px; max-width: 420px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
    .jinterest-modal__close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--gray-100); display: flex; align-items: center; justify-content: center; cursor: pointer; }
    .jinterest-modal__close svg { width: 15px; height: 15px; stroke: var(--text); }
    .jinterest-modal__title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
    .jinterest-modal__sub { font-size: 13.5px; color: var(--text-2); line-height: 1.55; margin-bottom: 20px; }

    /* ── Confirmation state ── */
    .jform-success { display: none; text-align: center; padding: 20px 4px; }
    .jform-success.show { display: block; }
    .jform-success__icon { width: 52px; height: 52px; background: var(--green-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
    .jform-success__icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 2.5; }
    .jform-success__title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
    .jform-success__body { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
