:root{
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --bg: #0f1724; 
  --page-bg: #2C2C2E;
  --primary: #FBD700; 
  --secondary: #f1d8cc;
  --accent: #0ea5ff;
  --muted: #6b7280;
  --card: #ffffff;
  --maxw: 1200px;
}

*{box-sizing: border-box}
html,body {height: 100%;}
body{
    margin: 0 ;
    font-family: var(--font);
    background: var(--card);
    color: #111827;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/*Container*/
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 1rem;
}

/*header*/
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: rgba(44, 44, 46, 1);
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    will-change: transform;
}

.site-header.header-hidden {
    transform: translateY(-110%);
}

.site-header.header-elevated {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.45rem, 1vw, 1rem);
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    flex: 0 1 auto;
}

.logo-mark {
    background: var(--primary);
    color: var(--page-bg);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    flex: 0 0 auto;
}

.logo-text {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 0.9;
    max-width: 18ch;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

/*Menu bar (nav) */
.nav {
    display: flex;
    gap: clamp(0.45rem, 1.25vw, 0.95rem);
    align-items: center;
    justify-content: center;
    min-width: 0;
    flex: 1 1 auto;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.95;
    white-space: nowrap;
    font-size: clamp(0.82rem, 0.95vw, 0.95rem);
    line-height: 1.2;
}

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

/*CTA*/
.header-ctas {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.lang-select {
    max-width: 9.5rem;
    min-height: 2.35rem;
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.lang-select option {
    color: #111827;
}

html[lang="ms"] .logo-text,
html[lang="en"] .logo-text {
    max-width: 14ch;
}

html[lang="ms"] .nav {
    gap: clamp(0.35rem, 0.9vw, 0.75rem);
}

html[lang="ms"] .nav a {
    font-size: clamp(0.78rem, 0.86vw, 0.9rem);
}

.btn {
    font-weight: 600;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

/*这里可以调整，menu bar 的 立即质询的 btn 问题*/
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: white;

}

.btn-outline-dark {
    background: transparent;
    border: 1px solid rgba(17,24,39,0.12);
    color: #111827;
    text-decoration: none;
}

.btn-outline-dark:hover {
    border-color: rgba(17,24,39,0.3);
    background: rgba(17,24,39,0.04);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
}

/*不确定是什么*/
.btn-white {
    background: white;
    color: black;
}

.btn.btn-ghost {
  color: black;           /* default text color */
  text-decoration: none;  /* remove underline */
  transition: 0.2s ease;  /* smooth hover */
}

.btn.btn-ghost:visited {
  color: black; /* keeps same color after clicked */
}

.btn.btn-ghost:hover,
.btn.btn-ghost:visited:hover {
  color: #FBD700;         /* your primary yellow */
  text-decoration: underline;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    color: white;
    border: 0;
    font-size: 1.2rem;
}

/*Mobile Menu*/
.mobile-menu {
    display: none;
    background: rgba(0,0,0,0.85);
    padding: 1rem;
    flex-direction: column;
}

.mobile-menu a {
    display: block;
    color: white;
    padding: 0.6rem 0;
    text-decoration: none;
}


/*Hero section*/
.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(https://images.unsplash.com/photo-1748848436533-f7583dce22b6?auto=format&fit=crop&w=1600&q=80);
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: 0;

}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: center;
    padding: 4rem 0;
}

/*关于那个 专业服务的排 可以找时间 替换颜色*/
.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-title {
    font-size: 2.2rem;
    color: white;
    margin: 1rem 0;
    line-height: 1.05;
}

.highlight {
    color: var(--primary);
    padding: 0 6pax;
    border-radius: 6px;
    font-weight: 800;
}


.hero-sub {
    color:rgba(255,255,255,0.9);
    max-width:56ch
}

.stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    color: white;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
}

.hero-actions {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.6rem;
}

/*Hero Card*/
.hero-card {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.06);
    color: white;
}

.hero-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.hero-card ul {
    margin: 0;
    padding-left: 1rem;
}

.hero-card li {
    margin-bottom: 0.5rem;
}

/*About us*/
.about {
    padding: 4rem 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about h2 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.lead {
    color: var(--muted);
    margin-bottom: 1rem;
}

.highlightb {
    color:var(--page-bg);
    padding:0 6px;
    border-radius:6px;
    font-weight:800}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(to top, rgba(255,60,87,0.12), transparent);
}

/*timeline*/
.timeline {
    margin-top: 2rem;
}

.timeline .center {
    text-align: center;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(13,17,23,0.06);
}

.card .icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.timeline-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    border: 1px solid transparent;
    transform-origin: center;
}

.timeline-card:hover,
.timeline-card:focus-within {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 36px rgba(13,17,23,0.14);
    border-color: rgba(251, 215, 0, 0.55);
}

/*Mission and Vision*/
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.mv-card {
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(13,17,23,0.06);
}

/*services*/

/*这里是调整background color 的地方*/
.services {
    padding: 4.5rem 0;
    background:
      linear-gradient(to bottom, #ffffff, rgba(241, 216, 204, 0.2));
}

.services .section-head > .tag,
.services .section-head.center > .tag {
    background: rgba(251, 215, 0, 0.2);
    color: #2C2C2E;
}

.section-head { 
    text-align:center;
    margin-bottom:1.2rem
}

.section-head .tag { display:inline-block;
    background:rgba(0,0,0,0.04);
    padding:6px 12px;
    border-radius:999px;
    margin-bottom:0.6rem 
}

.section-head.compact {
    margin-bottom: 1rem;
}

.journey-section {
    margin-top: 2rem;
    margin-bottom: 1.8rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(251,215,0,0.2);
}

.journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.4rem;
    align-items: center;
}

.journey-content h3 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.2;
}

.journey-image {
    position: relative;
}

.journey-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: 0 14px 36px rgba(13,17,23,0.16);
}

.services-eyebrow {
    margin: 0 0 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a16207;
}

.services-advantages h3,
.services-process h3,
.services-capabilities h3 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.2;
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: transparent;
    border: 0;
    padding: 0;
}

.feature-text h4 {
    margin: 0 0 0.2rem;
}

.feature-text p {
    margin: 0;
    color: var(--muted);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(89,136,255,0.12);
    color: #5988FF;
    font-weight: 800;
    box-shadow: none;
    font-size: 0.95rem;
}

.experience-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: var(--primary);
    color: #111827;
    box-shadow: 0 18px 32px rgba(13,17,23,0.18);
}

.experience-badge strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.experience-badge span {
    display: block;
    margin-top: 0.25rem;
    font-weight: 700;
}

.services-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.services-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.1rem;
    margin-top:1rem
}

.service-card {
    background:rgba(255,255,255,0.95);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 18px 38px rgba(13,17,23,0.08);
    display:flex;
    flex-direction:column;
    border: 1px solid rgba(17,24,39,0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(13,17,23,0.12);
    border-color: rgba(251,215,0,0.8);
}

.service-media {
    position: relative;
}

.service-media img {
    width:100%;
    height:220px;
    object-fit:cover;
    display:block
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,24,39,0.02), rgba(17,24,39,0.42));
}

.service-media-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 1;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #FBD700;
    font-size: 0.82rem;
    font-weight: 700;
}

.service-body {
    padding:1.2rem 1.2rem 1.35rem;
    flex:1;
    display:flex;
    flex-direction:column
}

.service-body h3 { 
    margin:0 0 0.45rem;
    font-size: 1.22rem;
}

.features {
    list-style:none;
    padding:0;
    margin:0.25rem 0 1rem 0;
}
.features li {
    font-size:0.95rem;
    color:var(--muted);
    margin-bottom:0.5rem;
    padding-left: 1.15rem;
    position: relative;
}

.features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

/*advamtages*/
.services-advantages,
.services-process,
.services-capabilities {
    margin-top: 2rem;
}

.services-advantages {
    padding: 2.6rem 2rem 2.2rem;
    border-radius: 18px;
    background: #2f2f32;
    color: white;
    box-shadow: 0 18px 40px rgba(13,17,23,0.14);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.8rem;
    margin-top: 2.2rem;
}

.adv {
    padding: 1.4rem 1.1rem 1.2rem;
    text-align: center;
    border: 0;
    background: linear-gradient(180deg, #ffd400 0%, #ffcf05 100%);
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.adv h4 {
    margin: 0 0 0.55rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #3a3200;
    text-shadow: none;
}

.adv p {
    margin: 0;
    color: #5a5108;
    font-size: 0.92rem;
    line-height: 1.7;
}

.adv-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #73681f;
    color: #ffd600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.adv-icon {
    width: 20px;
    height: 20px;
}

.services-adv-lead {
    margin: 0.15rem auto 0;
    color: #a9bfd4;
    max-width: 540px;
    font-size: 0.98rem;
    line-height: 1.6;
}

.services-advantages .section-head .tag {
    display: none;
}

.services-advantages .section-head h3 {
    margin-bottom: 0.2rem;
    font-size: clamp(2.15rem, 4vw, 2.55rem);
    color: #ffffff;
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.process-card {
    background: rgba(255,255,255,0.92);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 14px 30px rgba(13,17,23,0.08);
    border: 2px solid #F1D8CC;
}

.process-step {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(17,24,39,0.16);
}

.process-card h4 {
    margin: 0 0 0.45rem;
}

.process-card p {
    margin: 0;
    color: var(--muted);
}

.services-capabilities {
    margin-top: 2.6rem;
    padding: 2.4rem;
    border-radius: 20px;
    background:
      radial-gradient(circle at top left, rgba(251, 215, 0, 0.16), transparent 32%),
      linear-gradient(135deg, rgba(89, 136, 255, 0.08), rgba(241, 216, 204, 0.34));
    border: 1px solid rgba(17,24,39,0.05);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
}

.capability-item {
    min-height: 96px;
    display: flex;
    align-items: center;
    padding: 1.1rem 1.15rem 1.1rem 3rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 12px 28px rgba(13,17,23,0.06);
    font-weight: 600;
    line-height: 1.65;
    position: relative;
    border: 1px solid rgba(17,24,39,0.05);
}

.capability-item::before {
    content: "";
    position: absolute;
    left: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: #fbd700;
    box-shadow: 0 0 0 6px rgba(251, 215, 0, 0.18);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.promise-card {
    background: rgba(255,255,255,0.95);
    min-height: 4.25rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(13,17,23,0.06);
    border-top: 4px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-card:nth-child(2) {
    border-top-color: var(--primary);
}

.promise-card:nth-child(3) {
    border-top-color: #111827;
}

.promise-card h4 {
    margin: 0;
}

.promise-card p {
    margin: 0;
    color: var(--muted);
}

.services-cta {
    margin-top: 2rem;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background:
      radial-gradient(circle at center, rgba(251,215,0,0.1), transparent 35%),
      linear-gradient(135deg, #2C2C2E 0%, rgba(44, 44, 46, 0.92) 100%);
    color: white;
    text-align: center;
}

.services-cta-content {
    max-width: 760px;
    margin: 0 auto;
}

.services-cta h3 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.services-cta p {
    margin: 0 0 1.25rem;
    color: rgba(255,255,255,0.82);
}

.services-cta .services-panel-actions {
    justify-content: center;
}

/* CAREERS */
.careers {
    padding: 3rem 0;
}

.subpage-hero {
    padding: 3.5rem 0 2rem;
    background:
      radial-gradient(circle at top left, rgba(251, 215, 0, 0.2), transparent 32%),
      linear-gradient(135deg, #1f2023 0%, #303238 52%, #1f2023 100%);
    color: #ffffff;
}

.subpage-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    align-items: center;
}

.subpage-hero .lead {
    max-width: 680px;
    color: rgba(255,255,255,0.82);
}

.subpage-panel {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}

.subpage-panel h3 {
    margin-top: 0;
    margin-bottom: 0.85rem;
}

.subpage-points {
    margin: 0;
    padding-left: 1.1rem;
}

.subpage-points li + li {
    margin-top: 0.55rem;
}

.careers-hero {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.careers-hero img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.careers-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(180deg, rgba(255,60,87,0.5), rgba(0,0,0,0.25));
}

/*job grid*/
.job-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.job-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(13,17,23,0.06);
}

.job-card .btn {
    margin-top: 0.75rem;
}

.job-card .badge {
    background: red;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
}

.badge .urgent {
    vertical-align: super;
    background: #ff596a;
    color: white;
}

/* benefits & cta */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.benefit {
  background-color: #FBD700; /* primary color fill */
  color: black;               /* text color */
  border: 2px solid white; /* optional: same color border */
  border-radius: 0.5rem;      /* rounded corners */
  padding: 0.75rem 1rem;      /* spacing inside the box */
  text-align: center;
  display: inline-block;      /* makes it like a badge */
  margin: 0.5rem;             /* optional spacing between items */
  font-weight: 500;           /* optional: slightly bolder text */
}

.cta-apply {
    text-align: center;
    padding: 1.2rem;
    margin-top: 1.2rem;
    background: linear-gradient(90deg,var(--primary),#ff7a88);
    color: black;
    border-radius: 10px;
}

/*contact*/
.contact {
    padding: 4.5rem 0;
    background:
      radial-gradient(circle at top left, rgba(251, 215, 0, 0.16), transparent 28%),
      linear-gradient(135deg, #1f2023 0%, #303238 52%, #1f2023 100%);
    color: #ffffff;
}

.contact-header {
    margin-bottom: 2.5rem;
}

.contact-header .lead {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.78);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    box-shadow: 0 20px 45px rgba(0,0,0,0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card[role="button"] {
    cursor: pointer;
}

.contact-card-interactive {
    cursor: default;
}

.contact-card[role="button"]:hover,
.contact-card[role="button"]:focus-visible,
.contact-card-interactive:hover,
.contact-card-interactive:focus-within {
    transform: translateY(-6px);
    border-color: rgba(251,215,0,0.4);
    box-shadow: 0 26px 50px rgba(0,0,0,0.28), 0 0 32px rgba(251,215,0,0.14);
}

.contact-card-location {
    cursor: default;
}

.contact-card-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.icon-bg-email {
    background: rgba(251,215,0,0.12);
}

.contact-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-description {
    color: rgba(255,255,255,0.82);
    margin-bottom: 0.85rem;
}

.card-details {
    color: rgba(255,255,255,0.62);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-box {
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.location-header {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.location-icon {
    color: #fbd700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.location-content h4 {
    margin-bottom: 0.55rem;
    font-size: 0.98rem;
    color: #ffffff;
}

.location-content p {
    margin-bottom: 0.55rem;
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
}

.location-phone {
    color: #fbd700 !important;
    font-weight: 600;
}

.location-hours {
    color: rgba(255,255,255,0.6) !important;
}

.action-button {
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fbd700;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.action-button-group {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.action-button-group .action-button {
    margin-top: 0;
}

.action-button svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.action-button:hover svg,
.action-button:focus-visible svg {
    transform: translateX(4px);
}

.support-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    backdrop-filter: blur(14px);
    text-align: center;
}

.support-section h3 {
    font-size: 1.9rem;
    margin-bottom: 0.85rem;
}

.support-section p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 0.45rem;
}

.support-note {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.92rem;
    margin-top: 0.45rem;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.contact-cta-button {
    min-width: 200px;
    padding: 0.9rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.contact-cta-button:hover,
.contact-cta-button:focus-visible {
    transform: translateY(-2px);
}

.contact-cta-primary {
    background: #fbd700;
    color: #1f2023;
    border: 1px solid #fbd700;
    box-shadow: 0 14px 30px rgba(251,215,0,0.22);
}

.contact-cta-secondary {
    background: transparent;
    color: #fbd700;
    border: 1px solid rgba(251,215,0,0.7);
}

.contact-cta-secondary:hover,
.contact-cta-secondary:focus-visible {
    background: rgba(251,215,0,0.12);
}

.icon-faq { color: #fbd700; }
.icon-email { color: #fbd700; }
.icon-call { color: #82a9ff; }
.icon-whatsapp { color: #2c2c2e; }
.icon-map { color: #f1d8cc; }

.icon-bg-faq { background: rgba(251,215,0,0.12); }
.icon-bg-email { background: rgba(251,215,0,0.12); }
.icon-bg-call { background: rgba(130,169,255,0.12); }
.icon-bg-whatsapp { background: rgba(255,255,255,0.92); }
.icon-bg-map { background: rgba(241,216,204,0.18); }

/* FAQ page */
.faq-page {
    background: #f8f9fa;
}

.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.faq-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(251, 215, 0, 0.2);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.faq-badge svg {
    width: 16px;
    height: 16px;
    color: #FBD700;
}

.faq-badge span {
    color: #2C2C2E;
    font-size: 0.875rem;
    font-weight: 500;
}

.faq-section .section-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2C2C2E;
    margin-bottom: 16px;
}

.faq-section .section-head .lead {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: white;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    padding: 0 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: 0;
    text-align: left;
}

.accordion-question {
    font-weight: 600;
    color: #2C2C2E;
    font-size: 1rem;
    flex: 1;
    padding-right: 16px;
    margin: 0;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: #FBD700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 18px;
}

.accordion-answer {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.faq-contact-cta {
    margin-top: 48px;
    text-align: center;
    background: linear-gradient(135deg, rgba(251, 215, 0, 0.12) 0%, rgba(241, 216, 204, 0.38) 100%);
    border-radius: 16px;
    padding: 32px;
}

.faq-contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C2C2E;
    margin-bottom: 8px;
}

.faq-contact-cta p {
    color: #6b7280;
    margin-bottom: 24px;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #FBD700;
    color: #2C2C2E;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    text-decoration: none;
}

.faq-cta-button:hover {
    background-color: rgba(251, 215, 0, 0.92);
    box-shadow: 0 6px 10px -1px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/*footer*/
.site-footer {
    background: var(--page-bg);
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.25rem;
    align-items: start;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-grid h4 {
    background-color: #FBD700; /* yellow like benefit/adv */
    color: black;               /* text color */
    padding: 0.5rem 0.75rem;    /* space inside heading */
    border-radius: 0.5rem;      /* rounded corners */
    margin: 0 0 0.9rem;         /* keep existing spacing */
    display: flex;              /* keep full width for grid alignment */
    align-items: center;
    min-height: 2.625rem;
    line-height: 1.2;
}

.site-footer .logo-row {
    min-height: 2.625rem;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #FBD700;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    gap: 0.75rem;
}

.site-footer .logo-mark.small {
    min-width: 3.5rem;
    text-align: center;
    padding: 0;
    background: transparent;
    color: #1f2023;
}

.site-footer p,
.site-footer ul {
    margin-top: 0;
}

.site-footer .muted {
    color: rgba(255,255,255,0.86);
}

.site-footer .logo-row .muted {
    margin: 0;
    color: #1f2023;
    font-weight: 700;
}

.site-footer .footer-grid > div > :last-child {
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.8rem;
    margin-top: 1rem;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.advantages-grid .adv {
  background-color: #FBD700; /* same as benefit */
  color: black;               /* text color */
}

.footer-links a {
  color: white;
  text-decoration: underline;
  transition: 0.2s;
}

.footer-links a:visited {
  color: white; /* ensures no purple */
}

.footer-links a:hover,
.footer-links a:visited:hover {
  color: #FBD700; /* your yellow primary color */
  text-decoration: underline;
}


.footer-links a:hover {
  text-decoration: underline; /* only underline when hover (optional) */
}

.footer-links-inline a {
  color: white;
  text-decoration: underline;
  margin: 0 0.75rem;
  transition: 0.2s ease;
}

.footer-links-inline a:visited {
  color: white;
}

.footer-links-inline a:hover,
.footer-links-inline a:visited:hover {
  color: #FBD700;
  text-decoration: underline;
}

.legal-dialog {
    width: min(960px, calc(100vw - 2rem));
    max-height: min(86vh, 860px);
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: #1f2023;
    box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}

.legal-dialog::backdrop {
    background: rgba(10, 12, 16, 0.72);
    backdrop-filter: blur(5px);
}

.legal-shell {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.legal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    background:
      radial-gradient(circle at top right, rgba(251, 215, 0, 0.24), transparent 34%),
      linear-gradient(135deg, #1f2023 0%, #303238 100%);
    color: #ffffff;
}

.legal-eyebrow {
    margin: 0 0 0.35rem;
    color: #fbd700;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.legal-header h2 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-close {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.legal-close:hover,
.legal-close:focus-visible {
    background: #fbd700;
    color: #1f2023;
    transform: translateY(-1px);
}

.legal-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: #f6f7f9;
    border-bottom: 1px solid rgba(17,24,39,0.08);
}

.legal-tab {
    min-height: 2.45rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(17,24,39,0.1);
    border-radius: 999px;
    background: #ffffff;
    color: #2c2c2e;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.legal-tab.is-active,
.legal-tab:hover,
.legal-tab:focus-visible {
    background: #fbd700;
    border-color: #fbd700;
    color: #1f2023;
}

.legal-content {
    max-height: calc(86vh - 178px);
    overflow-y: auto;
    padding: 1.5rem;
    scroll-behavior: smooth;
}

.legal-panel {
    display: none;
}

.legal-panel.is-active {
    display: block;
}

.legal-panel h3 {
    margin: 0 0 1.2rem;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    color: #1f2023;
}

.legal-panel section {
    padding: 1rem 0;
    border-top: 1px solid rgba(17,24,39,0.08);
}

.legal-panel h4 {
    margin: 0 0 0.45rem;
    color: #2c2c2e;
    font-size: 1.02rem;
}

.legal-panel p,
.legal-panel li {
    color: #4b5563;
    line-height: 1.82;
}

.legal-panel p {
    margin: 0;
}

.legal-panel ul {
    margin: 0.35rem 0 0;
    padding-left: 1.25rem;
}

.legal-panel li + li {
    margin-top: 0.35rem;
}



/*Mobile*/

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns:1fr 320px
}

  .subpage-hero-inner {
    grid-template-columns:1fr;
  }

  .journey-grid {
    grid-template-columns:1fr;
  }

  .services-grid {
    grid-template-columns:repeat(2,1fr)
}

  .advantages-grid {
    grid-template-columns:repeat(2,1fr)
}

  .process-grid {
    grid-template-columns:repeat(2,1fr)
  }

  .capability-grid {
    grid-template-columns:repeat(2,1fr)
  }

  .promise-grid {
    grid-template-columns:repeat(2,1fr)
  }

  .timeline-grid {
    grid-template-columns:repeat(2,1fr)
}

  .job-grid {
    grid-template-columns:repeat(2,1fr)
}

  .contact-cards-grid {
    grid-template-columns:repeat(2,1fr)
  }

  .site-header {
    position:sticky
}
  .nav {
    display:none
}
  .mobile-menu-btn {
    display:inline-block
}

  .mobile-menu {
    display:none
}

  .faq-section .section-head h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px){
  .hero-inner {
    grid-template-columns:1fr;
    gap:1rem;
    padding:2.5rem 0
}

  .hero-card {
    display:none
}
  .services-grid {
    grid-template-columns:1fr
}

  .advantages-grid {
    grid-template-columns:1fr
}

  .services {
    padding: 3.6rem 0;
  }

  .journey-section,
  .services-advantages,
  .services-capabilities,
  .process-card,
  .promise-card,
  .services-cta {
    border-radius: 20px;
  }

  .adv {
    border-radius: 18px;
  }

  .journey-section,
  .services-advantages,
  .services-capabilities {
    padding: 1.25rem;
  }

  .services-panel-actions {
    flex-direction: column;
  }

  .services-panel-actions .btn {
    width: 100%;
    text-align: center;
  }

  .process-grid,
  .capability-grid,
  .promise-grid {
    grid-template-columns:1fr
  }

  .timeline-grid {
    grid-template-columns:1fr
}
  .job-grid {
    grid-template-columns:1fr
}
  .contact {
    padding:3.75rem 0
}
  .contact-cards-grid {
    grid-template-columns:1fr
}
  .support-section {
    padding:1.5rem 1rem
}
  .support-section h3 {
    font-size:1.45rem
}
  .support-buttons {
    flex-direction:column
}
  .contact-cta-button {
    width:100%
}
  .header-inner {
    padding:0.6rem
}
  .footer-grid {
    grid-template-columns:1fr
}

  .timeline-card:hover,
  .timeline-card:focus-within {
    transform: translateY(-4px) scale(1.02);
  }

  .faq-section {
    padding: 60px 20px;
  }

  .accordion-item {
    padding: 0 16px;
  }

  .faq-contact-cta {
    padding: 24px 16px;
  }
}


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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #2C2C2E;
            background: linear-gradient(to bottom, #ffffff, rgba(241, 216, 204, 0.1));
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        .careers-header {
            text-align: center;
            padding: 80px 20px 60px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(251, 215, 0, 0.2);
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .badge-icon {
            width: 16px;
            height: 16px;
            color: #FBD700;
        }

        .badge-text {
            color: #2C2C2E;
            font-size: 14px;
            font-weight: 500;
        }

        .main-title {
            font-size: 3rem;
            font-weight: bold;
            color: #2C2C2E;
            margin-bottom: 20px;
        }

        .main-subtitle {
            font-size: 1.125rem;
            color: rgba(44, 44, 46, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Why Join Us Section */
        .why-join-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 60px 0 80px;
        }

        .why-join-card {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .why-join-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .why-join-icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(89, 136, 255, 0.1);
            border-radius: 50%;
            margin: 0 auto 24px;
        }

        .why-join-icon {
            width: 32px;
            height: 32px;
            color: #5988FF;
        }

        .why-join-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2C2C2E;
            margin-bottom: 12px;
        }

        .why-join-card p {
            color: rgba(44, 44, 46, 0.7);
            font-size: 1rem;
        }

        /* Job Details Card */
        .job-card-wrapper {
            max-width: 900px;
            margin: 0 auto 80px;
        }

        .job-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(251, 215, 0, 0.3);
        }

        .job-header {
            background: linear-gradient(135deg, #2C2C2E, rgba(44, 44, 46, 0.9));
            padding: 48px;
            color: white;
        }

        .job-title-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 32px;
        }

        .job-title-content {
            flex: 1;
        }

        .job-title-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .job-title {
            font-size: 2rem;
            font-weight: bold;
            margin: 0;
        }

        .urgent-badge {
            background: #FBD700;
            color: #2C2C2E;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .job-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.125rem;
            line-height: 1.6;
        }

        .job-briefcase-icon {
            width: 48px;
            height: 48px;
            color: #FBD700;
            flex-shrink: 0;
        }

        .job-meta-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .job-meta-icon {
            width: 20px;
            height: 20px;
            color: #FBD700;
            flex-shrink: 0;
        }

        .job-meta-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2px;
        }

        .job-meta-value {
            font-weight: 500;
            font-size: 0.95rem;
        }

        .job-content {
            padding: 48px;
        }

        .job-section {
            margin-bottom: 48px;
        }

        .job-section:last-of-type {
            margin-bottom: 0;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.25rem;
            font-weight: 600;
            color: #2C2C2E;
            margin-bottom: 24px;
        }

        .section-title-bar {
            width: 4px;
            height: 24px;
            background: #5988FF;
            border-radius: 2px;
        }

        .section-title-bar.yellow {
            background: #FBD700;
        }

        /* Responsibilities Grid */
        .responsibilities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .responsibility-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            background: rgba(241, 216, 204, 0.2);
            border-radius: 8px;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            color: #5988FF;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .responsibility-text {
            color: rgba(44, 44, 46, 0.8);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Requirements List */
        .requirements-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .requirement-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .requirement-bullet {
            width: 8px;
            height: 8px;
            background: #FBD700;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .requirement-text {
            color: rgba(44, 44, 46, 0.8);
            line-height: 1.6;
        }

        /* Apply Button Section */
        .apply-section {
            padding-top: 32px;
            border-top: 2px solid #F1D8CC;
        }

        .apply-button {
            width: 100%;
            background: #FBD700;
            color: #2C2C2E;
            border: none;
            padding: 20px;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .apply-button:hover {
            background: rgba(251, 215, 0, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 215, 0, 0.3);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
        }

        /* Benefits Section */
        .benefits-section {
            margin-bottom: 80px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h3 {
            font-size: 2rem;
            font-weight: bold;
            color: #2C2C2E;
            margin-bottom: 12px;
        }

        .section-header p {
            color: rgba(44, 44, 46, 0.7);
            font-size: 1rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .benefit-card {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        .benefit-icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: rgba(251, 215, 0, 0.2);
            border-radius: 50%;
            margin: 0 auto 24px;
        }

        .benefit-icon {
            width: 24px;
            height: 24px;
            color: #FBD700;
        }

        .benefit-card h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #2C2C2E;
            margin-bottom: 12px;
        }

        .benefit-card p {
            color: rgba(44, 44, 46, 0.7);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, #2C2C2E, rgba(44, 44, 46, 0.9));
            border-radius: 16px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }

        .cta-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.3;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iI0ZCRDcwMCIgc3Ryb2tlLW9wYWNpdHk9Ii4xIi8+PC9nPjwvc3ZnPg==');
        }

        .cta-content {
            position: relative;
            z-index: 10;
        }

        .cta-section h3 {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.125rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: #FBD700;
            color: #2C2C2E;
        }

        .btn-primary:hover {
            background: rgba(251, 215, 0, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 215, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #2C2C2E;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .why-join-grid,
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .responsibilities-grid,
            .job-meta-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }

            .why-join-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .job-header,
            .job-content {
                padding: 32px 24px;
            }

            .job-title {
                font-size: 1.5rem;
            }

            .job-title-row {
                flex-direction: column;
            }

            .job-briefcase-icon {
                display: none;
            }

            .cta-section {
                padding: 40px 30px;
            }

            .cta-section h3 {
                font-size: 1.75rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

@media (max-width: 640px) {
  .legal-dialog {
    width: calc(100vw - 1rem);
    max-height: 90vh;
    border-radius: 14px;
  }

  .legal-shell {
    border-radius: 14px;
  }

  .legal-header {
    padding: 1rem;
  }

  .legal-tabs {
    padding: 0.75rem;
  }

  .legal-tab {
    flex: 1;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  .legal-content {
    max-height: calc(90vh - 160px);
    padding: 1rem;
  }
}

.careers-recruit {
    padding: 6rem 0;
    background:
      radial-gradient(circle at top left, rgba(251, 215, 0, 0.14), transparent 26%),
      linear-gradient(to bottom, #ffffff, rgba(241, 216, 204, 0.22));
}

.career-recruit-card {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 2.25rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(17,24,39,0.08);
    box-shadow: 0 22px 54px rgba(13,17,23,0.12);
}

.career-recruit-media {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 560px;
    aspect-ratio: 4 / 5;
    justify-self: center;
    border-radius: 18px;
    overflow: hidden;
    background: #1f2023;
}

.career-recruit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.career-recruit-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31,32,35,0.02), rgba(31,32,35,0.58));
}

.career-photo-label {
    display: none;
}

.career-recruit-content {
    padding: 1.75rem 1.5rem 1.75rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-recruit-head {
    text-align: left;
    margin-bottom: 1.25rem;
}

.career-recruit-head .tag {
    background: rgba(251, 215, 0, 0.22);
    color: #2c2c2e;
}

.career-recruit-head h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.15;
    color: #1f2023;
}

.career-recruit-head .lead {
    margin: 0;
    max-width: 680px;
    line-height: 1.85;
}

.career-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.25rem 0;
}

.career-highlights span {
    padding: 0.62rem 0.85rem;
    border-radius: 999px;
    background: #2c2c2e;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
}

.career-intro {
    margin: 0 0 1.4rem;
    color: #4b5563;
    line-height: 1.85;
}

.career-role-panel {
    padding: 1.25rem;
    border-radius: 16px;
    background: #f8f9fa;
    border: 1px solid rgba(17,24,39,0.06);
}

.career-role-header {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.85rem;
}

.career-role-header h3 {
    margin: 0;
    font-size: 1.18rem;
    color: #1f2023;
}

.career-role-header p {
    margin: 0;
    color: #6b7280;
    font-weight: 700;
    white-space: nowrap;
}

.career-duty-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.career-duty-item {
    position: relative;
    padding: 0.9rem 0.95rem 0.9rem 2.15rem;
    border-radius: 12px;
    background: #ffffff;
    color: #4b5563;
    line-height: 1.68;
    font-size: 0.94rem;
    border: 1px solid rgba(17,24,39,0.05);
}

.career-duty-item::before {
    content: "";
    position: absolute;
    left: 0.85rem;
    top: 1.05rem;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: #fbd700;
}

.career-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.career-actions .apply-button {
    margin: 0;
}

.career-contact-link {
    color: #1f2023;
    font-weight: 800;
    text-decoration: none;
}

.career-contact-link:hover {
    color: #a16207;
    text-decoration: underline;
}

@media (max-width: 992px) {
  .career-recruit-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .career-recruit-media {
    max-width: none;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .career-recruit-media img {
    min-height: 320px;
    max-height: 420px;
  }

  .career-recruit-content {
    padding: 0.75rem;
  }
}

@media (max-width: 640px) {
  .careers-recruit {
    padding: 3.5rem 0;
  }

  .career-recruit-card {
    padding: 0.75rem;
    border-radius: 16px;
  }

  .career-recruit-media {
    border-radius: 12px;
  }

  .career-recruit-media img {
    min-height: 240px;
    max-height: 280px;
  }

  .capability-item {
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .career-duty-list {
    grid-template-columns: 1fr;
  }

  .career-role-header {
    display: block;
  }

  .career-role-header p {
    margin-top: 0.25rem;
  }

  .career-actions .apply-button,
  .career-contact-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}



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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #2C2C2E;
            background: linear-gradient(to bottom, #ffffff, rgba(241, 216, 204, 0.1));
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        .careers-header {
            text-align: center;
            padding: 80px 20px 60px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(251, 215, 0, 0.2);
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .badge-icon {
            width: 16px;
            height: 16px;
            color: #FBD700;
        }

        .badge-text {
            color: #2C2C2E;
            font-size: 14px;
            font-weight: 500;
        }

        .main-title {
            font-size: 3rem;
            font-weight: bold;
            color: #2C2C2E;
            margin-bottom: 20px;
        }

        .main-subtitle {
            font-size: 1.125rem;
            color: rgba(44, 44, 46, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Why Join Us Section */
        .why-join-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 60px 0 80px;
        }

        .why-join-card {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .why-join-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .why-join-icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(89, 136, 255, 0.1);
            border-radius: 50%;
            margin: 0 auto 24px;
        }

        .why-join-icon {
            width: 32px;
            height: 32px;
            color: #5988FF;
        }

        .why-join-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2C2C2E;
            margin-bottom: 12px;
        }

        .why-join-card p {
            color: rgba(44, 44, 46, 0.7);
            font-size: 1rem;
        }

        /* Job Details Card */
        .job-card-wrapper {
            max-width: 900px;
            margin: 0 auto 80px;
        }

        .job-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(251, 215, 0, 0.3);
        }

        .job-header {
            background: linear-gradient(135deg, #2C2C2E, rgba(44, 44, 46, 0.9));
            padding: 48px;
            color: white;
        }

        .job-title-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 32px;
        }

        .job-title-content {
            flex: 1;
        }

        .job-title-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .job-title {
            font-size: 2rem;
            font-weight: bold;
            margin: 0;
        }

        .urgent-badge {
            background: #FBD700;
            color: #2C2C2E;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .job-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.125rem;
            line-height: 1.6;
        }

        .job-briefcase-icon {
            width: 48px;
            height: 48px;
            color: #FBD700;
            flex-shrink: 0;
        }

        .job-meta-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .job-meta-icon {
            width: 20px;
            height: 20px;
            color: #FBD700;
            flex-shrink: 0;
        }

        .job-meta-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2px;
        }

        .job-meta-value {
            font-weight: 500;
            font-size: 0.95rem;
        }

        .job-content {
            padding: 48px;
        }

        .job-section {
            margin-bottom: 48px;
        }

        .job-section:last-of-type {
            margin-bottom: 0;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.25rem;
            font-weight: 600;
            color: #2C2C2E;
            margin-bottom: 24px;
        }

        .section-title-bar {
            width: 4px;
            height: 24px;
            background: #5988FF;
            border-radius: 2px;
        }

        .section-title-bar.yellow {
            background: #FBD700;
        }

        /* Responsibilities Grid */
        .responsibilities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .responsibility-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            background: rgba(241, 216, 204, 0.2);
            border-radius: 8px;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            color: #5988FF;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .responsibility-text {
            color: rgba(44, 44, 46, 0.8);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Requirements List */
        .requirements-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .requirement-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .requirement-bullet {
            width: 8px;
            height: 8px;
            background: #FBD700;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .requirement-text {
            color: rgba(44, 44, 46, 0.8);
            line-height: 1.6;
        }

        /* Apply Button Section */
        .apply-section {
            padding-top: 32px;
            border-top: 2px solid #F1D8CC;
        }

        .apply-button {
            width: 100%;
            background: #FBD700;
            color: #2C2C2E;
            border: none;
            padding: 20px;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .apply-button:hover {
            background: rgba(251, 215, 0, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 215, 0, 0.3);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
        }

        /* Benefits Section */
        .benefits-section {
            margin-bottom: 80px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h3 {
            font-size: 2rem;
            font-weight: bold;
            color: #2C2C2E;
            margin-bottom: 12px;
        }

        .section-header p {
            color: rgba(44, 44, 46, 0.7);
            font-size: 1rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .benefit-card {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        .benefit-icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: rgba(251, 215, 0, 0.2);
            border-radius: 50%;
            margin: 0 auto 24px;
        }

        .benefit-icon {
            width: 24px;
            height: 24px;
            color: #FBD700;
        }

        .benefit-card h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #2C2C2E;
            margin-bottom: 12px;
        }

        .benefit-card p {
            color: rgba(44, 44, 46, 0.7);
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, #2C2C2E, rgba(44, 44, 46, 0.9));
            border-radius: 16px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }

        .cta-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.3;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iI0ZCRDcwMCIgc3Ryb2tlLW9wYWNpdHk9Ii4xIi8+PC9nPjwvc3ZnPg==');
        }

        .cta-content {
            position: relative;
            z-index: 10;
        }

        .cta-section h3 {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.125rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: #FBD700;
            color: #2C2C2E;
        }

        .btn-primary:hover {
            background: rgba(251, 215, 0, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 215, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #2C2C2E;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .why-join-grid,
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .responsibilities-grid,
            .job-meta-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }

            .why-join-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .job-header,
            .job-content {
                padding: 32px 24px;
            }

            .job-title {
                font-size: 1.5rem;
            }

            .job-title-row {
                flex-direction: column;
            }

            .job-briefcase-icon {
                display: none;
            }

            .cta-section {
                padding: 40px 30px;
            }

            .cta-section h3 {
                font-size: 1.75rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
/* Mobile final override: keep this block last so repeated legacy styles cannot win. */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .header-inner {
    gap: 0.75rem;
    padding: 0.58rem 0;
  }

  .logo {
    flex: 1 1 auto;
  }

  .logo-mark {
    padding: 0.42rem 0.65rem;
    border-radius: 7px;
  }

  .logo-text {
    max-width: 11.5rem;
    font-size: 0.82rem;
  }

  html[lang="ms"] .logo-text,
  html[lang="en"] .logo-text {
    max-width: 9rem;
  }

  .header-ctas {
    gap: 0.4rem;
  }

  .header-ctas > .btn-primary {
    display: none;
  }

  .lang-select {
    max-width: 5.8rem;
    min-height: 2.2rem;
    padding: 0.35rem 0.45rem;
    font-size: 0.82rem;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    font-size: 1.25rem;
    line-height: 1;
  }

  .mobile-menu {
    padding: 0.45rem 1rem 0.85rem;
    background: #2c2c2e;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 30px rgba(0,0,0,0.22);
  }

  .mobile-menu a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-position: 58% center;
    filter: brightness(0.38);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: calc(92svh - 64px);
    align-content: center;
    padding-top: 3.25rem;
    padding-bottom: 3.6rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.55rem);
    line-height: 1.08;
    margin: 0.95rem 0;
  }

  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: none;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .stat-number {
    font-size: 1.02rem;
    line-height: 1.15;
  }

  .stat-label {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-actions {
    flex-direction: row;
    gap: 0.65rem;
    margin-top: 1.2rem;
  }

  .support-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 0.62rem 0.55rem;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .hero-actions .btn,
  .services-panel-actions .btn,
  .support-buttons .contact-cta-button,
  .faq-cta-button,
  .career-actions .apply-button,
  .career-contact-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-actions .btn {
    width: auto;
  }

  .about,
  .services,
  .careers,
  .careers-recruit,
  .contact,
  .faq-section {
    padding-top: 2.65rem;
    padding-bottom: 2.65rem;
  }

  .about-grid,
  .mission-vision,
  .journey-grid,
  .services-grid,
  .advantages-grid,
  .process-grid,
  .capability-grid,
  .promise-grid,
  .timeline-grid,
  .job-grid,
  .contact-cards-grid,
  .career-recruit-card,
  .footer-grid,
  .why-join-grid,
  .benefits-grid,
  .responsibilities-grid,
  .job-meta-grid {
    grid-template-columns: 1fr;
  }

  .about-image img,
  .journey-image img,
  .service-media img {
    height: auto;
    min-height: 220px;
    max-height: 300px;
  }

  .journey-section,
  .services-advantages,
  .services-capabilities,
  .services-cta,
  .support-section,
  .career-recruit-card,
  .faq-contact-cta {
    padding: 1.05rem;
    border-radius: 16px;
  }

  .services-advantages .section-head h3,
  .services-capabilities h3,
  .services-process h3,
  .services-cta h3,
  .career-recruit-head h2,
  .faq-section .section-head h2,
  .main-title {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }

  .adv,
  .process-card,
  .promise-card,
  .service-card,
  .accordion-item {
    border-radius: 12px;
  }

  .capability-item {
    padding-left: 2.6rem;
  }

  .accordion-header {
    align-items: flex-start;
  }

  .accordion-question {
    padding-right: 0;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }

  .footer-links-inline {
    justify-content: center;
    margin-top: 0.75rem;
  }
}

@media (max-width: 420px) {
  .logo-text {
    display: none;
  }

  .lang-select {
    max-width: 5.15rem;
  }

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

  .stat-number,
  .stat-label {
    text-align: center;
  }
}

/* Header mobile menu refinement */
.logo {
  padding: 0.2rem 0.35rem;
}

.logo-mark {
  min-width: 3.25rem;
  min-height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-language {
  display: none;
}

@media (max-width: 992px) {
  .site-header {
    overflow: visible;
  }

  .site-header.header-hidden {
    transform: none;
  }

  .site-header .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .header-ctas .lang-switcher {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 1.15rem;
    z-index: 80;
    display: flex;
    width: min(calc(100vw - 2.3rem), 28rem);
    max-height: 0;
    margin-left: auto;
    padding: 0 1rem;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition:
      max-height 0.28s ease,
      opacity 0.2s ease,
      padding 0.28s ease,
      transform 0.28s ease;
  }

  .mobile-menu.is-open {
    max-height: 50vh;
    padding: 0.45rem 1rem 0.85rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-language {
    display: grid;
    gap: 0.45rem;
    padding: 0.35rem 0 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 700;
  }

  .mobile-menu-language .lang-select {
    width: 100%;
    max-width: none;
  }
}

/* Mobile header overlay and service image tuning */
@media (max-width: 768px) {
  .service-media img {
    min-height: 0;
    height: 155px;
    max-height: 155px;
  }
}

@media (max-width: 420px) {
  .service-media img {
    height: 135px;
    max-height: 135px;
  }
}

/* About mobile refinement */
@media (max-width: 768px) {
  .about {
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
  }

  .about-grid {
    gap: 1rem;
  }

  .about h2 {
    margin-bottom: 0.25rem;
  }

  .about-text h3 {
    margin: 0.75rem 0 0.25rem;
    font-size: 1.05rem;
  }

  .about-text p {
    margin-top: 0;
    margin-bottom: 0.7rem;
    line-height: 1.65;
  }

  .about .lead {
    margin-bottom: 0.7rem;
  }

  .highlightb {
    display: block;
    padding: 0.75rem 0.8rem;
    border-radius: 10px;
    background: rgba(251, 215, 0, 0.16);
    line-height: 1.55;
  }

  .about-image img {
    min-height: 180px;
    max-height: 220px;
  }

  .timeline {
    margin-top: 1.45rem;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.8rem;
  }

  .timeline-card {
    min-height: 9.25rem;
    padding: 0.85rem 0.65rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .timeline-card .icon {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
  }

  .timeline-card h4 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .timeline-card p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .timeline-card:hover,
  .timeline-card:focus-within,
  .timeline-card:active {
    transform: translateY(-5px) scale(1.025);
    box-shadow: 0 16px 28px rgba(13,17,23,0.13);
    border-color: rgba(251, 215, 0, 0.62);
  }

  .mission-vision {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
  }

  .mv-card {
    padding: 0.85rem;
    min-height: 8.5rem;
  }

  .mv-card h4 {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
  }

  .mv-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
  }
}

@media (max-width: 360px) {
  .timeline-grid,
  .mission-vision {
    gap: 0.55rem;
  }

  .timeline-card,
  .mv-card {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .timeline-card p,
  .mv-card p {
    font-size: 0.76rem;
  }
}

/* Services simplification */
.services .journey-grid {
  grid-template-columns: 1fr;
}

.services .journey-section {
  padding: 1.25rem;
}

.services .feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0;
}

.services .feature-item {
  display: block;
  padding: 1.1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,0.06);
  box-shadow: 0 12px 28px rgba(13,17,23,0.07);
}

.services .feature-icon {
  width: 2.45rem;
  min-width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: #2c2c2e;
  color: #fbd700;
}

.services .feature-text h4 {
  font-size: 1rem;
}

.services .feature-text p,
.service-body p {
  line-height: 1.55;
}

.services .advantages-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.services .adv {
  min-height: 11.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services .adv-icon-box {
  margin-bottom: 0.75rem;
}

.services .adv p {
  font-size: 0.85rem;
  line-height: 1.45;
}

.services .process-grid {
  gap: 0.75rem;
}

.services .process-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 4.3rem;
  padding: 0.85rem 0.9rem;
}

.services .process-step {
  margin: 0;
  font-size: 1.25rem;
  color: rgba(17,24,39,0.32);
}

.services .process-card h4 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
}

.services .process-card p {
  display: none;
}

.services-capabilities {
  overflow: hidden;
}

.services-capabilities .section-head {
  margin-bottom: 0.85rem;
}

.capability-grid {
  display: flex;
  grid-template-columns: none;
  width: max-content;
  gap: 0.8rem;
  margin-top: 1rem;
  animation: capabilityDrift 28s linear infinite;
  will-change: transform;
}

.capability-grid:hover {
  animation-play-state: paused;
}

.capability-item {
  min-height: auto;
  width: clamp(13rem, 28vw, 20rem);
  flex: 0 0 auto;
  padding: 0.95rem 1rem 0.95rem 2.55rem;
  white-space: normal;
}

.capability-item:nth-child(2n) {
  transform: none;
}

.capability-item:nth-child(3n) {
  transform: none;
}

.promise-card p,
.services-cta h3,
.services-cta p {
  display: none;
}

.services-cta {
  padding: 1.5rem;
}

@keyframes capabilityDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 1rem));
  }
}

@media (max-width: 768px) {
  .services .section-head {
    margin-bottom: 0.9rem;
  }

  .services .journey-section,
  .services-advantages,
  .services-capabilities,
  .services-cta {
    margin-top: 1.2rem;
  }

  .services .feature-list,
  .services .advantages-grid,
  .services .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services .feature-list {
    gap: 0.75rem;
  }

  .services .feature-item {
    padding: 0.85rem;
  }

  .services .feature-item:first-child {
    grid-column: 1 / -1;
  }

  .services .feature-text h4 {
    font-size: 0.95rem;
  }

  .services .feature-text p {
    font-size: 0.82rem;
  }

  .service-body {
    padding: 0.95rem 1rem 1.05rem;
  }

  .service-body h3 {
    font-size: 1rem;
  }

  .service-body p {
    font-size: 0.86rem;
  }

  .services .adv {
    min-height: 9.6rem;
    padding: 1rem 0.75rem;
  }

  .services .adv-icon-box {
    width: 48px;
    height: 48px;
  }

  .services .adv h4 {
    font-size: 0.95rem;
  }

  .services .adv p {
    display: none;
  }

  .services .process-card {
    min-height: 3.5rem;
    padding: 0.7rem;
  }

  .services .process-step {
    font-size: 1rem;
  }

  .services .process-card h4 {
    font-size: 0.88rem;
  }

  .services-capabilities {
    padding-left: 0;
    padding-right: 0;
  }

  .services-capabilities .section-head {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .capability-grid {
    animation-duration: 24s;
    padding-left: 1rem;
  }

  .capability-item {
    width: 15rem;
    font-size: 0.84rem;
  }

  .promise-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .promise-card {
    min-height: 3.35rem;
    padding: 0.7rem 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-width: 3px;
  }

  .promise-card h4 {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .services-cta {
    padding: 1rem;
  }

  .services-cta .services-panel-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .services-cta .btn {
    width: 100%;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .services .feature-item:first-child {
    grid-column: auto;
  }

  .services .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-grid {
    width: auto;
    animation: none;
    overflow-x: auto;
  }
}

/* Careers compact refinement */
.careers {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.careers-header {
  padding: 2.5rem 1rem 1.5rem;
}

.careers-header .badge {
  margin-bottom: 0.8rem;
}

.careers .main-title {
  margin-bottom: 0.65rem;
}

.careers .main-subtitle {
  max-width: 620px;
  line-height: 1.65;
}

.why-join-grid {
  gap: 0.9rem;
  margin: 1.5rem 0 1.8rem;
}

.why-join-card {
  padding: 1.25rem 1rem;
  min-height: 8rem;
}

.why-join-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.why-join-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.job-card-wrapper {
  max-width: 820px;
  margin-bottom: 1.8rem;
}

.job-header {
  padding: 1.4rem 1.5rem;
}

.job-title {
  font-size: 1.45rem;
  line-height: 1.25;
}

.job-description {
  display: none;
}

.job-content {
  padding: 1.25rem;
}

.job-scroll-panel {
  max-height: 20rem;
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(44,44,46,0.28) transparent;
}

.job-section {
  margin-bottom: 1.2rem;
}

.section-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.responsibilities-grid {
  gap: 0.55rem;
}

.responsibility-item {
  padding: 0.7rem 0.8rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.requirements-list {
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
}

.requirements-list li {
  font-size: 0.9rem;
  line-height: 1.5;
}

.apply-section {
  margin-top: 1rem;
  padding-top: 1rem;
}

.apply-button {
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

.benefits-section {
  margin-bottom: 1.8rem;
}

.benefits-section .section-header {
  margin-bottom: 1rem;
}

.benefits-section .section-header h3 {
  font-size: 1.45rem;
  margin-bottom: 0;
}

.benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}

.benefit-card {
  min-height: 4.5rem;
  padding: 0.95rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.35;
}

.cta-section {
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.cta-section h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.cta-buttons .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .careers {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .careers-header {
    padding: 1.4rem 0 1rem;
  }

  .careers .main-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .why-join-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin: 1rem 0 1.25rem;
  }

  .why-join-card {
    min-height: auto;
    padding: 0.85rem 0.95rem;
    text-align: left;
  }

  .why-join-card h3 {
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
  }

  .why-join-card p {
    font-size: 0.82rem;
  }

  .job-card-wrapper {
    margin-bottom: 1.4rem;
  }

  .job-header {
    padding: 1rem;
  }

  .job-title {
    font-size: 1.15rem;
  }

  .urgent-badge {
    padding: 0.2rem 0.5rem;
    font-size: 0.74rem;
  }

  .job-content {
    padding: 0.95rem;
  }

  .job-scroll-panel {
    max-height: 14rem;
  }

  .responsibilities-grid {
    grid-template-columns: 1fr;
  }

  .responsibility-item,
  .requirements-list li {
    font-size: 0.8rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .benefit-card {
    min-height: 4rem;
    padding: 0.75rem 0.6rem;
    font-size: 0.82rem;
  }

  .cta-section {
    padding: 1.15rem;
  }

  .cta-section h3 {
    font-size: 1.3rem;
  }

  .cta-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .cta-buttons .btn {
    width: 100%;
    padding: 0.75rem 0.5rem;
    font-size: 0.84rem;
  }
}

/* Contact mobile simplification */
@media (max-width: 768px) {
  .contact {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .contact-header {
    margin-bottom: 1rem;
  }

  .contact-header .lead {
    display: none;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .contact-card {
    min-height: 7.1rem;
    padding: 0.95rem 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-align: center;
    cursor: pointer;
  }

  .contact-card:active {
    transform: translateY(-2px) scale(0.99);
  }

  .contact-card-icon {
    width: 3rem;
    height: 3rem;
    margin: 0;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .contact-card:active .contact-card-icon,
  .contact-card.is-open .contact-card-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(13,17,23,0.12);
  }

  .contact-card .card-title {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .contact-card .card-description,
  .contact-card .card-details,
  .contact-card > .action-button,
  .location-box {
    display: none;
  }

  .contact-card-interactive {
    overflow: hidden;
  }

  .contact-card-interactive.is-open {
    grid-column: 1 / -1;
    min-height: 10.5rem;
  }

  .contact-card-interactive .action-button-group {
    width: 100%;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-0.35rem);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.24s ease, margin 0.24s ease;
  }

  .contact-card-interactive.is-open .action-button-group {
    max-height: 8rem;
    margin-top: 0.25rem;
    opacity: 1;
    transform: translateY(0);
  }

  .contact-card-interactive .action-button {
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    justify-content: center;
    font-size: 0.82rem;
  }

  .support-section {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-bottom: 1.25rem;
  }

  .footer-grid {
    gap: 1rem;
  }

  .footer-brand {
    display: none;
  }

  .footer-nav h4 {
    justify-content: center;
    min-height: auto;
    margin-bottom: 0.6rem;
  }

  .footer-nav .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.8rem;
  }

  .footer-nav .footer-links li {
    margin: 0;
  }

  .footer-nav .footer-links a {
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .footer-services,
  .footer-contact {
    display: none;
  }

  .footer-bottom {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    line-height: 1.45;
  }
}

.mobile-footer-actions {
  display: none;
}

@media (max-width: 768px) {
  .mobile-footer-actions {
    display: none;
  }

  .mobile-footer-toggle {
    width: 3.15rem;
    height: 3.15rem;
    border: 0;
    border-radius: 50%;
    background: #fbd700;
    color: #1f2023;
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
  }

  .mobile-footer-actions.is-open .mobile-footer-toggle {
    transform: rotate(45deg);
    box-shadow: 0 18px 38px rgba(0,0,0,0.28);
  }

  .mobile-footer-panel {
    position: absolute;
    right: 0;
    bottom: 3.75rem;
    width: min(18rem, calc(100vw - 2rem));
    max-height: 0;
    padding: 0 1rem;
    overflow: hidden;
    border-radius: 14px;
    background: #2c2c2e;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0,0,0,0.28);
    opacity: 0;
    transform: translateY(0.5rem) scale(0.96);
    transform-origin: bottom right;
    transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.2s ease, transform 0.24s ease;
  }

  .mobile-footer-actions.is-open .mobile-footer-panel {
    max-height: 24rem;
    padding: 1rem;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .mobile-footer-panel h4 {
    margin: 0 0 0.45rem;
    color: #fbd700;
    font-size: 0.92rem;
  }

  .mobile-footer-panel ul {
    margin: 0 0 0.85rem;
    padding-left: 1rem;
  }

  .mobile-footer-panel li,
  .mobile-footer-panel p {
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .mobile-footer-panel p + p {
    margin-top: 0.35rem;
  }
}

