/* =================================================================
   GKS LOGISTICS — V3 CAREERS PAGE
   Loads after v3-tokens.css + v3.css. Scoped under body.v3.
   Re-skins legacy careers class names (.values-grid, .value-card,
   .benefits-grid, .benefit-card, .job-listing-card, .testimonial-*,
   .sidebar-widget, .career-modal-*) using V3 design tokens.
   ================================================================= */

/* =================================================================
   1) HERO (new V3 block, replaces .hero/.hero-slider)
   ================================================================= */

body.v3 .careers-hero {
  position: relative;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(3rem, 6vh, 5rem);
  color: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 55% at 80% 20%, rgba(230, 57, 70, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(27, 92, 138, 0.45) 0%, transparent 55%),
    linear-gradient(135deg, #062A45 0%, #0A3D62 60%, #1B5C8A 100%);
}
body.v3 .careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
body.v3 .careers-hero > .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 920px) {
  body.v3 .careers-hero > .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

body.v3 .careers-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1.25rem;
}
body.v3 .careers-hero__eyebrow i { color: var(--gks-red-300); }

body.v3 .careers-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  line-height: var(--lh-tight);
  color: var(--gks-white);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
body.v3 .careers-hero__title em {
  color: var(--gks-red-300);
  font-style: normal;
}

body.v3 .careers-hero__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 0 1.75rem;
}
@media (max-width: 920px) {
  body.v3 .careers-hero__lead { margin-left: auto; margin-right: auto; }
}

body.v3 .careers-hero__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
@media (max-width: 920px) {
  body.v3 .careers-hero__actions { justify-content: center; }
}
body.v3 .careers-hero__actions .btn--primary {
  background: var(--gks-red);
  color: var(--gks-white);
}
body.v3 .careers-hero__actions .btn--primary:hover { background: var(--gks-red-700); }
body.v3 .careers-hero__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--gks-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.v3 .careers-hero__actions .btn--ghost:hover { background: rgba(255, 255, 255, 0.22); }

/* Hero stats card */
body.v3 .careers-hero__stats {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.35);
}
body.v3 .careers-hero__stat {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid var(--gks-red-300);
}
body.v3 .careers-hero__stat-value {
  font-family: var(--font-display);
  color: var(--gks-white);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.35rem;
}
body.v3 .careers-hero__stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =================================================================
   2) MAIN CONTENT WRAPPER
   ================================================================= */

body.v3 main.main-content { background: var(--gks-white); }
body.v3 main.main-content > .container { max-width: var(--container-max); }
body.v3 .content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  padding: var(--section-py) 0;
}
@media (max-width: 1080px) {
  body.v3 .content-layout { grid-template-columns: 1fr; }
}
body.v3 .careers-content { min-width: 0; }

/* Generic h2 in V3 careers */
body.v3 .careers-content > section > h2 {
  font-family: var(--font-display);
  color: var(--gks-grey-900);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: var(--lh-tight);
  margin: 0 0 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}
body.v3 .careers-content > section > h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--gks-blue) 0%, var(--gks-red) 100%);
  border-radius: var(--radius-pill);
  margin-top: 0.75rem;
}
body.v3 .careers-content > section > .section-intro {
  color: var(--gks-grey-700);
  font-size: 1rem;
  line-height: var(--lh-body);
  max-width: 720px;
  margin: 0 0 2rem;
}

/* Spacing between top-level sections */
body.v3 .careers-content > section { margin-bottom: 3rem; }

/* =================================================================
   3) CULTURE & VALUES — re-skin .values-grid / .value-card
   ================================================================= */

body.v3 .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
body.v3 .value-card {
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--gks-shadow-sm);
  transition: all var(--dur-base) var(--ease-premium);
  position: relative;
  overflow: hidden;
}
body.v3 .value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gks-blue) 0%, var(--gks-red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-premium);
}
body.v3 .value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gks-shadow-lg);
  border-color: var(--gks-blue-300);
}
body.v3 .value-card:hover::before { transform: scaleX(1); }
body.v3 .value-card .value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-blue-500) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gks-white);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 24px -10px rgba(10, 61, 98, 0.45);
}
body.v3 .value-card h3 {
  font-family: var(--font-display);
  color: var(--gks-grey-900);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
body.v3 .value-card p {
  color: var(--gks-grey-700);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Culture video */
body.v3 .culture-video {
  background: var(--gks-grey-900);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--gks-shadow-lg);
}
body.v3 .culture-video video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
body.v3 .culture-video .video-caption {
  background: linear-gradient(135deg, var(--gks-blue) 0%, #062A45 100%);
  color: var(--gks-white);
  padding: 1.25rem 1.5rem;
}
body.v3 .culture-video .video-caption p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* =================================================================
   4) WHY GKS — re-skin .benefits-grid / .benefit-card
   ================================================================= */

body.v3 .why-gks-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
body.v3 .benefit-card {
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  box-shadow: var(--gks-shadow-sm);
  transition: all var(--dur-fast) var(--ease-premium);
}
body.v3 .benefit-card:hover {
  border-color: var(--gks-blue-300);
  transform: translateY(-3px);
  box-shadow: var(--gks-shadow-md);
}
body.v3 .benefit-card .benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gks-red-50, #FFE9EB);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gks-red);
  font-size: 1.35rem;
  flex-shrink: 0;
}
body.v3 .benefit-card h3 {
  font-family: var(--font-display);
  color: var(--gks-grey-900);
  font-weight: 700;
  font-size: 1rem;
  grid-column: 2;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
body.v3 .benefit-card p {
  color: var(--gks-grey-700);
  font-size: 0.9rem;
  grid-column: 2;
  line-height: 1.55;
  margin: 0;
}
body.v3 .benefits-image { display: none; }

/* =================================================================
   5) JOB OPPORTUNITIES — re-skin .job-listing-card
   ================================================================= */

body.v3 .job-opportunities-section { scroll-margin-top: 100px; }

body.v3 .job-listing-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--gks-shadow-md);
  margin-bottom: 1.5rem;
  transition: all var(--dur-base) var(--ease-premium);
}
body.v3 .job-listing-card:hover {
  box-shadow: var(--gks-shadow-xl);
  transform: translateY(-2px);
}
@media (max-width: 760px) {
  body.v3 .job-listing-card { grid-template-columns: 1fr; }
}
body.v3 .job-listing-card .job-flyer {
  background: linear-gradient(135deg, var(--gks-blue) 0%, #062A45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
body.v3 .job-listing-card .job-flyer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(230, 57, 70, 0.20), transparent 60%);
}
body.v3 .job-listing-card .job-flyer img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

body.v3 .job-listing-card .job-listing-body { padding: 1.75rem; }

body.v3 .job-listing-card .job-listing-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
body.v3 .job-listing-card .job-title {
  font-family: var(--font-display);
  color: var(--gks-grey-900);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
body.v3 .job-listing-card .job-location-badge,
body.v3 .job-listing-card .job-deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
body.v3 .job-listing-card .job-location-badge {
  background: var(--gks-blue-50);
  color: var(--gks-blue);
}
body.v3 .job-listing-card .job-deadline-badge {
  background: var(--gks-red-50, #FFE9EB);
  color: var(--gks-red-700);
}
body.v3 .job-listing-card .job-location-badge i,
body.v3 .job-listing-card .job-deadline-badge i { font-size: 0.78rem; }

body.v3 .job-listing-card .job-intro {
  color: var(--gks-grey-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

body.v3 .job-listing-card .job-section { margin-bottom: 1.25rem; }
body.v3 .job-listing-card .job-section h4 {
  font-family: var(--font-display);
  color: var(--gks-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}
body.v3 .job-listing-card .job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
body.v3 .job-listing-card .job-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--gks-grey-900);
  font-size: 0.92rem;
  line-height: 1.5;
}
body.v3 .job-listing-card .job-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gks-red);
  font-weight: 800;
  font-size: 0.85rem;
}

body.v3 .job-listing-card .job-listing-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gks-grey-200);
}
body.v3 .job-listing-card .job-apply-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  background: var(--gks-red);
  color: var(--gks-white);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--dur-fast) var(--ease-premium), transform var(--dur-fast) var(--ease-premium);
}
body.v3 .job-listing-card .job-apply-button::before {
  content: "→";
  font-size: 1rem;
  transition: transform var(--dur-fast) var(--ease-premium);
  order: 2;
}
body.v3 .job-listing-card .job-apply-button:hover { background: var(--gks-red-700); }
body.v3 .job-listing-card .job-apply-button:hover::before { transform: translateX(3px); }
body.v3 .job-listing-card .job-contact-hint {
  color: var(--gks-grey-700);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
body.v3 .job-listing-card .job-contact-hint i { color: var(--gks-blue); }

/* Spontaneous application banner */
body.v3 .spontaneous-application {
  margin-top: 1.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #062A45 0%, #0A3D62 100%);
  color: var(--gks-white);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--gks-shadow-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
body.v3 .spontaneous-application::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 90% 0%, rgba(230, 57, 70, 0.30), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
body.v3 .spontaneous-application h4 {
  font-family: var(--font-display);
  color: var(--gks-white);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}
body.v3 .spontaneous-application p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
body.v3 .spontaneous-application .spontaneous-application-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.6rem;
  background: var(--gks-red);
  color: var(--gks-white);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--dur-fast) var(--ease-premium);
}
body.v3 .spontaneous-application .spontaneous-application-button::before {
  content: "📨";
  margin-right: 0.1rem;
}
body.v3 .spontaneous-application .spontaneous-application-button:hover { background: var(--gks-red-700); }

/* =================================================================
   6) TESTIMONIALS — re-skin .testimonial-carousel / .testimonial-card
   ================================================================= */

body.v3 .testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
body.v3 .testimonial-card {
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--gks-shadow-sm);
  position: relative;
  transition: all var(--dur-base) var(--ease-premium);
}
body.v3 .testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  color: var(--gks-red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.18;
}
body.v3 .testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gks-shadow-md);
  border-color: var(--gks-blue-300);
}
body.v3 .testimonial-card .testimonial-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--gks-white);
  box-shadow: 0 0 0 3px var(--gks-blue-50), 0 10px 24px -8px rgba(10, 61, 98, 0.35);
}
body.v3 .testimonial-card .testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.v3 .testimonial-card .testimonial-name {
  font-family: var(--font-display);
  color: var(--gks-grey-900);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
body.v3 .testimonial-card .testimonial-title {
  color: var(--gks-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
body.v3 .testimonial-card .testimonial-quote {
  color: var(--gks-grey-700);
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
}

/* =================================================================
   7) SIDEBAR — re-skin .sidebar / .sidebar-widget
   ================================================================= */

body.v3 .sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 110px;
  align-self: start;
}
@media (max-width: 1080px) {
  body.v3 .sidebar { position: static; }
}
body.v3 .sidebar-widget {
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--gks-shadow-sm);
}
body.v3 .sidebar-widget h3 {
  font-family: var(--font-display);
  color: var(--gks-grey-900);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gks-grey-200);
  position: relative;
}
body.v3 .sidebar-widget h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 2px;
  background: var(--gks-red);
}
body.v3 .sidebar-widget p {
  color: var(--gks-grey-700);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
}
body.v3 .sidebar-widget .learn-more-btn,
body.v3 .sidebar-widget .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--gks-blue);
  color: var(--gks-white);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  transition: background var(--dur-fast) var(--ease-premium);
}
body.v3 .sidebar-widget .learn-more-btn:hover,
body.v3 .sidebar-widget .contact-btn:hover { background: var(--gks-blue-700); }

/* Popular posts */
body.v3 .sidebar-widget .popular-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
body.v3 .sidebar-widget .popular-posts a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  background: var(--gks-blue-50);
  color: var(--gks-grey-900);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  transition: all var(--dur-fast) var(--ease-premium);
  border-left: 3px solid transparent;
}
body.v3 .sidebar-widget .popular-posts a::before {
  content: "→";
  color: var(--gks-red);
  font-weight: 800;
  flex-shrink: 0;
}
body.v3 .sidebar-widget .popular-posts a:hover {
  background: var(--gks-white);
  border-left-color: var(--gks-red);
  transform: translateX(3px);
}

/* HR contact widget */
body.v3 .sidebar-widget.hr-contact-widget {
  background: linear-gradient(135deg, var(--gks-blue) 0%, #062A45 100%);
  color: var(--gks-white);
  border: none;
}
body.v3 .sidebar-widget.hr-contact-widget h3 {
  color: var(--gks-white);
  border-bottom-color: rgba(255, 255, 255, 0.20);
}
body.v3 .sidebar-widget.hr-contact-widget h3::after { background: var(--gks-red-300); }
body.v3 .sidebar-widget.hr-contact-widget p { color: rgba(255, 255, 255, 0.90); }
body.v3 .sidebar-widget.hr-contact-widget .hr-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin: 0 0 0.4rem;
}
body.v3 .sidebar-widget.hr-contact-widget .hr-contact-info i {
  color: var(--gks-red-300);
  width: 20px;
  text-align: center;
}
body.v3 .sidebar-widget.hr-contact-widget .contact-btn {
  background: var(--gks-red);
  margin-top: 0.5rem;
}
body.v3 .sidebar-widget.hr-contact-widget .contact-btn:hover { background: var(--gks-red-700); }

/* Social follow */
body.v3 .sidebar-widget.social-follow .social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.v3 .sidebar-widget.social-follow .social-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gks-blue-50);
  color: var(--gks-blue);
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease-premium);
}
body.v3 .sidebar-widget.social-follow .social-icons a:hover {
  background: var(--gks-blue);
  color: var(--gks-white);
  transform: translateY(-2px);
}

/* =================================================================
   8) APPLICATION PROCESS BAND (new, between why & jobs)
   ================================================================= */

body.v3 .careers-process {
  margin-bottom: 3rem;
  padding: 2.5rem 0 1rem;
}
body.v3 .careers-process__title {
  font-family: var(--font-display);
  color: var(--gks-grey-900);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  text-align: center;
}
body.v3 .careers-process__lead {
  color: var(--gks-grey-700);
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 2rem;
}
body.v3 .careers-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
@media (max-width: 880px) {
  body.v3 .careers-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  body.v3 .careers-process__steps { grid-template-columns: 1fr; }
}
body.v3 .careers-process__step {
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: left;
  position: relative;
  transition: all var(--dur-fast) var(--ease-premium);
}
body.v3 .careers-process__step:hover {
  border-color: var(--gks-blue-300);
  box-shadow: var(--gks-shadow-md);
  transform: translateY(-3px);
}
body.v3 .careers-process__step-number {
  position: absolute;
  top: -14px;
  left: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-red) 100%);
  color: var(--gks-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px -6px rgba(10, 61, 98, 0.45);
}
body.v3 .careers-process__step h4 {
  font-family: var(--font-display);
  color: var(--gks-grey-900);
  font-weight: 700;
  font-size: 1rem;
  margin: 1rem 0 0.4rem;
  letter-spacing: -0.01em;
}
body.v3 .careers-process__step p {
  color: var(--gks-grey-700);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* =================================================================
   9) APPLICATION MODAL — re-skin .career-modal-*
   ================================================================= */

body.v3 .career-modal-overlay {
  background: rgba(6, 42, 69, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.v3 .career-modal-content {
  background: var(--gks-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--gks-shadow-xl);
  border: 1px solid rgba(10, 61, 98, 0.06);
}
body.v3 .career-modal-header {
  background: linear-gradient(135deg, var(--gks-blue) 0%, #062A45 100%);
  color: var(--gks-white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 1.25rem 1.5rem;
  border-bottom: none;
}
body.v3 .career-modal-header h2 {
  font-family: var(--font-display);
  color: var(--gks-white);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin: 0;
}
body.v3 .career-modal-close {
  background: rgba(255, 255, 255, 0.18);
  color: var(--gks-white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-premium);
  cursor: pointer;
}
body.v3 .career-modal-close:hover { background: rgba(255, 255, 255, 0.30); }

body.v3 .career-modal-body { padding: 1.75rem 1.5rem; }
body.v3 .career-form-subtitle {
  color: var(--gks-grey-700);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

body.v3 .career-modal-body .form-section {
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--gks-white);
}
body.v3 .career-modal-body .form-section legend {
  padding: 0 0.5rem;
}
body.v3 .career-modal-body .form-section legend h3 {
  font-family: var(--font-display);
  color: var(--gks-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0;
}

body.v3 .career-modal-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  body.v3 .career-modal-body .form-row { grid-template-columns: 1fr; }
}
body.v3 .career-modal-body .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
body.v3 .career-modal-body label {
  color: var(--gks-grey-900);
  font-size: 0.85rem;
  font-weight: 600;
}
body.v3 .career-modal-body input[type="text"],
body.v3 .career-modal-body input[type="email"],
body.v3 .career-modal-body input[type="tel"],
body.v3 .career-modal-body input[type="file"],
body.v3 .career-modal-body select,
body.v3 .career-modal-body textarea {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-md);
  background: var(--gks-white);
  color: var(--gks-grey-900);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
body.v3 .career-modal-body input:focus,
body.v3 .career-modal-body select:focus,
body.v3 .career-modal-body textarea:focus {
  outline: none;
  border-color: var(--gks-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.12);
}
body.v3 .career-modal-body input[type="file"] {
  padding: 0.55rem;
  cursor: pointer;
}
body.v3 .career-modal-body small.form-help {
  color: var(--gks-grey-500);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
body.v3 .career-modal-body .required-fields-indicator {
  color: var(--gks-grey-500);
  font-size: 0.85rem;
  margin: 0.5rem 0 1rem;
  font-style: italic;
}
body.v3 .career-modal-body .form-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gks-grey-200);
  margin-top: 0.5rem;
  padding-top: 1.25rem;
}
body.v3 .career-modal-body .btn-cancel,
body.v3 .career-modal-body .btn-submit {
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-premium);
}
body.v3 .career-modal-body .btn-cancel {
  background: var(--gks-grey-100, #F2F4F7);
  color: var(--gks-grey-900);
}
body.v3 .career-modal-body .btn-cancel:hover { background: var(--gks-grey-200); }
body.v3 .career-modal-body .btn-submit {
  background: var(--gks-red);
  color: var(--gks-white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
body.v3 .career-modal-body .btn-submit::after { content: "→"; }
body.v3 .career-modal-body .btn-submit:hover { background: var(--gks-red-700); }

/* Hide legacy scroll indicator from old hero */
body.v3 .careers-hero ~ .scroll-indicator { display: none; }
