/* DC Bina Sdn Bhd — shared site styles
   Palette sampled directly from company profile (logo + headings): */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #201d1e;
  --charcoal:   #333234;
  --charcoal-2: #403f41;
  --grey:       #6b6c71;
  --grey-light: #9a9ba0;
  --line:       #e4e5e7;
  --surface:    #f6f6f7;
  --white:      #ffffff;
  --orange:     #f4791f;
  --orange-dark:#d9650e;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }

.label-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.label-tag::before { content: ''; width: 32px; height: 2px; background: var(--orange); flex-shrink: 0; }

.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 900; text-transform: uppercase; line-height: 1.0;
  letter-spacing: 0.5px; color: var(--ink);
}
.section-h2 em { color: var(--orange); font-style: normal; }
.sub-text { font-size: 16px; color: var(--grey); line-height: 1.75; margin-top: 16px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  padding: 15px 34px; border-radius: 2px;
  transition: all .25s;
}
.btn-solid { background: var(--orange); color: var(--white); }
.btn-solid:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); }

/* ── NAVIGATION ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 76px;
  display: flex; align-items: center;
  background: rgba(32,29,30,0.0);
  transition: background .35s, box-shadow .35s, height .3s;
}
#nav.solid, #nav.scrolled {
  background: rgba(32,29,30,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  height: 66px;
}
#nav .container { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-menu a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  transition: color .2s; position: relative; padding-bottom: 3px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--orange);
  transition: width .25s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 22px; border-radius: 2px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }
.nav-cta::after { display: none !important; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  min-height: 46vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  background: var(--charcoal); padding-top: 76px;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.28; }
.page-hero-bg::after { content:''; }
.page-hero-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,29,30,0.55) 0%, rgba(32,29,30,0.92) 100%); }
.page-hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); }
.page-hero-content { position: relative; z-index: 2; padding-bottom: 56px; }
.page-hero .label-tag { color: var(--orange); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 74px); font-weight: 900; text-transform: uppercase;
  color: var(--white); line-height: 0.98;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero .crumb { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 14px; }
.page-hero .crumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-hero .crumb a:hover { color: var(--orange); }

/* ── HERO (home) ── */
#hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; background: var(--charcoal); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.30; }
.hero-panel {
  position: absolute; top: 0; right: -60px; bottom: 0; width: 42%;
  background: var(--orange); clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%); opacity: 0.14;
}
.hero-tint { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(32,29,30,0.94) 0%, rgba(32,29,30,0.55) 60%, rgba(32,29,30,0.25) 100%); }
.hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); }
.hero-content { position: relative; z-index: 2; max-width: 720px; padding-top: 76px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.hero-eyebrow-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(244,121,32,0.6);} 50% { box-shadow: 0 0 0 8px rgba(244,121,32,0);} }
.hero-eyebrow span { font-family:'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); }
.hero-title { font-family:'Barlow Condensed', sans-serif; font-size: clamp(46px, 7.4vw, 92px); font-weight: 900; line-height: 0.94; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 26px; }
.hero-title em { color: var(--orange); font-style: normal; }
.hero-desc { font-size: 16.5px; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 500px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 30px; flex-wrap: wrap; }
.h-stat { flex: 1; min-width: 130px; padding-right: 28px; border-right: 1px solid rgba(255,255,255,0.1); }
.h-stat:last-child { border-right: none; }
.h-stat:not(:first-child) { padding-left: 28px; }
.h-stat-num { font-family:'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; line-height: 1; color: var(--orange); }
.h-stat-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,0.4); margin-top: 6px; }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.hero-scroll span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--orange), transparent); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── SECTIONS GENERIC ── */
section.pad { padding: 100px 0; }
.bg-surface { background: var(--surface); }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); }
.bg-charcoal .section-h2, .bg-charcoal h3 { color: var(--white); }
.bg-charcoal .sub-text { color: rgba(255,255,255,0.55); }

/* ── SERVICE / CAPABILITY CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.svc-card { background: var(--white); padding: 40px 32px; position: relative; overflow: hidden; transition: all .3s; }
.svc-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--orange); transform: scaleY(0); transform-origin: bottom; transition: transform .3s; }
.svc-card:hover { background: var(--charcoal); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-icon { width: 50px; height: 50px; margin-bottom: 22px; background: rgba(244,121,32,0.1); border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.svc-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.svc-card:hover .svc-icon { background: rgba(244,121,32,0.22); }
.svc-card h3 { font-family:'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; color: var(--ink); transition: color .3s; }
.svc-card:hover h3 { color: var(--white); }
.svc-card p { font-size: 13.8px; color: var(--grey); line-height: 1.7; transition: color .3s; }
.svc-card:hover p { color: rgba(255,255,255,0.6); }

/* photo capability card */
.cap-card { background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: box-shadow .3s, transform .3s; }
.cap-card:hover { box-shadow: 0 20px 44px rgba(0,0,0,0.1); transform: translateY(-4px); }
.cap-card .cap-img { height: 220px; overflow: hidden; }
.cap-card .cap-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cap-card:hover .cap-img img { transform: scale(1.06); }
.cap-body { padding: 26px 28px 30px; }
.cap-body h3 { font-family:'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.cap-body ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.cap-body ul li { font-size: 13.5px; color: var(--grey); padding-left: 16px; position: relative; }
.cap-body ul li::before { content:''; position: absolute; left:0; top: 7px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ── ABOUT SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { width: 100%; height: 500px; object-fit: cover; display: block; clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 100%, 0 100%); }
.about-accent-box { position: absolute; bottom: -22px; right: -22px; background: var(--orange); padding: 26px 30px; text-align: center; }
.about-accent-box .big { font-family:'Barlow Condensed', sans-serif; font-size: 46px; font-weight: 900; line-height: 1; color: var(--white); }
.about-accent-box .small { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,0.8); margin-top: 6px; }

.checklist { display: flex; flex-direction: column; gap: 14px; margin: 30px 0; }
.check-item { display: flex; align-items: flex-start; gap: 14px; font-size: 14.5px; color: #3d3d40; line-height: 1.5; }
.check-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

/* ── NUMBERS STRIP ── */
.numbers-strip { background: var(--charcoal); padding: 68px 0; position: relative; overflow: hidden; }
.numbers-strip::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--orange); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.num-item { padding: 0 44px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.num-item:first-child { padding-left: 0; text-align: left; }
.num-item:last-child { border-right: none; }
.num-val { font-family:'Barlow Condensed', sans-serif; font-size: 60px; font-weight: 900; line-height: 1; color: var(--orange); }
.num-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.8px; color: rgba(255,255,255,0.4); margin-top: 8px; }
.num-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 8px; }

/* ── PROJECT GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.gallery-grid .g-item { position: relative; overflow: hidden; border-radius: 2px; height: 160px; }
.gallery-grid .g-item.big { grid-column: span 3; grid-row: span 2; height: auto; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }

.proj-block { margin-bottom: 76px; }
.proj-block-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.proj-block-head h3 { font-family:'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; text-transform: uppercase; color: var(--ink); }
.proj-block-head span { font-size: 13px; color: var(--grey); }

/* ── PORTFOLIO TABLE ── */
.portfolio-cat { margin-bottom: 56px; }
.portfolio-cat-title { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.portfolio-cat-title h3 { font-family:'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--ink); }
.portfolio-cat-title .count { font-size: 12px; color: var(--white); background: var(--orange); padding: 4px 12px; border-radius: 20px; font-weight: 700; }
table.ptable { width: 100%; border-collapse: collapse; background: var(--white); }
table.ptable th { text-align: left; font-family:'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey-light); padding: 12px 16px; border-bottom: 2px solid var(--ink); }
table.ptable td { padding: 16px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink); vertical-align: top; }
table.ptable td.tval { font-family:'Barlow Condensed', sans-serif; font-weight: 700; color: var(--orange); font-size: 15px; white-space: nowrap; }
table.ptable tr:hover td { background: var(--surface); }
table.ptable td.tclient { color: var(--grey); }

/* ── WHY US LIST ── */
.why-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 76px; align-items: start; }
.why-left { position: sticky; top: 100px; }
.why-list { display: flex; flex-direction: column; }
.why-item { display: flex; gap: 22px; align-items: flex-start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.why-item:last-child { border-bottom: none; }
.why-num { font-family:'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--orange); flex-shrink: 0; padding-top: 3px; }
.why-body h3 { font-family:'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 800; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.why-body p { font-size: 13.8px; color: var(--grey); line-height: 1.7; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--line); padding: 36px; }
.team-card .role-tag { color: var(--orange); font-family:'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.team-card h3 { font-family:'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; text-transform: uppercase; color: var(--ink); margin: 6px 0 18px; }
.team-card .meta-row { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.team-card .meta-row div { font-size: 12.5px; color: var(--grey); }
.team-card .meta-row b { color: var(--ink); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.team-card p { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 14px; }
.team-card ul { padding-left: 18px; margin-bottom: 4px; }
.team-card ul li { font-size: 13.5px; color: var(--grey); line-height: 1.9; }

.org-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.org-group { background: var(--white); border: 1px solid var(--line); padding: 28px 30px; }
.org-group h4 { font-family:'Barlow Condensed', sans-serif; font-size: 17px; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.org-role { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: 13.8px; border-bottom: 1px dashed var(--line); }
.org-role:last-child { border-bottom: none; }
.org-role .name { color: var(--ink); font-weight: 600; }
.org-role .title { color: var(--grey-light); text-align: right; }

/* ── PARTICULARS TABLE ── */
.particulars { background: var(--white); border: 1px solid var(--line); }
.particulars .row { display: grid; grid-template-columns: 260px 1fr; border-bottom: 1px solid var(--line); }
.particulars .row:last-child { border-bottom: none; }
.particulars .row .k { padding: 18px 26px; background: var(--surface); font-family:'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--grey); font-weight: 700; }
.particulars .row .v { padding: 18px 26px; font-size: 14.5px; color: var(--ink); }

/* ── VISION SECTION ── */
.vision-box {
  background: var(--charcoal); color: rgba(255,255,255,0.85);
  padding: 42px 40px; position: relative; overflow: hidden;
}
.vision-box::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--orange); }
.vision-box p { font-size: 17px; line-height: 1.7; }
.vision-box .hl { color: var(--orange); font-weight: 700; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.value-item { background: var(--white); padding: 30px 24px; text-align: left; transition: background .3s, transform .3s; }
.value-item:hover { background: var(--surface); transform: translateY(-3px); }
.value-item .v-icon { width: 42px; height: 42px; margin-bottom: 16px; background: rgba(244,121,32,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.value-item .v-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.value-item h4 { font-family:'Barlow Condensed', sans-serif; font-size: 15.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3px; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.value-item p { font-size: 12.8px; color: var(--grey); line-height: 1.6; }

.quote-block { background: var(--surface); border-left: 4px solid var(--orange); padding: 30px 34px; }
.quote-block h4 { font-family:'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.quote-block p { font-size: 14px; color: var(--grey); line-height: 1.75; }

.closing-tagline { background: var(--ink); padding: 54px 0; text-align: center; }
.closing-tagline p { font-family:'Barlow Condensed', sans-serif; font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.55); line-height: 1.4; }
.closing-tagline p em { color: var(--orange); font-style: normal; }

.values-strip { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; padding-top: 8px; }
.values-strip .vs-item { display: flex; align-items: center; gap: 12px; }
.values-strip .vs-item .vs-ico { width: 38px; height: 38px; border-radius: 50%; background: rgba(244,121,32,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.values-strip .vs-item svg { width: 18px; height: 18px; fill: var(--orange); }
.values-strip .vs-item span { font-family:'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); }

@media (max-width: 900px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-split { grid-template-columns: 1fr !important; }
}
@media (max-width: 700px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .vision-box { padding: 30px 24px; }
  .values-strip { gap: 22px 30px; justify-content: flex-start; }
}

/* ── VACANCY ── */
.locations-row {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin: 22px 0 48px; font-family:'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--ink);
}
.locations-row svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }
.locations-row .sep { color: var(--grey-light); font-weight: 400; }

.role-panel { background: var(--surface); border-radius: 8px; padding: 40px 44px; }
.role-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 48px; }

.req-tag {
  display: inline-block; background: var(--charcoal); color: var(--white);
  font-family:'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 26px; margin-bottom: 24px;
}
.req-ribbon {
  display: inline-block; background: var(--charcoal); color: var(--white);
  font-family:'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 40px 13px 24px; clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.hero-sub {
  font-family:'Barlow Condensed', sans-serif; font-size: clamp(15px, 1.9vw, 21px); font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 16px;
}

.vacancy-bottom-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.apply-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.apply-scan-row { display: flex; align-items: center; gap: 24px; }
.apply-box-wrap { position: relative; margin-top: 22px; }
.apply-chip {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white); white-space: nowrap;
  font-family:'Barlow Condensed', sans-serif; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px;
  padding: 9px 24px; border-radius: 22px; box-shadow: 0 8px 20px rgba(244,121,32,0.35); z-index: 2;
}
.apply-box {
  width: 168px; height: 168px; background: var(--white); border: 3px solid var(--charcoal); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; padding: 14px;
}
.apply-box img { width: 100%; height: 100%; object-fit: contain; }
.scan-label { display: flex; align-items: center; gap: 10px; font-family:'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-size: 14px; color: var(--ink); line-height: 1.3; }
.scan-label svg { width: 32px; height: 32px; fill: var(--grey-light); flex-shrink: 0; }
.be-part { margin-top: 24px; font-size: 15.5px; color: var(--grey); }
.be-part b { color: var(--orange); }

@media (max-width: 900px) {
  .vacancy-bottom-grid { grid-template-columns: 1fr; gap: 44px; }
  .apply-col { align-items: center; }
}
@media (max-width: 700px) {
  .role-panel { padding: 30px 26px; }
  .role-grid-2col { grid-template-columns: 1fr; }
  .locations-row { font-size: 13px; gap: 6px; justify-content: flex-start; }
  .apply-scan-row { gap: 18px; }
  .apply-box { width: 140px; height: 140px; }
}

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.contact-left { background: var(--charcoal); padding: 76px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-left::before { content:''; position:absolute; top:0; right:0; bottom:0; width:4px; background: var(--orange); }
.contact-left .label-tag { color: var(--orange); }
.contact-left .section-h2 { color: var(--white); margin-bottom: 18px; }
.contact-left .sub-text { color: rgba(255,255,255,0.5); margin-bottom: 44px; margin-top: 0; }
.cinfo { display: flex; flex-direction: column; gap: 26px; }
.ci { display: flex; gap: 18px; align-items: flex-start; }
.ci-ico { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.ci-ico svg { width: 18px; height: 18px; fill: var(--orange); }
.ci-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,0.4); }
.ci-val { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 4px; line-height: 1.55; }

.contact-right { background: var(--surface); padding: 76px 56px; display: flex; flex-direction: column; justify-content: center; }
.contact-right h3 { font-family:'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; text-transform: uppercase; color: var(--ink); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--white); border: 1.5px solid #dcdde0; border-radius: 2px;
  padding: 12px 14px; font-family:'Inter', sans-serif; font-size: 14px; color: var(--ink); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--ink); color: var(--white); border: none; cursor: pointer; padding: 16px;
  font-family:'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; transition: background .25s, transform .2s; margin-top: 6px;
}
.form-submit:hover { background: var(--orange); transform: translateY(-1px); }

.map-wrap { border-top: 1px solid var(--line); margin-top: 60px; }
.map-teaser {
  display: flex; align-items: center; gap: 22px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 30px 34px; margin-top: 40px; text-decoration: none;
  transition: background .25s, border-color .25s;
}
.map-teaser:hover { background: var(--white); border-color: var(--orange); }
.map-teaser-pin {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
  background: rgba(244,121,32,0.12); display: flex; align-items: center; justify-content: center;
}
.map-teaser-pin svg { width: 26px; height: 26px; fill: var(--orange); }
.map-teaser-text { display: flex; flex-direction: column; gap: 6px; }
.map-teaser-text .k { font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.map-teaser-text .v { font-family:'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--ink); padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background: linear-gradient(120deg, rgba(244,121,32,0.12), transparent 60%); }
.cta-banner h2 { position: relative; font-family:'Barlow Condensed', sans-serif; font-size: clamp(28px,4vw,44px); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 26px; }
.cta-banner h2 em { color: var(--orange); font-style: normal; }
.cta-banner .btn { position: relative; }

/* ── FOOTER ── */
footer { background: #161415; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 46px; margin-bottom: 48px; }
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.32); line-height: 1.75; max-width: 260px; }
.f-col h5 { font-family:'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 18px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col ul li a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.f-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.25); }
.footer-bottom span { color: var(--orange); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; } .reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; } .reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid .g-item.big { grid-column: span 3; height: 260px; }
  .org-groups { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 580px; }
  .about-img-main { height: 360px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-left { position: static; }
  .contact-wrap { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .num-item { padding: 0; text-align: left; border: none; }
  .num-val { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .particulars .row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-menu {
    display: none; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(32,29,30,0.98); backdrop-filter: blur(10px); padding: 26px 5%; gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.08); max-height: calc(100vh - 66px); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; }

  .hero-title { font-size: clamp(40px, 12vw, 66px); }
  .page-hero h1 { font-size: clamp(34px, 11vw, 52px); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .hero-stats { gap: 22px 28px; }
  .h-stat { border: none !important; padding: 0 !important; flex: 0 0 calc(50% - 14px); }
  .h-stat-num { font-size: 34px; }

  section.pad { padding: 64px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid.cols-3 { grid-template-columns: 1fr; }
  .svc-card { padding: 30px 24px; }

  .about-img-main { height: 280px; clip-path: none; }
  .about-accent-box { bottom: 14px; right: 14px; padding: 16px 18px; }
  .about-accent-box .big { font-size: 32px; }

  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .num-val { font-size: 40px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item.big { grid-column: span 2; }

  table.ptable { font-size: 12.5px; }
  table.ptable th, table.ptable td { padding: 10px 8px; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 26px; }

  .contact-left, .contact-right { padding: 44px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}
